-
Notifications
You must be signed in to change notification settings - Fork 0
/
Line500.kml
1537 lines (1537 loc) · 785 KB
/
Line500.kml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<name>KmlFile</name>
<Placemark>
<LineString><coordinates>-121.3166,42.0061 -121.3168,42.002 -121.3164,41.9835 -121.3155,41.9475 -121.3114,41.9222 -121.3069,41.8942 -121.3038,41.8637 -121.3007,41.8352 -121.2976,41.8064 -121.2938,41.7704 -121.29,41.7343 -121.2905,41.7228 -121.2923,41.7164 -121.298,41.6994 -121.3112,41.6639 -121.3235,41.63 -121.3344,41.5959 -121.345,41.5623 -121.3617,41.5447 -121.3833,41.5218 -121.4077,41.4963 -121.4301,41.4722 -121.466,41.4346 -121.4811,41.4173 -121.5023,41.392 -121.518,41.3747 -121.5474,41.3385 -121.5655,41.3162 -121.5933,41.2819 -121.6191,41.2504 -121.6485,41.214 -121.6733,41.1836 -121.689,41.1644 -121.7294,41.1323 -121.7527,41.1139 -121.791,41.0835 -121.8108,41.0707 -121.8381,41.0703 -121.8692,41.0581 -121.8909,41.0353 -121.892,41.02 -121.9076,40.9832 -121.9159,40.9524 -121.9197,40.8982 -121.9136,40.8768 -121.917,40.8559 -121.912,40.8307 -121.9223,40.8206 -121.9348,40.8107 -121.9356,40.808</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 147.24km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-121.3166,42.0061 -121.3167,42.0084 -121.3177,42.012 -121.327,42.031 -121.3374,42.0525 -121.3852,42.1292 -121.3701,42.193 -121.3595,42.2185 -121.3376,42.2598 -121.3118,42.3075 -121.2671,42.3952 -121.258,42.4121 -121.249,42.4281 -121.2401,42.4409 -121.2213,42.4746 -121.1881,42.5408 -121.1766,42.5637 -121.1621,42.6135 -121.1472,42.6809 -121.0899,42.7274 -121.0279,42.794 -120.9955,42.8415 -120.9872,42.8535</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PORTLAND GENERAL ELECTRIC COMPANY</name><description>500kV --- AC --- 98.58km --- http://www.oasis.oati.com/PGE/PGEdocs/PGE_Final_Near_Term_LTP_2014.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-121.3166,42.0061 -121.3161,42.0086 -121.3172,42.0121 -121.3268,42.0314 -121.3372,42.0532 -121.3477,42.0706 -121.3847,42.1291 -121.3697,42.1928 -121.3601,42.2164 -121.3371,42.2596 -121.3266,42.2784 -121.2756,42.3756 -121.2642,42.4005 -121.2497,42.4262 -121.2427,42.4363 -121.2323,42.4515 -121.2077,42.5005 -121.1824,42.5511 -121.1699,42.5759 -121.1487,42.6722 -121.1208,42.7016 -121.0522,42.7575 -120.999,42.8357 -120.9943,42.8419 -120.9865,42.8521</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFICORP</name><description>500kV --- AC --- 98.67km --- http://www.oasis.oati.com/PPW/PPWdocs/Transmission_Network_Diagram.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-121.3166,42.0061 -121.3162,42.0024 -121.3158,41.9838 -121.3149,41.9475 -121.3113,41.9247 -121.3064,41.8942 -121.3029,41.8618 -121.3003,41.8366 -121.297,41.8064 -121.2935,41.7713 -121.2903,41.7418 -121.2896,41.7244 -121.2917,41.7165 -121.2975,41.6993 -121.3103,41.6644 -121.323,41.6295 -121.3339,41.5956 -121.3444,41.5621 -121.3613,41.5445 -121.3829,41.5216 -121.4073,41.496 -121.4297,41.472 -121.4656,41.4344 -121.4806,41.4171 -121.5019,41.3918 -121.5175,41.3745 -121.5469,41.3383 -121.5651,41.316 -121.5929,41.2817 -121.6186,41.2502 -121.648,41.2138 -121.6728,41.1834 -121.6886,41.1641 -121.7291,41.1319 -121.7524,41.1135 -121.7907,41.0832 -121.8109,41.0702 -121.8381,41.0697 -121.869,41.0576 -121.8902,41.0353 -121.8914,41.0203 -121.907,40.9831 -121.9152,40.9527 -121.919,40.8987 -121.9129,40.8773 -121.9163,40.8563 -121.9113,40.831 -121.922,40.8203 -121.9342,40.8104 -121.9356,40.808</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFICORP</name><description>500kV --- AC --- 147.28km --- http://www.oasis.oati.com/PPW/PPWdocs/131114_New_Transmission_Wall_Map_(Patrick_Gronli).pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-121.3904,42.08 -121.3681,42.0832 -121.3579,42.0849 -121.3854,42.1568 -121.3611,42.2166 -121.338,42.26 -121.3151,42.3025 -121.3108,42.3107 -121.2674,42.3956 -121.2585,42.4122 -121.2493,42.4284 -121.2406,42.4411 -121.2218,42.4747 -121.1884,42.5414 -121.177,42.5641 -121.1627,42.6135 -121.1477,42.6811 -121.0904,42.7276 -121.0283,42.7943 -120.9961,42.8417 -120.9896,42.8514</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 93.05km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-121.3904,42.08 -121.4113,42.0744 -121.4473,42.0764 -121.4765,42.0742 -121.5165,42.0692 -121.5757,42.062 -121.6067,42.0611 -121.638,42.076 -121.6688,42.0753 -121.6808,42.0831 -121.6933,42.0974 -121.7105,42.1158 -121.7269,42.1192 -121.7471,42.121 -121.7468,42.1317 -121.7529,42.14 -121.7631,42.1483 -121.7729,42.1578 -121.7822,42.1658 -121.7936,42.1747 -121.8034,42.1789 -121.8125,42.1749</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFICORP</name><description>500kV --- AC --- 47.95km --- http://www.oasis.oati.com/PPW/PPWdocs/Transmission_Network_Diagram.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-120.9872,42.8535 -120.979,42.8771 -120.9581,42.9843 -120.9574,43.0372 -120.9565,43.1034 -120.9462,43.1447 -120.9251,43.2325 -120.9202,43.2435</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 40.05km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-120.9872,42.8535 -120.9785,42.8768 -120.9576,42.9841 -120.9569,43.0372 -120.9559,43.1034 -120.9458,43.1447 -120.9245,43.2325 -120.9202,43.2435</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PORTLAND GENERAL ELECTRIC COMPANY</name><description>500kV --- AC --- 40.01km --- http://www.oasis.oati.com/PGE/PGEdocs/PGE_Final_Near_Term_LTP_2014.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-120.9559,43.014 -120.9558,43.0093 -120.9387,43.0123 -120.8855,43.0224 -120.8262,43.0337 -120.7933,43.0399 -120.7579,43.0587 -120.6942,43.0782 -120.6319,43.0973 -120.5681,43.1168 -120.5042,43.1363 -120.4516,43.1578 -120.4018,43.1674 -120.3551,43.1701 -120.2914,43.1738 -120.2248,43.1776 -120.1631,43.1791 -120.0972,43.179 -120.0313,43.1789 -119.9759,43.1788 -119.9115,43.2082 -119.8561,43.2335 -119.7675,43.2736 -119.7338,43.2881 -119.667,43.3157 -119.6061,43.3401 -119.5421,43.365 -119.4866,43.3979 -119.4285,43.4321 -119.3674,43.4683 -119.3391,43.4845 -119.2776,43.5176 -119.2412,43.5461 -119.2055,43.5774 -119.1669,43.6115 -119.1343,43.6383 -119.1023,43.6618 -119.0519,43.6673 -119.0478,43.6676</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFICORP</name><description>500kV --- AC --- 207.01km --- http://www.oasis.oati.com/PPW/PPWdocs/Transmission_Network_Diagram.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-120.9559,43.014 -120.9565,43.0373 -120.9555,43.1033 -120.9454,43.1448 -120.9242,43.2324 -120.9202,43.2435</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 23.42km --- http://www.oasis.oati.com/PPW/PPWdocs/Transmission_Network_Diagram.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-120.9202,43.2435 -120.9131,43.265 -120.8998,43.301 -120.8828,43.3467 -120.8657,43.3925 -120.8493,43.4372 -120.8543,43.4754 -120.8598,43.5166 -120.8613,43.5616 -120.8595,43.6056 -120.8574,43.652 -120.8553,43.6996 -120.8537,43.7204</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 49.11km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-120.9202,43.2435 -120.9126,43.2649 -120.8992,43.3009 -120.8824,43.3466 -120.8655,43.392 -120.8487,43.4371 -120.8534,43.4727 -120.8593,43.5167 -120.861,43.5597 -120.8591,43.6056 -120.8571,43.6519 -120.8549,43.6996 -120.8537,43.7204</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PORTLAND GENERAL ELECTRIC COMPANY</name><description>500kV --- AC --- 49.08km --- http://www.oasis.oati.com/PGE/PGEdocs/PGE_Final_Near_Term_LTP_2014.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-120.9202,43.2435 -120.9187,43.2453 -120.9122,43.2649 -120.8988,43.301 -120.8819,43.3467 -120.8649,43.3923 -120.8483,43.4371 -120.8533,43.4751 -120.8589,43.5168 -120.8607,43.5597 -120.8586,43.6063 -120.8566,43.6522 -120.8545,43.6997 -120.8537,43.7204</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 49.16km --- http://www.oasis.oati.com/PPW/PPWdocs/Transmission_Network_Diagram.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-120.8537,43.7204 -120.8526,43.7634 -120.8502,43.8108 -120.8824,43.8724 -120.9132,43.9365 -120.9305,43.9739 -120.9289,44.0268 -120.9271,44.0914 -120.9241,44.1893 -120.9327,44.2209 -120.9433,44.2474 -120.9576,44.3064 -120.9728,44.3509 -120.9921,44.3921 -121.0102,44.4471 -121.0209,44.4802</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 79.79km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-120.8537,43.7204 -120.8524,43.7522 -120.8496,43.8109 -120.8818,43.8723 -120.9126,43.9364 -120.9299,43.9739 -120.9285,44.0266 -120.9257,44.1232 -120.9236,44.1893 -120.9345,44.2269 -120.9496,44.275 -120.963,44.3311 -120.9881,44.385 -121.0097,44.4472 -121.0203,44.4819</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PORTLAND GENERAL ELECTRIC COMPANY</name><description>500kV --- AC --- 79.77km --- http://www.oasis.oati.com/PGE/PGEdocs/PGE_Final_Near_Term_LTP_2014.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-120.8537,43.7204 -120.853,43.726 -120.8519,43.752 -120.8492,43.8109 -120.8813,43.8723 -120.9122,43.9365 -120.9295,43.9741 -120.9282,44.0266 -120.9263,44.0911 -120.9243,44.1568 -120.9229,44.2004 -120.9328,44.2255</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 52.62km --- http://www.oasis.oati.com/PPW/PPWdocs/Transmission_Network_Diagram.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-120.9328,44.2255 -120.9424,44.2472 -120.9572,44.3081 -120.9718,44.3514 -120.991,44.3924 -121.0095,44.4477 -121.0198,44.4801</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 27.19km --- http://www.oasis.oati.com/PPW/PPWdocs/Transmission_Network_Diagram.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-121.0203,44.4819 -121.0216,44.4839 -121.0327,44.4974 -121.0456,44.5133 -121.061,44.532 -121.0751,44.5492 -121.0993,44.5561 -121.1302,44.5649 -121.1698,44.5761 -121.1982,44.5842 -121.2311,44.5935 -121.2674,44.6023</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PORTLAND GENERAL ELECTRIC COMPANY</name><description>500kV --- AC --- 28.79km --- http://www.oasis.oati.com/PGE/PGEdocs/PGE_Final_Near_Term_LTP_2014.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-121.8134,42.174 -121.8135,42.1748 -121.8059,42.1803 -121.8143,42.1862 -121.8284,42.1857 -121.8752,42.1857 -121.8903,42.1774 -121.9126,42.1653 -121.9367,42.161 -121.9567,42.1607 -121.9636,42.1557 -121.983,42.1416 -121.9944,42.1358 -122.0087,42.1331 -122.036,42.128 -122.0809,42.1265 -122.1229,42.1282 -122.174,42.1287 -122.2147,42.1292 -122.2628,42.1351 -122.2859,42.1381 -122.3259,42.1388 -122.3652,42.1444 -122.4043,42.1571 -122.436,42.1584 -122.4786,42.163 -122.5007,42.1844 -122.5214,42.1966 -122.5449,42.206 -122.5615,42.2227 -122.5773,42.2362 -122.5795,42.2506 -122.5891,42.2703 -122.6086,42.2779 -122.6464,42.2875 -122.6553,42.2912 -122.6705,42.3033 -122.6892,42.3235 -122.7161,42.3464 -122.7524,42.3608 -122.7543,42.364</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFICORP</name><description>500kV --- AC --- 106.63km --- http://www.oasis.oati.com/PPW/PPWdocs/131114_New_Transmission_Wall_Map_(Patrick_Gronli).pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-122.7543,42.364 -122.7583,42.3666 -122.7821,42.3746 -122.7931,42.3911 -122.8,42.4015 -122.8009,42.4117 -122.804,42.4206 -122.8355,42.4223 -122.8557,42.4231 -122.8795,42.4241 -122.9135,42.425 -122.9258,42.4398 -122.9417,42.4607 -122.9622,42.4721 -122.9644,42.4825 -122.9645,42.4973 -122.9648,42.5137 -122.9743,42.539 -122.9804,42.5595 -122.9865,42.5695 -122.9936,42.58 -123.0065,42.5854 -123.0211,42.5954 -123.0267,42.6055 -123.0364,42.6136 -123.0463,42.6215 -123.0537,42.6271 -123.0632,42.6341 -123.0729,42.6434 -123.0889,42.6586 -123.1006,42.6698 -123.1099,42.679 -123.1211,42.6897 -123.1317,42.6997 -123.1396,42.7093 -123.1516,42.7222 -123.1652,42.7354 -123.176,42.7462 -123.1912,42.761 -123.1897,42.7834 -123.1904,42.7957 -123.2019,42.8022 -123.2112,42.8118 -123.2144,42.8291 -123.2169,42.8408 -123.2216,42.8486 -123.2358,42.864 -123.2397,42.8694 -123.2375,42.8783 -123.2339,42.8915 -123.2335,42.9013 -123.2269,42.9133 -123.2236,42.9261 -123.2268,42.9423 -123.2282,42.9497 -123.2277,42.9558 -123.229,42.9699 -123.2136,42.9795 -123.2122,42.9918 -123.2059,43.0093 -123.201,43.0205 -123.1925,43.0252 -123.1883,43.0309 -123.1925,43.0414 -123.1984,43.0548 -123.1939,43.0634 -123.1905,43.0763 -123.1902,43.0831 -123.1882,43.0992 -123.2018,43.1095 -123.2107,43.1214 -123.2134,43.1293 -123.2187,43.1362 -123.2265,43.1509 -123.2313,43.1607 -123.2314,43.1859 -123.2326,43.1931 -123.2353,43.2027 -123.2341,43.2067 -123.2266,43.2164</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFICORP</name><description>500kV --- AC --- 118.87km --- http://www.oasis.oati.com/PPW/PPWdocs/131114_New_Transmission_Wall_Map_(Patrick_Gronli).pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-123.2247,43.2183 -123.2229,43.2227 -123.2234,43.2405 -123.2209,43.2519 -123.209,43.2713 -123.2054,43.283 -123.2029,43.3072 -123.2017,43.3204 -123.2019,43.3275 -123.2008,43.3369 -123.199,43.3483 -123.1945,43.3619 -123.1922,43.3746 -123.1949,43.3983 -123.1962,43.407 -123.1993,43.4091 -123.2071,43.4322 -123.207,43.459 -123.2068,43.4821 -123.2064,43.5161 -123.1969,43.5259 -123.1747,43.5471 -123.1556,43.5697 -123.144,43.5845 -123.1281,43.6051 -123.1125,43.6166 -123.098,43.6286 -123.0911,43.6458 -123.0913,43.6707 -123.0914,43.7074 -123.0913,43.7205 -123.0917,43.7332 -123.0948,43.7485 -123.0944,43.7596 -123.0945,43.7702 -123.0917,43.8007 -123.0933,43.8193 -123.0928,43.8512 -123.0925,43.8659 -123.0831,43.8986 -123.0729,43.9339 -123.0654,43.9595 -123.0478,43.9885 -123.0397,43.9938 -123.0294,43.9939 -123.0184,43.9935 -123.014,43.9967</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFICORP</name><description>500kV --- AC --- 89.06km --- http://www.oasis.oati.com/PPW/PPWdocs/Transmission_Network_Diagram.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-123.0155,43.998 -123.0126,43.9982 -123.0076,44.0006 -123.003,44.0011 -122.9855,44.0014 -122.9578,43.9974 -122.9476,44.0126 -122.8665,44.0489 -122.8306,44.0901 -122.8344,44.115 -122.8304,44.1382 -122.8492,44.1988 -122.8411,44.2122 -122.8103,44.2706 -122.8051,44.2995 -122.8006,44.3735 -122.8091,44.4274 -122.7927,44.4474 -122.7679,44.4747 -122.7625,44.5024 -122.7615,44.5413 -122.7607,44.5726 -122.7625,44.6284 -122.7392,44.6902 -122.6964,44.7389 -122.6964,44.7622 -122.6944,44.7952 -122.6959,44.7992</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 101.15km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-122.6975,44.7994 -122.6949,44.7975 -122.697,44.7621 -122.697,44.7391 -122.7363,44.7152 -122.7398,44.6901 -122.7434,44.6631 -122.7631,44.6285 -122.76,44.6016 -122.7617,44.5608 -122.7624,44.5154 -122.7637,44.4918 -122.778,44.4677 -122.7896,44.4521 -122.7953,44.445 -122.806,44.4138 -122.7991,44.3885 -122.8006,44.349 -122.8055,44.2995 -122.8107,44.2735 -122.8122,44.2508 -122.8328,44.2239 -122.8483,44.2036 -122.8542,44.192 -122.8862,44.1904 -122.9276,44.179 -122.9654,44.1807 -122.9866,44.1747 -123.0161,44.1703 -123.0489,44.1664 -123.0768,44.165 -123.1078,44.1563 -123.14,44.1551 -123.1554,44.1548 -123.1702,44.1469 -123.1784,44.1273 -123.1822,44.1155 -123.1963,44.1 -123.2158,44.0773 -123.2254,44.0642 -123.2305,44.0559 -123.2305,44.0514</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 112.43km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-122.6975,44.7994 -122.6987,44.8073 -122.6973,44.8256 -122.6959,44.8478 -122.694,44.8741 -122.6948,44.9019 -122.7074,44.9274 -122.7089,44.9394 -122.7168,44.9526 -122.7246,44.9651 -122.7286,44.9787 -122.7268,45.0088 -122.724,45.0241 -122.7194,45.0482 -122.7201,45.0645 -122.7196,45.0894 -122.7211,45.1171 -122.7236,45.1422 -122.7271,45.1587 -122.728,45.1805 -122.7296,45.2012 -122.7333,45.231 -122.7314,45.2436 -122.7316,45.27 -122.7246,45.288 -122.7228,45.3004 -122.7199,45.3187 -122.7341,45.3188 -122.7512,45.3278 -122.7705,45.3277 -122.7769,45.3278</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 59.53km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-122.7773,45.3293 -122.7849,45.3281 -122.7957,45.3409 -122.8187,45.3659 -122.8428,45.3725 -122.8511,45.3747 -122.8814,45.4046 -122.899,45.4411 -122.9041,45.4643 -122.9027,45.4755 -122.8989,45.4965 -122.8971,45.5106 -122.894,45.5285 -122.8955,45.5465 -122.8951,45.5498</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 29.78km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-122.8951,45.5498 -122.8968,45.5487 -122.899,45.5509 -122.9037,45.5528 -122.9057,45.5556 -122.9104,45.5574 -122.9156,45.5593 -122.9156,45.5631 -122.9153,45.5665 -122.9142,45.5725 -122.9136,45.5788 -122.9136,45.5852 -122.9136,45.5913 -122.9135,45.5961 -122.9128,45.6008 -122.9118,45.6071 -122.9108,45.613 -122.9103,45.6193 -122.9099,45.6239 -122.9108,45.6312 -122.912,45.6354 -122.9135,45.641 -122.9148,45.6457 -122.9165,45.652 -122.9184,45.6567 -122.9212,45.6626 -122.9237,45.6676 -122.9264,45.6715 -122.9338,45.678 -122.9406,45.6822 -122.9492,45.6891 -122.9537,45.6936 -122.958,45.698 -122.9654,45.7055 -122.9703,45.7105 -122.9757,45.715 -122.9825,45.7196 -122.99,45.7247 -122.9956,45.7285 -123.0009,45.7326 -123.0064,45.7374 -123.0111,45.7415 -123.0168,45.7464 -123.0222,45.7512 -123.0273,45.7556 -123.0331,45.7624 -123.0369,45.7669 -123.0441,45.7727 -123.046,45.7743 -123.0517,45.7789 -123.0607,45.7862 -123.0662,45.7907 -123.0692,45.7971 -123.0683,45.803 -123.0671,45.8105 -123.0662,45.8163 -123.0651,45.8235 -123.0626,45.8311 -123.0595,45.8372 -123.0594,45.8435 -123.0601,45.847 -123.0612,45.8529 -123.0622,45.8579 -123.0629,45.8627 -123.0636,45.8691 -123.0642,45.8738 -123.0651,45.8817 -123.0657,45.8868 -123.0665,45.8932 -123.0669,45.8978 -123.0674,45.9041 -123.0679,45.9107 -123.0677,45.917 -123.0674,45.9221 -123.0671,45.93 -123.0669,45.9358 -123.0651,45.9399 -123.0609,45.9455 -123.0567,45.9511 -123.0526,45.9567 -123.0527,45.9639 -123.0527,45.9677 -123.0527,45.974 -123.0528,45.9804 -123.0528,45.9861 -123.0527,45.9925 -123.0527,45.9967 -123.053,46.0 -123.0543,46.0048 -123.0461,46.0156 -123.0431,46.0197 -123.0432,46.0253 -123.0432,46.0299 -123.0433,46.0363 -123.0434,46.0434 -123.0435,46.0492 -123.0435,46.0545 -123.0436,46.0609 -123.0437,46.0663 -123.0405,46.0722 -123.0376,46.0783 -123.0358,46.0844 -123.0349,46.0892 -123.035,46.0948 -123.035,46.101 -123.035,46.1065 -123.0333,46.1079</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 65.86km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-120.7378,45.6778 -120.7618,45.6785 -120.8342,45.6486 -120.88,45.6349 -120.8977,45.6225 -120.8875,45.5944 -120.8977,45.5673 -120.8922,45.5361 -120.8887,45.5227 -120.8899,45.5049 -120.8961,45.4856 -120.9131,45.4664 -120.9349,45.4506 -120.9429,45.4277 -120.9638,45.4072 -121.0214,45.3709 -121.0383,45.357 -121.0437,45.3315 -121.0527,45.3172 -121.0644,45.3061 -121.0783,45.2866 -121.0974,45.2595 -121.1215,45.2445 -121.1413,45.2324 -121.1739,45.2199 -121.2104,45.2018 -121.2429,45.1811 -121.2754,45.1602 -121.2912,45.1512 -121.329,45.135 -121.3631,45.1218 -121.3923,45.1105 -121.4161,45.1011 -121.442,45.091 -121.5883,45.0822 -121.7043,45.0473 -121.9141,45.0287 -121.9782,45.0143 -122.0063,45.0071 -122.0373,45.0208 -122.1185,44.978 -122.1634,44.9654 -122.2267,44.9571 -122.2544,44.9495 -122.2628,44.9342 -122.2827,44.9279 -122.3164,44.9194 -122.3335,44.9143 -122.3451,44.9054 -122.3598,44.8979 -122.3853,44.8775 -122.4018,44.8634 -122.4175,44.8557 -122.4448,44.844 -122.4691,44.829 -122.4863,44.8255 -122.5046,44.8234 -122.5224,44.8186 -122.5466,44.8122 -122.5702,44.8077 -122.5943,44.8068 -122.6151,44.8027 -122.6347,44.8005 -122.6543,44.8061 -122.6902,44.8082 -122.6987,44.8017</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 236.61km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-122.6975,44.7994 -122.6975,44.8025 -122.6771,44.7989 -122.6517,44.7985 -122.6308,44.801 -122.6163,44.8029 -122.573,44.808 -122.5364,44.8154 -122.495,44.8263 -122.4757,44.8255 -122.4453,44.8443 -122.3926,44.8712 -122.3634,44.889 -122.3518,44.9007 -122.337,44.9124 -122.3159,44.9201 -122.2826,44.9285 -122.2581,44.9497 -122.227,44.9576 -122.1636,44.9658 -122.1188,44.9783 -122.0374,45.0213 -122.0065,45.0077 -121.9785,45.0147 -121.9148,45.029 -121.7043,45.0478 -121.5884,45.0826 -121.4421,45.0915 -121.3827,45.0902 -121.2777,45.0783 -121.2108,45.1044 -121.1827,45.1241 -121.1404,45.1532 -121.091,45.1825 -121.0539,45.1975 -120.9994,45.1993 -120.9822,45.2049 -120.9228,45.2216 -120.9016,45.2306 -120.8891,45.2366 -120.8449,45.2515 -120.7467,45.2825 -120.7229,45.2992 -120.7084,45.3414 -120.7084,45.3712 -120.6761,45.3739 -120.6087,45.3915 -120.5505,45.4154 -120.5298,45.4586 -120.4945,45.4789 -120.4524,45.4989 -120.4155,45.5206 -120.4059,45.5372 -120.3762,45.5627 -120.3277,45.593 -120.2833,45.6284 -120.2487,45.6558 -120.1907,45.6856 -120.1792,45.6904 -120.1601,45.7002 -120.1551,45.7029 -120.1325,45.7145 -120.1177,45.7223 -120.0958,45.7297 -120.0567,45.7426 -120.0285,45.7518 -119.9975,45.762 -119.9649,45.7727 -119.9321,45.7835 -119.8939,45.796 -119.8518,45.8208 -119.8358,45.837 -119.8247,45.8542 -119.8241,45.8729 -119.8237,45.8873 -119.8123,45.8929 -119.7843,45.8995 -119.7583,45.9056 -119.7446,45.9113 -119.7443,45.9335 -119.7344,45.9584 -119.7208,45.969 -119.6989,45.9869 -119.6829,46.0037 -119.672,46.0156 -119.6432,46.0455 -119.6173,46.0722 -119.5917,46.0919 -119.5719,46.1082 -119.5591,46.1251 -119.5592,46.1716 -119.5588,46.2151 -119.5579,46.2434 -119.5471,46.2661 -119.5325,46.2947 -119.5143,46.3177 -119.4764,46.3603 -119.4408,46.3941 -119.39,46.4415 -119.3491,46.4746 -119.3374,46.4814</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 411.21km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-122.6975,44.7994 -122.6974,44.8024 -122.6772,44.7988 -122.6551,44.7977 -122.6277,44.8009 -122.6161,44.8028 -122.573,44.8079 -122.5364,44.8153 -122.4949,44.8262 -122.4756,44.8253 -122.4451,44.8442 -122.4052,44.8614 -122.3924,44.8712 -122.3632,44.8889 -122.3517,44.9006 -122.3368,44.9123 -122.3159,44.92 -122.2826,44.9283 -122.2579,44.9496 -122.2269,44.9574 -122.1636,44.9656 -122.1186,44.9782 -122.0373,45.0211 -122.0065,45.0075 -121.9784,45.0145 -121.9146,45.0289 -121.7044,45.0476 -121.5883,45.0824 -121.442,45.0913 -121.3828,45.0901 -121.2777,45.0781 -121.2105,45.1044 -121.1825,45.124 -121.1541,45.1436 -121.1067,45.169 -121.0777,45.1865 -121.0338,45.1951 -120.9945,45.1996 -120.9584,45.2115 -120.9031,45.2297 -120.9005,45.2309</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 192.55km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-120.9005,45.2309 -120.8888,45.2365 -120.8448,45.2514 -120.7466,45.2823 -120.7227,45.2991 -120.7082,45.3602 -120.7033,45.3739 -120.6373,45.3851 -120.5749,45.4003 -120.5368,45.4237 -120.499,45.4753 -120.4289,45.506 -120.4057,45.5373 -120.3761,45.5626 -120.3275,45.593 -120.2832,45.6282 -120.2485,45.6558 -120.1905,45.6855 -120.179,45.6901 -120.1596,45.7 -120.1543,45.7026</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 94.62km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-120.1543,45.7026 -120.1427,45.7096 -120.1251,45.7186 -120.1178,45.7224 -120.1108,45.7247 -120.0807,45.7348 -120.0286,45.7518 -119.9976,45.762 -119.965,45.7727 -119.9322,45.7837 -119.8941,45.796 -119.8519,45.8209 -119.836,45.837 -119.825,45.8542 -119.8244,45.8702 -119.8238,45.8874 -119.8123,45.893 -119.7844,45.8996 -119.7584,45.9057 -119.7448,45.9113 -119.7445,45.9335 -119.7348,45.9583 -119.7169,45.9727 -119.699,45.987 -119.6832,46.0037 -119.6723,46.0157 -119.6434,46.0455 -119.6176,46.0723 -119.592,46.0921 -119.5722,46.1083 -119.5594,46.1251 -119.5594,46.1716 -119.5584,46.2277 -119.5549,46.2504 -119.5404,46.2808 -119.5188,46.3041 -119.4767,46.3604 -119.4411,46.3942 -119.3902,46.4416 -119.3492,46.4746 -119.3374,46.4815</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 124.09km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-120.1543,45.7026 -120.1725,45.6945 -120.216,45.6877 -120.2583,45.6885 -120.3093,45.6911 -120.3704,45.6852 -120.4338,45.6768 -120.4773,45.6715 -120.5223,45.6777 -120.5618,45.6797 -120.5851,45.6858 -120.6203,45.7062 -120.7039,45.6991 -120.7335,45.6785 -120.7378,45.6778</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 60.71km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-121.0203,44.4819 -121.0199,44.4983 -121.0207,44.553 -121.0235,44.5744 -121.0281,44.6182 -121.0235,44.6702 -121.0037,44.6979 -120.9582,44.7426 -120.9436,44.757 -120.9329,44.7687 -120.9168,44.7979 -120.914,44.8126 -120.9155,44.8299 -120.9095,44.8553 -120.9039,44.9114 -120.8995,44.9551 -120.9071,45.0141 -120.9145,45.0722 -120.9125,45.0933 -120.9014,45.1155 -120.9017,45.1278 -120.9018,45.1429 -120.9016,45.1706 -120.899,45.1935 -120.8962,45.2074 -120.8998,45.2305</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 80.09km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-120.7378,45.6778 -120.7379,45.6772 -120.7434,45.6747 -120.7505,45.6708 -120.7506,45.6638 -120.7507,45.6575 -120.7508,45.6516 -120.7509,45.6449 -120.7509,45.6391 -120.7509,45.6305 -120.7509,45.6235 -120.7509,45.617 -120.7509,45.6116 -120.7509,45.6059 -120.751,45.5995 -120.751,45.593 -120.751,45.5866 -120.7511,45.581 -120.7511,45.5746 -120.7512,45.5697 -120.7512,45.5645 -120.7514,45.5597 -120.7514,45.5542 -120.7514,45.5477 -120.7508,45.5416 -120.7511,45.5388 -120.7542,45.5329 -120.7574,45.528 -120.7599,45.5234 -120.768,45.5219 -120.7748,45.5206 -120.7823,45.5192 -120.7878,45.517 -120.7981,45.5087 -120.8088,45.5002 -120.8171,45.4935 -120.8158,45.4872 -120.8147,45.4815 -120.8134,45.4753 -120.8132,45.4695 -120.8202,45.4589 -120.8357,45.4494 -120.8369,45.445 -120.8334,45.439 -120.8319,45.4351 -120.8321,45.4234 -120.8322,45.4172 -120.8323,45.4085 -120.8324,45.4048 -120.8325,45.3977 -120.8324,45.3887 -120.8359,45.3833 -120.8402,45.3766 -120.8645,45.368 -120.8691,45.3651 -120.8759,45.3584 -120.8803,45.3541 -120.8835,45.3465 -120.8864,45.3395 -120.8881,45.3353 -120.891,45.3282 -120.8924,45.3216 -120.8926,45.3161 -120.8927,45.3097 -120.8889,45.3018 -120.8932,45.2903 -120.8952,45.2848 -120.8991,45.2743 -120.9023,45.2658 -120.9042,45.2597 -120.9046,45.2545 -120.9037,45.2487 -120.9028,45.2428 -120.902,45.2382 -120.901,45.2319 -120.9003,45.2271 -120.8995,45.2222 -120.8987,45.2169 -120.8977,45.2106 -120.899,45.1994 -120.8999,45.1949 -120.9012,45.1881 -120.9024,45.1818 -120.9025,45.1768 -120.9025,45.1705 -120.9026,45.1647 -120.9026,45.1597 -120.9027,45.154 -120.9027,45.1466 -120.9028,45.1404 -120.9028,45.1341 -120.9029,45.1281 -120.903,45.1153 -120.903,45.1092 -120.9065,45.1041 -120.9133,45.0944 -120.914,45.0877 -120.9146,45.0813 -120.9152,45.075 -120.9149,45.0678 -120.9141,45.0618 -120.9134,45.056 -120.9127,45.0504 -120.912,45.0448 -120.9113,45.0399 -120.9104,45.0328 -120.9097,45.0272 -120.9089,45.0209 -120.908,45.0138 -120.9072,45.0075 -120.9065,45.002 -120.9058,44.9962 -120.905,44.9899 -120.9042,44.9837 -120.9035,44.9782 -120.9027,44.9719 -120.902,44.9669 -120.9013,44.961 -120.9005,44.9551 -120.901,44.9503 -120.9016,44.9442 -120.9021,44.9391 -120.9027,44.9335 -120.9033,44.9272 -120.9037,44.9228 -120.9043,44.9171 -120.9049,44.9108 -120.9055,44.9053 -120.9063,44.8969 -120.9069,44.8909 -120.9074,44.8859 -120.9082,44.8781 -120.9088,44.872 -120.9094,44.8662 -120.9101,44.8591 -120.9105,44.8553 -120.9118,44.8499 -120.9128,44.8457 -120.9152,44.8356 -120.9165,44.83 -120.9159,44.8236 -120.9154,44.8173 -120.9157,44.8091 -120.9171,44.8014 -120.9183,44.7952 -120.9195,44.7889 -120.9207,44.783 -120.9256,44.7778 -120.93,44.773 -120.9355,44.7671 -120.9395,44.7628 -120.9454,44.7565 -120.9493,44.7524 -120.9545,44.7473 -120.9594,44.7426 -120.9646,44.7375 -120.9697,44.7324 -120.9742,44.728 -120.9794,44.7229 -120.9854,44.717 -120.9896,44.7128 -120.9936,44.709 -120.9973,44.7053 -121.0022,44.7005 -121.0073,44.6955 -121.0123,44.6906 -121.0175,44.6855 -121.0212,44.6819 -121.0241,44.6757 -121.0246,44.6703 -121.025,44.6655 -121.0257,44.6579 -121.0262,44.6525 -121.0267,44.6464 -121.0272,44.6403 -121.0278,44.6342 -121.0282,44.6297 -121.0287,44.6234 -121.0293,44.6171 -121.0298,44.6113 -121.0303,44.6055 -121.0308,44.6003 -121.0313,44.5946 -121.0303,44.5893 -121.0284,44.5842 -121.0261,44.5782 -121.0241,44.5727 -121.0221,44.5674 -121.022,44.561 -121.0219,44.5551 -121.0218,44.55 -121.0217,44.5438 -121.0216,44.5378 -121.0215,44.5318 -121.0214,44.5255 -121.0213,44.5193 -121.0212,44.513 -121.0211,44.5067 -121.021,44.5 -121.0209,44.4937 -121.0209,44.4874 -121.0208,44.4826</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 134.55km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-120.7378,45.6778 -120.7378,45.677 -120.7431,45.6744 -120.7499,45.6707 -120.75,45.6638 -120.7501,45.658 -120.7502,45.6516 -120.7501,45.6449 -120.7501,45.6391 -120.7501,45.6305 -120.7501,45.6235 -120.7501,45.617 -120.7501,45.6115 -120.7502,45.6059 -120.7502,45.5995 -120.7504,45.593 -120.7504,45.5866 -120.7505,45.581 -120.7505,45.5746 -120.7506,45.5697 -120.7506,45.5645 -120.7506,45.5597 -120.7506,45.5538 -120.7509,45.5474 -120.7495,45.5405 -120.7523,45.5354 -120.7549,45.5306 -120.7578,45.5265 -120.7633,45.5223 -120.772,45.5207 -120.7806,45.5191 -120.7855,45.5182 -120.7906,45.5141 -120.8049,45.5027 -120.8105,45.4982 -120.8159,45.4906 -120.8146,45.4842 -120.8136,45.4794 -120.8118,45.4707 -120.8172,45.4625 -120.8223,45.4547 -120.8348,45.4489 -120.8361,45.4446 -120.8326,45.4387 -120.8312,45.4351 -120.8315,45.423 -120.8316,45.4166 -120.8317,45.4085 -120.8318,45.4047 -120.8319,45.3988 -120.8318,45.3886 -120.8352,45.3834 -120.839,45.3776 -120.843,45.3713 -120.8452,45.3696 -120.8666,45.3668 -120.8715,45.362 -120.8783,45.3554 -120.8807,45.3518 -120.8832,45.3458 -120.8859,45.3392 -120.8875,45.3353 -120.8904,45.3283 -120.8919,45.3216 -120.892,45.316 -120.8922,45.3098 -120.8882,45.3021 -120.8926,45.2901 -120.8946,45.2849 -120.8985,45.2745 -120.9018,45.2657 -120.9037,45.2597 -120.904,45.2545 -120.9031,45.2487 -120.9022,45.2428 -120.9014,45.2381 -120.9005,45.232 -120.8997,45.2273 -120.8989,45.2221 -120.8979,45.2158 -120.8971,45.2107 -120.8985,45.199 -120.8994,45.1943 -120.9006,45.1881 -120.9019,45.1818 -120.9019,45.1765 -120.902,45.1705 -120.902,45.1644 -120.902,45.1597 -120.9021,45.1541 -120.9021,45.1466 -120.9022,45.1402 -120.9022,45.1341 -120.9022,45.1278 -120.9023,45.1153 -120.9024,45.1091 -120.9057,45.1043 -120.9128,45.0942 -120.9134,45.0878 -120.914,45.0816 -120.9146,45.0753 -120.9144,45.068 -120.9135,45.0617 -120.9128,45.0561 -120.9121,45.0501 -120.9114,45.0449 -120.9105,45.0377 -120.9098,45.0327 -120.9091,45.0271 -120.9084,45.0211 -120.9075,45.0139 -120.9067,45.0079 -120.9059,45.0017 -120.9051,44.9957 -120.9044,44.9897 -120.9036,44.9837 -120.9029,44.9782 -120.9021,44.972 -120.9014,44.9668 -120.9007,44.961 -120.9,44.9551 -120.9004,44.9503 -120.901,44.9444 -120.9015,44.9392 -120.9021,44.9339 -120.9027,44.9276 -120.9032,44.9228 -120.9037,44.9171 -120.9044,44.9108 -120.9049,44.9053 -120.9058,44.8966 -120.9063,44.891 -120.9069,44.8858 -120.9076,44.878 -120.9082,44.8719 -120.9088,44.8662 -120.9095,44.8591 -120.9099,44.8553 -120.9112,44.8497 -120.9122,44.8456 -120.9145,44.8358 -120.9159,44.8299 -120.9153,44.8228 -120.9148,44.8173 -120.9146,44.8116 -120.9161,44.804 -120.9172,44.7978 -120.9184,44.7919 -120.9196,44.7856 -120.9232,44.7796 -120.9274,44.775 -120.9319,44.7702 -120.9376,44.7641 -120.9419,44.7595 -120.9471,44.7538 -120.9516,44.7494 -120.9563,44.7449 -120.9613,44.7399 -120.9662,44.7351 -120.9708,44.7307 -120.9764,44.7251 -120.9816,44.72 -120.9878,44.7139 -120.9909,44.7109 -120.9948,44.7071 -120.9995,44.7024 -121.004,44.6981 -121.0085,44.6936 -121.0132,44.689 -121.0184,44.6839 -121.0232,44.6791 -121.0238,44.673 -121.0243,44.6667 -121.0249,44.6606 -121.0253,44.6562 -121.0258,44.6499 -121.0264,44.643 -121.0269,44.6375 -121.0273,44.6325 -121.0279,44.6262 -121.0284,44.6199 -121.0289,44.615 -121.0294,44.609 -121.03,44.6027 -121.0305,44.597 -121.0309,44.5925 -121.0289,44.5871 -121.0268,44.5814 -121.0247,44.5759 -121.0224,44.5698 -121.0215,44.5651 -121.0214,44.5592 -121.0213,44.5529 -121.0211,44.5466 -121.021,44.5412 -121.0209,44.5349 -121.0209,44.5286 -121.0208,44.5224 -121.0207,44.5161 -121.0206,44.5098 -121.0205,44.5035 -121.0204,44.4972 -121.0203,44.4909 -121.0202,44.4839 -121.0203,44.4819</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 134.83km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-122.407,45.3602 -122.4096,45.3598 -122.4211,45.3578 -122.427,45.3577 -122.435,45.3576 -122.4395,45.3552 -122.4466,45.3513 -122.4537,45.3474 -122.4625,45.3426 -122.4689,45.3391 -122.4771,45.3354 -122.4851,45.3319 -122.4918,45.3321 -122.5051,45.3326 -122.5128,45.3331 -122.5195,45.3315 -122.5262,45.3272 -122.5338,45.3272 -122.5429,45.3272 -122.5515,45.3272 -122.5584,45.3271 -122.5656,45.3251 -122.5705,45.3218 -122.5755,45.3188 -122.5801,45.3162 -122.5857,45.3127 -122.5959,45.3132 -122.6058,45.3137 -122.6121,45.3167 -122.6231,45.3167 -122.632,45.3168 -122.6385,45.3168 -122.6452,45.3168 -122.6523,45.3168 -122.6636,45.3174 -122.6719,45.3181 -122.6788,45.3197 -122.6861,45.3196 -122.6968,45.3196 -122.7058,45.3196 -122.7145,45.3196 -122.7231,45.3196 -122.7306,45.3196 -122.7362,45.3209 -122.7432,45.3246 -122.7508,45.3286 -122.759,45.3286 -122.7669,45.3285 -122.7747,45.3285</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 38.66km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-122.407,45.3602 -122.4068,45.3606 -122.4035,45.3608 -122.3962,45.3621 -122.3899,45.3652 -122.3829,45.3686 -122.3756,45.3721 -122.3679,45.3754 -122.3586,45.3794 -122.3493,45.3834 -122.3419,45.3866 -122.3355,45.3893 -122.332,45.3904 -122.3258,45.3933 -122.3183,45.3968 -122.3094,45.4009 -122.3037,45.4035 -122.2961,45.4071 -122.2871,45.4112 -122.279,45.415 -122.2789,45.4209 -122.2788,45.4268 -122.2742,45.4287 -122.265,45.4326 -122.2496,45.4374 -122.2338,45.4423 -122.2306,45.4433 -122.2267,45.4461 -122.2291,45.4493 -122.2342,45.4554 -122.2389,45.4607 -122.2436,45.4658 -122.2466,45.4702 -122.2489,45.4757 -122.2509,45.4807 -122.2533,45.486 -122.2564,45.4936 -122.2641,45.4992 -122.2709,45.5041 -122.2786,45.5078 -122.2841,45.5093 -122.293,45.5117 -122.2986,45.5132 -122.3041,45.5147 -122.3104,45.5164 -122.3163,45.5186 -122.3219,45.5225 -122.3286,45.5271 -122.334,45.5308 -122.3395,45.5346 -122.3442,45.5383 -122.3505,45.5431 -122.3549,45.5466 -122.36,45.5505 -122.3659,45.5551 -122.3745,45.5589 -122.3843,45.5607 -122.3949,45.5601 -122.4019,45.5619 -122.4057,45.5598 -122.4042,45.5589</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 43.69km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-119.835,46.5155 -119.8364,46.5147 -119.8404,46.5142 -119.8496,46.5142 -119.8569,46.5143 -119.8644,46.5143 -119.8712,46.5123 -119.8778,46.508 -119.8834,46.5042 -119.89,46.4998 -119.8977,46.4947 -119.9058,46.4893 -119.91,46.4865 -119.9171,46.4818 -119.9231,46.4778 -119.9295,46.4734 -119.9357,46.4693 -119.943,46.4645 -119.9511,46.459 -119.9552,46.4563 -119.9618,46.4519 -119.9668,46.4485 -119.9726,46.4446 -119.9788,46.4405 -119.9839,46.4371 -119.9924,46.4314 -119.9971,46.4282 -120.0047,46.4232 -120.0096,46.4199 -120.0169,46.415 -120.0219,46.4116 -120.0283,46.4074 -120.0345,46.4032 -120.0402,46.3994 -120.0472,46.3947 -120.0537,46.3903 -120.0594,46.3865 -120.0654,46.3828 -120.0713,46.3792 -120.0779,46.3752 -120.0828,46.3706 -120.0892,46.3662 -120.0953,46.362 -120.1005,46.3585 -120.1063,46.3553 -120.113,46.352 -120.1201,46.3478 -120.1253,46.3438 -120.1294,46.3407 -120.135,46.3364 -120.1417,46.3312 -120.1474,46.3274 -120.1536,46.3234 -120.1651,46.3194 -120.1743,46.316 -120.1843,46.3125 -120.1927,46.3096 -120.1996,46.3072 -120.2074,46.3045 -120.2154,46.3017 -120.2235,46.2991 -120.231,46.2973 -120.2393,46.2954 -120.2472,46.2937 -120.2557,46.2918 -120.2627,46.2902 -120.2733,46.2879 -120.2818,46.286 -120.2897,46.2842 -120.2978,46.2824 -120.3049,46.2808 -120.315,46.2786 -120.3211,46.2772 -120.3282,46.2756 -120.3368,46.2737 -120.3454,46.2718 -120.3583,46.2689 -120.3644,46.2675 -120.373,46.2656 -120.3798,46.2641 -120.3878,46.2644 -120.3969,46.2648 -120.4082,46.2654 -120.4161,46.2657 -120.4242,46.2661 -120.433,46.2665 -120.4407,46.2668 -120.444,46.2634 -120.4483,46.2589 -120.4519,46.2552 -120.4567,46.2501 -120.4618,46.2448 -120.4667,46.2396 -120.4716,46.2346 -120.4766,46.2293 -120.481,46.2247 -120.4853,46.2202 -120.493,46.2122 -120.4975,46.2069 -120.5016,46.2022 -120.5062,46.1968 -120.51,46.1923 -120.514,46.1877 -120.5171,46.1817 -120.5201,46.1759 -120.5232,46.1699 -120.5262,46.1641 -120.5289,46.1588 -120.5347,46.1546 -120.5403,46.1505 -120.5466,46.1459 -120.5529,46.1414 -120.5582,46.1375 -120.5636,46.1326 -120.5705,46.1263 -120.5748,46.1223 -120.5805,46.1171 -120.5873,46.111 -120.5934,46.1054 -120.601,46.0984 -120.6072,46.0928 -120.6125,46.0879 -120.614,46.081 -120.6155,46.0739 -120.617,46.0667 -120.6184,46.0598 -120.6198,46.0535 -120.6212,46.0467 -120.6225,46.0403 -120.6239,46.0334 -120.6254,46.0255 -120.6264,46.0205 -120.6314,46.0151 -120.6383,46.0076 -120.6421,46.0035 -120.647,45.9981 -120.6524,45.9923 -120.656,45.9884 -120.658,45.9821 -120.6603,45.975 -120.6621,45.9694 -120.6638,45.9638 -120.6661,45.9566 -120.6705,45.9504 -120.6744,45.9462 -120.6812,45.9425 -120.6886,45.9383 -120.6951,45.9347 -120.7032,45.9302 -120.7087,45.9272 -120.7166,45.9227 -120.7237,45.9188 -120.7301,45.9152 -120.7355,45.9122 -120.7433,45.9096 -120.7515,45.9078 -120.7595,45.906 -120.7672,45.9043 -120.7783,45.9018 -120.7869,45.8999 -120.7941,45.8983 -120.803,45.8963 -120.8126,45.8943 -120.8222,45.8922 -120.8274,45.8911 -120.8345,45.8896 -120.8415,45.8881 -120.8493,45.8864 -120.8594,45.8843 -120.8662,45.8828 -120.873,45.8814 -120.8811,45.8797 -120.8881,45.8782 -120.8963,45.8764 -120.9045,45.8747 -120.9113,45.8732 -120.919,45.8716 -120.9267,45.8699 -120.9359,45.8679 -120.9445,45.8661 -120.9515,45.8646 -120.9592,45.863 -120.9687,45.8609 -120.9757,45.8594 -120.9837,45.8577 -120.9917,45.856 -120.9991,45.8544 -121.0085,45.8524 -121.0179,45.8504 -121.0276,45.8483 -121.0339,45.8469 -121.0473,45.8451 -121.0524,45.8445 -121.0664,45.8427 -121.0731,45.8419 -121.0847,45.8404 -121.0951,45.839 -121.104,45.838 -121.1129,45.8369 -121.1194,45.8361 -121.1281,45.8351 -121.1391,45.8338 -121.1439,45.8332 -121.1476,45.8315 -121.156,45.8278 -121.1697,45.8224 -121.1802,45.8205 -121.1905,45.8186 -121.1967,45.8175 -121.2065,45.8157 -121.2111,45.8148 -121.2176,45.8136 -121.2263,45.812 -121.2336,45.8107 -121.2423,45.8091 -121.2495,45.8078 -121.2576,45.8063 -121.2673,45.8045 -121.2745,45.8031 -121.2831,45.8016 -121.2914,45.8 -121.2995,45.7985 -121.3097,45.7966 -121.3185,45.795 -121.3258,45.7937 -121.332,45.7925 -121.3397,45.7911 -121.3478,45.7896 -121.3556,45.7882 -121.3642,45.7866 -121.3751,45.7846 -121.38,45.7837 -121.3888,45.782 -121.3975,45.7804 -121.4104,45.778 -121.4167,45.7769 -121.4275,45.7749 -121.4347,45.7735 -121.4412,45.7723 -121.4491,45.7709 -121.4589,45.769 -121.4654,45.7678 -121.4744,45.7661 -121.4827,45.7657 -121.4935,45.7637 -121.5037,45.7618 -121.5136,45.76 -121.5187,45.759 -121.5354,45.7576 -121.5411,45.7571 -121.5496,45.7577 -121.5583,45.7583 -121.5656,45.7588 -121.5732,45.7594 -121.5792,45.7598 -121.5868,45.7603 -121.5946,45.7608 -121.6032,45.7614 -121.6091,45.7618 -121.6186,45.7624 -121.6257,45.7629 -121.6359,45.7636 -121.6429,45.7641 -121.6504,45.7646 -121.6601,45.7653 -121.6711,45.766 -121.676,45.7663 -121.6852,45.7669 -121.6917,45.7672 -121.6995,45.7676 -121.708,45.7679 -121.7158,45.7682 -121.7242,45.7669 -121.7345,45.7625 -121.749,45.7544 -121.7588,45.7489 -121.7668,45.7478 -121.779,45.7481 -121.7835,45.7484 -121.7917,45.7494 -121.7986,45.7502 -121.8091,45.7513 -121.8184,45.7512 -121.8262,45.7511 -121.8324,45.751 -121.8399,45.748 -121.8467,45.7454 -121.852,45.7433 -121.8605,45.74 -121.8662,45.7377 -121.8725,45.7352 -121.8796,45.7324 -121.886,45.7301 -121.8923,45.7279 -121.9007,45.7251 -121.905,45.7236 -121.9092,45.7202 -121.9085,45.714 -121.9077,45.7077 -121.9083,45.7013 -121.9123,45.6947 -121.9187,45.6892 -121.9217,45.6867 -121.9276,45.6828 -121.9333,45.6776 -121.9391,45.6719 -121.9449,45.6665 -121.9498,45.6623 -121.9541,45.6575 -121.9588,45.6523 -121.9632,45.6484 -121.9571,45.6453 -121.9481,45.6379 -121.9424,45.6333 -121.9439,45.6244 -121.9447,45.6198 -121.9429,45.6126 -121.942,45.6041 -121.9427,45.5985 -121.9502,45.594 -121.9548,45.5928 -121.9601,45.5914 -121.9666,45.5894 -121.9704,45.5848 -121.9754,45.5787 -121.98,45.573 -121.9846,45.5674 -121.9875,45.5637 -121.996,45.5596 -122.0065,45.5544 -122.0153,45.55 -122.0223,45.5466 -122.0318,45.5419 -122.04,45.5378 -122.0456,45.535 -122.0524,45.5317 -122.0609,45.5275 -122.0683,45.5238 -122.0767,45.5197 -122.0839,45.5161 -122.0931,45.5115 -122.0992,45.5085 -122.1067,45.5048 -122.1155,45.5005 -122.1206,45.498 -122.1299,45.4936 -122.1397,45.4887 -122.1464,45.4853 -122.1546,45.4813 -122.162,45.4776 -122.1711,45.4731 -122.1781,45.4696 -122.1872,45.4651 -122.1939,45.4618 -122.2018,45.4578 -122.2081,45.4559 -122.2141,45.4536 -122.2217,45.4494 -122.2262,45.4457 -122.2312,45.4435 -122.2353,45.4423 -122.2496,45.4379 -122.2598,45.4348 -122.2695,45.4312 -122.2758,45.4285 -122.2794,45.4243 -122.2796,45.4182 -122.2832,45.4135 -122.2921,45.4094 -122.3001,45.4057 -122.3092,45.4015 -122.3185,45.3971 -122.3274,45.393 -122.3317,45.391 -122.3389,45.3882 -122.3461,45.3852 -122.3572,45.3804 -122.3626,45.3781 -122.3719,45.3741 -122.3793,45.3707 -122.3865,45.3672 -122.3936,45.3638 -122.4006,45.3617 -122.4047,45.3606 -122.407,45.3602</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 304.65km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-121.1079,45.6036 -121.1082,45.6034 -121.1122,45.602 -121.1167,45.5973 -121.1196,45.5955 -121.1265,45.5925 -121.1369,45.588 -121.1479,45.5832 -121.1597,45.5813 -121.1649,45.5796 -121.1757,45.5747 -121.1834,45.5712 -121.1961,45.5655 -121.2042,45.5619 -121.2085,45.56 -121.2145,45.5567 -121.2244,45.5526 -121.2369,45.5521 -121.2431,45.5518 -121.2555,45.5504 -121.2662,45.5491 -121.2755,45.5479 -121.2846,45.5469 -121.2976,45.5454 -121.3052,45.5453 -121.3227,45.5486 -121.3345,45.5509 -121.3432,45.5525 -121.3486,45.5518 -121.362,45.55 -121.3716,45.5487 -121.3791,45.5477 -121.3875,45.5465 -121.4001,45.5448 -121.4124,45.5431 -121.4228,45.5417 -121.4335,45.5403 -121.4449,45.5387 -121.4526,45.5377 -121.4626,45.5363 -121.4728,45.5349 -121.4813,45.5337 -121.4893,45.5326 -121.5008,45.5311 -121.5094,45.5299 -121.5184,45.5286 -121.5268,45.5273 -121.535,45.5269 -121.5461,45.5262 -121.5554,45.5262 -121.5626,45.5275 -121.5704,45.5282 -121.5807,45.5301 -121.5884,45.5301 -121.5981,45.5301 -121.6046,45.5301 -121.6104,45.5305 -121.6176,45.5307 -121.6248,45.5289 -121.6321,45.5271 -121.6404,45.527 -121.6503,45.5269 -121.6629,45.5267 -121.67,45.5266 -121.681,45.5265 -121.6981,45.5245 -121.7023,45.5234 -121.7144,45.5174 -121.7202,45.5145 -121.7271,45.5103 -121.7337,45.5059 -121.7413,45.5007 -121.7476,45.4965 -121.7555,45.4911 -121.7618,45.4869 -121.7655,45.4814 -121.7697,45.4753 -121.7735,45.4697 -121.7769,45.4648 -121.7802,45.4599 -121.7845,45.4537 -121.7881,45.4485 -121.7931,45.441 -121.7913,45.4357 -121.7916,45.4325 -121.7982,45.4294 -121.8022,45.4281 -121.8102,45.4256 -121.819,45.423 -121.8265,45.4187 -121.8362,45.4134 -121.842,45.4103 -121.8493,45.4064 -121.8577,45.4019 -121.8624,45.3971 -121.867,45.3925 -121.8737,45.3858 -121.881,45.3835 -121.888,45.3823 -121.898,45.3805 -121.9047,45.3793 -121.9138,45.3763 -121.9219,45.3735 -121.9349,45.369 -121.9417,45.3665 -121.9506,45.3632 -121.9551,45.3615 -121.9614,45.3641 -121.9697,45.3675 -121.9791,45.3714 -121.9891,45.3755 -121.9953,45.3781 -122.0048,45.3819 -122.0173,45.3854 -122.0264,45.3864 -122.0341,45.3872 -122.0431,45.3882 -122.0534,45.3893 -122.0622,45.3893 -122.0715,45.3893 -122.0812,45.3893 -122.0904,45.3892 -122.0996,45.3892 -122.112,45.389 -122.12,45.3889 -122.1356,45.3886 -122.1433,45.3884 -122.1521,45.3882 -122.1604,45.3882 -122.1708,45.3882 -122.1802,45.3882 -122.1894,45.3882 -122.1991,45.3883 -122.206,45.3868 -122.2146,45.3811 -122.2238,45.3787 -122.2302,45.377 -122.2393,45.3767 -122.2495,45.3764 -122.2594,45.3761 -122.2699,45.3758 -122.2829,45.3755 -122.2894,45.3753 -122.2997,45.3758 -122.3079,45.3774 -122.3161,45.381 -122.3225,45.3837 -122.3333,45.3884 -122.3357,45.3888 -122.3429,45.3857 -122.3489,45.3832 -122.3567,45.3798 -122.3621,45.3775 -122.3717,45.3734 -122.3789,45.3702 -122.386,45.3667 -122.3929,45.3633 -122.4002,45.361 -122.4067,45.3601</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 139.49km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-120.7378,45.6778 -120.7388,45.6783 -120.7459,45.6781 -120.7564,45.6788 -120.7678,45.676 -120.7757,45.6715 -120.7851,45.6662 -120.7922,45.6622 -120.7998,45.6599 -120.8081,45.6574 -120.8211,45.6536 -120.8267,45.6518 -120.835,45.6493 -120.8431,45.6468 -120.8502,45.6447 -120.8602,45.6417 -120.8702,45.6386 -120.878,45.6362 -120.8863,45.6337 -120.8937,45.6315 -120.9015,45.6293 -120.9243,45.6242 -120.9326,45.6237 -120.9414,45.6232 -120.9495,45.6228 -120.9578,45.6224 -120.9679,45.6209 -120.9752,45.6199 -120.9819,45.619 -120.9967,45.6168 -121.002,45.6161 -121.0159,45.6146 -121.0287,45.613 -121.0405,45.6114 -121.0505,45.61 -121.0605,45.6087 -121.0664,45.6079 -121.0754,45.6067 -121.0862,45.6052 -121.0965,45.6046 -121.1053,45.604 -121.108,45.6039</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 38.19km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-120.7378,45.6778 -120.7385,45.6779 -120.7459,45.6778 -120.7565,45.6784 -120.7675,45.6758 -120.7756,45.6712 -120.7848,45.666 -120.7919,45.6619 -120.7996,45.6596 -120.8079,45.6571 -120.8208,45.6532 -120.8269,45.6514 -120.8351,45.6489 -120.842,45.6468 -120.8491,45.6446 -120.8594,45.6415 -120.8702,45.6383 -120.8779,45.6359 -120.8861,45.6334 -120.893,45.6314 -120.9017,45.6287 -120.9197,45.6241 -120.9279,45.6236 -120.9371,45.6231 -120.945,45.6227 -120.9532,45.6222 -120.9641,45.6211 -120.9728,45.6199 -120.9786,45.6191 -120.9895,45.6175 -120.9998,45.6161 -121.0067,45.6153 -121.0218,45.6135 -121.0348,45.6117 -121.0467,45.6101 -121.0557,45.609 -121.0642,45.6078 -121.073,45.6066 -121.0821,45.6054 -121.0914,45.6045 -121.1008,45.604 -121.1073,45.6035 -121.1079,45.6036</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 38.15km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-119.3136,45.9242 -119.3105,45.9261 -119.3144,45.9254 -119.3181,45.9247 -119.3213,45.9253 -119.3259,45.9354 -119.3276,45.9406 -119.3348,45.9405 -119.344,45.941 -119.3522,45.9415 -119.3604,45.9419 -119.3693,45.9424 -119.3771,45.9428 -119.3858,45.9433 -119.3943,45.9435 -119.4033,45.9434 -119.4131,45.9434 -119.4211,45.9433 -119.4298,45.9433 -119.4386,45.9432 -119.4475,45.9431 -119.4561,45.9431 -119.4651,45.943 -119.4736,45.9429 -119.4825,45.9429 -119.4914,45.9428 -119.4994,45.9427 -119.5076,45.9427 -119.5151,45.9426 -119.5235,45.9425 -119.5315,45.9425 -119.5392,45.9424 -119.5465,45.9424 -119.5551,45.9423 -119.5634,45.9422 -119.5722,45.9422 -119.5803,45.9421 -119.5882,45.942 -119.5958,45.942 -119.6038,45.9419 -119.6124,45.9399 -119.6206,45.938 -119.6288,45.936 -119.637,45.9341 -119.645,45.9323 -119.6534,45.9303 -119.6616,45.9284 -119.67,45.9264 -119.6783,45.9245 -119.6864,45.9226 -119.6946,45.9207 -119.7029,45.9187 -119.7109,45.9168 -119.7184,45.9151 -119.7249,45.9136 -119.7351,45.9112 -119.7435,45.9092 -119.7489,45.9085 -119.7587,45.9062 -119.767,45.9042 -119.7756,45.9022 -119.785,45.9 -119.7923,45.8983 -119.7998,45.8965 -119.8088,45.8944 -119.8152,45.8922 -119.824,45.8879 -119.8303,45.8841 -119.8381,45.8803 -119.8455,45.8766 -119.8513,45.8737 -119.8586,45.8701 -119.8661,45.8664 -119.8726,45.8632 -119.8797,45.8596 -119.8866,45.8562 -119.894,45.8526 -119.9013,45.8489 -119.9086,45.8453 -119.9133,45.8436 -119.9224,45.842 -119.9337,45.8399 -119.9417,45.8385 -119.9509,45.8369 -119.9572,45.8357 -119.9653,45.8343 -119.9753,45.8325 -119.9874,45.8281 -119.9949,45.8254 -120.0051,45.8218 -120.0121,45.8192 -120.0192,45.8167 -120.0255,45.8144 -120.0339,45.8114 -120.0407,45.8089 -120.0484,45.8061 -120.057,45.8028 -120.0643,45.8 -120.0726,45.7968 -120.0794,45.7942 -120.0896,45.7902 -120.0972,45.7893 -120.1056,45.7882 -120.1133,45.7873 -120.1211,45.7863 -120.1304,45.7847 -120.1361,45.7837 -120.1435,45.7824 -120.1495,45.7814 -120.1561,45.7783 -120.1628,45.7751 -120.1689,45.7726 -120.1768,45.7693 -120.1839,45.7664 -120.1904,45.762 -120.1955,45.7586 -120.2021,45.7552 -120.2091,45.7516 -120.2165,45.7478 -120.2241,45.7438 -120.2319,45.7421 -120.2404,45.7403 -120.2488,45.7384 -120.2579,45.7364 -120.2661,45.7349 -120.2742,45.7337 -120.282,45.7324 -120.2892,45.7313 -120.2977,45.73 -120.3062,45.7287 -120.3147,45.7274 -120.3228,45.7261 -120.3304,45.7249 -120.3375,45.7236 -120.3453,45.7219 -120.3557,45.7195 -120.3641,45.7176 -120.3717,45.7159 -120.3787,45.7144 -120.3863,45.7139 -120.399,45.7143 -120.407,45.7122 -120.4136,45.7104 -120.4193,45.7089 -120.4273,45.7092 -120.4352,45.7095 -120.4433,45.7097 -120.4522,45.71 -120.4592,45.7103 -120.4747,45.7108 -120.4813,45.7122 -120.4892,45.7151 -120.4972,45.7181 -120.5032,45.7203 -120.5119,45.7235 -120.516,45.7259 -120.5216,45.7292 -120.5302,45.7342 -120.5363,45.7375 -120.5423,45.7407 -120.5502,45.7453 -120.5596,45.7499 -120.5682,45.7541 -120.5761,45.7542 -120.5833,45.7553 -120.5904,45.7563 -120.5987,45.7567 -120.6073,45.7572 -120.6174,45.7577 -120.6251,45.7571 -120.6329,45.7542 -120.6422,45.7507 -120.6498,45.7478 -120.6576,45.7449 -120.6635,45.7427 -120.671,45.7399 -120.6783,45.7372 -120.6858,45.7344 -120.6918,45.7311 -120.6984,45.7276 -120.7047,45.7242 -120.7126,45.7199 -120.703,45.7024 -120.7059,45.7003 -120.7118,45.6973 -120.719,45.6937 -120.731,45.6847 -120.7353,45.6797 -120.7379,45.6784</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 153.93km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-120.5316,45.7834 -120.5315,45.783 -120.5324,45.7806 -120.535,45.7743 -120.5421,45.7731 -120.553,45.7714 -120.5584,45.7705 -120.5668,45.7692 -120.5742,45.7656 -120.5815,45.762 -120.5884,45.7587 -120.5964,45.7571 -120.6051,45.7576 -120.613,45.758 -120.6227,45.7585 -120.6296,45.7566 -120.6405,45.7525 -120.6479,45.7497 -120.6558,45.7468 -120.6636,45.7438 -120.6705,45.7412 -120.6776,45.7386 -120.6848,45.7359 -120.6915,45.733 -120.6986,45.7291 -120.7057,45.7253 -120.7117,45.722 -120.7131,45.7188 -120.7056,45.7023 -120.7121,45.6976 -120.7193,45.694 -120.7315,45.6848 -120.7357,45.6799 -120.7378,45.6778</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 26.18km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-119.835,46.5155 -119.8348,46.515 -119.8381,46.5136 -119.8412,46.5076 -119.8442,46.5019 -119.8474,46.4958 -119.8503,46.4901 -119.8527,46.4855 -119.8558,46.4797 -119.8579,46.4755 -119.8615,46.4686 -119.8643,46.4633 -119.8664,46.4573 -119.8681,46.4522 -119.8703,46.4461 -119.8712,46.44 -119.872,46.4352 -119.873,46.4285 -119.8739,46.4225 -119.8749,46.4162 -119.8758,46.4107 -119.8767,46.4048 -119.8776,46.3988 -119.8786,46.3925 -119.8795,46.3868 -119.8805,46.3805 -119.8821,46.3751 -119.8854,46.3694 -119.8887,46.3637 -119.8919,46.358 -119.8948,46.353 -119.8998,46.3485 -119.9045,46.3441 -119.9099,46.3391 -119.9138,46.3338 -119.9174,46.3301 -119.9235,46.326 -119.9281,46.3218 -119.9325,46.3166 -119.9372,46.3111 -119.9416,46.3059 -119.9457,46.3011 -119.9504,46.2956 -119.9532,46.2923 -119.9578,46.2869 -119.9625,46.2814 -119.9669,46.2762 -119.9714,46.2709 -119.9714,46.265 -119.9715,46.2579 -119.9715,46.2539 -119.9715,46.2477 -119.9715,46.2419 -119.9716,46.2359 -119.9716,46.2298 -119.9716,46.2243 -119.9716,46.2181 -119.9717,46.212 -119.9717,46.2061 -119.9717,46.2004 -119.9748,46.1952 -119.9815,46.1906 -119.9878,46.1863 -119.9939,46.182 -120.0003,46.1777 -120.0066,46.1733 -120.013,46.1689 -120.0195,46.1644 -120.0259,46.16 -120.032,46.1558 -120.0384,46.1514 -120.044,46.1475 -120.0502,46.1432 -120.0566,46.1388 -120.0626,46.1347 -120.0676,46.1312 -120.0741,46.1267 -120.0805,46.1223 -120.0858,46.119 -120.0937,46.1149 -120.1009,46.1111 -120.1058,46.1085 -120.1131,46.1047 -120.1204,46.1008 -120.1262,46.0977 -120.1334,46.094 -120.1407,46.0901 -120.1477,46.0864 -120.1549,46.0826 -120.1614,46.0791 -120.1686,46.0754 -120.1747,46.0732 -120.1831,46.0709 -120.1916,46.0686 -120.2001,46.0663 -120.207,46.0644 -120.2146,46.0623 -120.2227,46.0601 -120.2307,46.0579 -120.2369,46.0562 -120.2459,46.0538 -120.2555,46.0512 -120.264,46.0488 -120.2739,46.0461 -120.2828,46.0437 -120.2934,46.0408 -120.3015,46.0371 -120.3083,46.0325 -120.3159,46.0275 -120.3234,46.0225 -120.3306,46.0178 -120.3358,46.0143 -120.3428,46.0096 -120.351,46.0042 -120.3573,46.0 -120.3639,45.9956 -120.3704,45.9913 -120.3775,45.9865 -120.3847,45.9817 -120.3917,45.977 -120.3993,45.972 -120.4072,45.9667 -120.4142,45.9621 -120.4209,45.9576 -120.4267,45.953 -120.4325,45.9484 -120.4395,45.9428 -120.4454,45.9381 -120.4514,45.9334 -120.4573,45.9287 -120.4633,45.9239 -120.4692,45.9192 -120.4752,45.9145 -120.4809,45.9099 -120.4892,45.9033 -120.4948,45.8989 -120.5002,45.8946 -120.5046,45.8911 -120.5101,45.8868 -120.5117,45.8821 -120.5104,45.8759 -120.509,45.8696 -120.5077,45.8633 -120.5068,45.8592 -120.5056,45.8536 -120.5045,45.8483 -120.5033,45.8426 -120.5063,45.8369 -120.5088,45.8321 -120.5113,45.8274 -120.5144,45.8215 -120.5164,45.8176 -120.5218,45.8067 -120.5243,45.8007 -120.5273,45.7933 -120.5295,45.7877 -120.5312,45.7835</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 110.29km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-119.6738,45.8472 -119.6733,45.847 -119.665,45.8464 -119.6576,45.8465 -119.6512,45.8422 -119.6515,45.8391 -119.66,45.837 -119.6677,45.8359 -119.676,45.8355 -119.685,45.835 -119.6928,45.8345 -119.7002,45.8341 -119.7092,45.8336 -119.7169,45.8332 -119.7257,45.8327 -119.7344,45.8322 -119.7432,45.8317 -119.752,45.8312 -119.7605,45.8307 -119.7692,45.8302 -119.7777,45.8297 -119.7865,45.8292 -119.7952,45.8287 -119.8031,45.8274 -119.8119,45.826 -119.8207,45.8246 -119.8295,45.8232 -119.8383,45.8218 -119.8471,45.8203 -119.8556,45.8189 -119.8622,45.8151 -119.8692,45.811 -119.8759,45.8071 -119.8825,45.8032 -119.888,45.8 -119.8944,45.7963 -119.9022,45.7937 -119.9102,45.7911 -119.9177,45.7886 -119.9255,45.7861 -119.9337,45.7834 -119.9419,45.7807 -119.9498,45.7781 -119.958,45.7754 -119.9662,45.7727 -119.9742,45.7701 -119.9824,45.7674 -119.9906,45.7647 -119.9982,45.7622 -120.0059,45.7596 -120.0189,45.7553 -120.0248,45.7534 -120.0324,45.7509 -120.0406,45.7482 -120.0487,45.7456 -120.0569,45.7429 -120.0648,45.7402 -120.073,45.7376 -120.0811,45.7349 -120.0893,45.7322 -120.0964,45.7298 -120.1031,45.7276 -120.1105,45.7252 -120.1181,45.7227 -120.1253,45.719 -120.1323,45.7153 -120.1392,45.7118 -120.1462,45.7081 -120.1539,45.7042 -120.1543,45.7026</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 55.76km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-119.3136,45.9242 -119.3098,45.9229 -119.3093,45.915 -119.3118,45.9114 -119.3265,45.9087 -119.3356,45.907 -119.3432,45.9056 -119.3508,45.9042 -119.3596,45.9025 -119.3679,45.901 -119.3766,45.8994 -119.3854,45.8978 -119.3941,45.8961 -119.4028,45.8945 -119.4116,45.8929 -119.4247,45.8905 -119.4334,45.8889 -119.4421,45.8872 -119.4507,45.8856 -119.4593,45.884 -119.4679,45.8824 -119.4764,45.8808 -119.4852,45.8792 -119.4939,45.8776 -119.5004,45.8764 -119.509,45.8743 -119.5168,45.8723 -119.5253,45.8703 -119.5338,45.8682 -119.5423,45.8661 -119.5549,45.863 -119.562,45.8612 -119.5696,45.8593 -119.576,45.8578 -119.584,45.8558 -119.5913,45.854 -119.5995,45.852 -119.6077,45.8499 -119.615,45.8482 -119.6231,45.8461 -119.6308,45.8442 -119.6393,45.8421 -119.647,45.8402 -119.6512,45.8422 -119.6576,45.8465 -119.665,45.8464 -119.6733,45.8472</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 39.12km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-119.8077,45.6935 -119.8146,45.6938 -119.8274,45.6956 -119.843,45.6957 -119.8502,45.69 -119.8707,45.6899 -119.8956,45.6899 -119.9212,45.6898 -119.9455,45.6897 -119.9656,45.6896 -119.9895,45.6902 -120.0087,45.6919 -120.0275,45.7117 -120.0535,45.7117 -120.0769,45.7116 -120.1009,45.7112 -120.1269,45.7107 -120.1489,45.7056 -120.1543,45.7026</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PORTLAND GENERAL ELECTRIC COMPANY</name><description>500kV --- AC --- 35.93km --- http://www.oasis.oati.com/PGE/PGEdocs/PGE_Final_Near_Term_LTP_2014.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-119.336,46.4798 -119.3352,46.4811 -119.3396,46.4843 -119.3451,46.4882 -119.3508,46.4931 -119.3561,46.4977 -119.3615,46.5023 -119.3672,46.5071 -119.372,46.5113 -119.3765,46.5151 -119.3818,46.5197 -119.3868,46.5239 -119.3931,46.5285 -119.3994,46.5331 -119.4057,46.5376 -119.412,46.5421 -119.4183,46.5467 -119.4246,46.5513 -119.4309,46.5558 -119.4374,46.5605 -119.4444,46.5656 -119.4505,46.5699 -119.4566,46.5743 -119.4642,46.5798 -119.4701,46.584 -119.4755,46.5879 -119.4831,46.5934 -119.4881,46.598 -119.4949,46.604 -119.4989,46.6077 -119.5044,46.6127 -119.509,46.6169 -119.5141,46.6215 -119.5192,46.6261 -119.5246,46.6309 -119.53,46.6358 -119.5352,46.6405 -119.5404,46.6453 -119.5455,46.6499 -119.5503,46.6542 -119.5552,46.6586 -119.5598,46.663 -119.5644,46.6676 -119.5693,46.6705 -119.5709,46.6695</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 30.52km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-119.5709,46.6695 -119.571,46.6691 -119.5727,46.666 -119.5713,46.6605 -119.5698,46.6546 -119.5682,46.6485 -119.5667,46.6422 -119.5664,46.6368 -119.569,46.6311 -119.5728,46.6253 -119.5765,46.6196 -119.5803,46.6138 -119.5837,46.6086 -119.5874,46.6029 -119.5904,46.5992 -119.5988,46.5966 -119.6072,46.5941 -119.615,46.5916 -119.6223,46.5894 -119.6308,46.5868 -119.6397,46.584 -119.6481,46.5815 -119.6564,46.5789 -119.6635,46.5767 -119.6716,46.5738 -119.6798,46.5709 -119.6879,46.568 -119.6951,46.5654 -119.7032,46.5625 -119.7116,46.5595 -119.7194,46.5567 -119.7268,46.554 -119.7349,46.5511 -119.7423,46.5485 -119.7499,46.5457 -119.7566,46.5434 -119.7647,46.5405 -119.7723,46.5377 -119.7783,46.5356 -119.7875,46.5323 -119.7945,46.5297 -119.8017,46.5272 -119.8098,46.5242 -119.8179,46.5213 -119.8238,46.5192 -119.8302,46.5169 -119.8342,46.5155</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 33.74km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-119.5709,46.6695 -119.5707,46.669 -119.572,46.6655 -119.571,46.6616 -119.5692,46.6547 -119.5677,46.6485 -119.5661,46.6423 -119.5647,46.6367 -119.5685,46.6309 -119.5722,46.6252 -119.576,46.6194 -119.5798,46.6136 -119.5836,46.6078 -119.5868,46.6029 -119.5893,46.5991 -119.5973,46.5966 -119.6057,46.5941 -119.6137,46.5916 -119.6212,46.5893 -119.6286,46.587 -119.6369,46.5844 -119.6431,46.5825 -119.6509,46.5801 -119.6593,46.5775 -119.6673,46.5749 -119.6754,46.572 -119.6835,46.5691 -119.6917,46.5662 -119.6992,46.5634 -119.7073,46.5606 -119.7153,46.5577 -119.7232,46.5549 -119.7312,46.552 -119.7384,46.5494 -119.7454,46.5469 -119.7528,46.5442 -119.7599,46.5417 -119.768,46.5388 -119.7754,46.5361 -119.7835,46.5332 -119.792,46.5302 -119.7986,46.5278 -119.8067,46.5249 -119.8124,46.5228 -119.8205,46.5199 -119.8302,46.5165 -119.834,46.5153</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 33.86km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-123.0333,46.1079 -123.0352,46.1084 -123.0357,46.1122 -123.0363,46.1179 -123.0317,46.1252 -123.023,46.1353 -123.0096,46.1509 -123.0105,46.1555 -123.0117,46.1596 -123.0094,46.1672 -123.0079,46.1722 -123.0065,46.1769 -123.005,46.1834 -123.0036,46.1883 -123.0023,46.1941 -123.0015,46.1978 -123.0001,46.2042 -122.9991,46.2087 -122.9974,46.2165 -122.9964,46.2209 -122.9932,46.2299 -122.9917,46.234 -122.9881,46.2442 -122.9869,46.2471 -122.9842,46.2548 -122.9821,46.2605 -122.9797,46.2679 -122.9797,46.2732 -122.9797,46.2784 -122.9797,46.2841 -122.9798,46.2867 -122.9798,46.2923 -122.9798,46.297 -122.9799,46.3022 -122.9799,46.3086 -122.9799,46.3156 -122.9799,46.3189 -122.98,46.3252 -122.9797,46.3296 -122.98,46.3345 -122.98,46.3396 -122.9801,46.3459 -122.9801,46.351 -122.9801,46.3569 -122.9802,46.3625 -122.9802,46.37 -122.9802,46.3759 -122.9803,46.3819 -122.9803,46.3869 -122.9803,46.3907 -122.9803,46.397 -122.9804,46.4033 -122.9804,46.4097 -122.9804,46.4147 -122.9805,46.4199 -122.9805,46.4261 -122.9805,46.4313 -122.9805,46.4369 -122.9806,46.443 -122.9806,46.4491 -122.9806,46.4545 -122.9807,46.4608 -122.9807,46.4668 -122.9807,46.4717 -122.9808,46.4797 -122.9808,46.4876 -122.9808,46.492 -122.9809,46.4983 -122.9809,46.5036 -122.9809,46.5097 -122.9809,46.5152 -122.981,46.5205 -122.981,46.5268 -122.981,46.5331 -122.9811,46.5394 -122.9811,46.5441 -122.9811,46.5519 -122.9811,46.5557 -122.9797,46.5622 -122.9741,46.5684 -122.9693,46.5738 -122.9647,46.5789 -122.9599,46.5842 -122.956,46.5885 -122.949,46.5915 -122.9457,46.5969 -122.9431,46.6012 -122.9414,46.6047 -122.9359,46.6108 -122.9314,46.6158 -122.9272,46.6204 -122.9254,46.6229 -122.9205,46.6229 -122.9173,46.6227</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 56.49km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-122.8753,46.7545 -122.8753,46.7543 -122.8733,46.7504 -122.8686,46.7454 -122.8643,46.7408 -122.8595,46.7357 -122.8554,46.7327 -122.8481,46.7304 -122.8411,46.7282 -122.8422,46.7261 -122.8479,46.722 -122.8541,46.7176 -122.8579,46.7143 -122.8608,46.7105 -122.8664,46.7033 -122.8693,46.6995 -122.8747,46.6925 -122.8776,46.6887 -122.8831,46.6816 -122.8888,46.6741 -122.8933,46.668 -122.8969,46.6631 -122.9006,46.6582 -122.9051,46.6527 -122.9089,46.6478 -122.9136,46.6414 -122.9178,46.6354 -122.9224,46.6288 -122.9265,46.6229 -122.9306,46.618 -122.9348,46.6133 -122.9393,46.6083 -122.9434,46.6037 -122.9494,46.6006 -122.9496,46.5975 -122.9533,46.5934 -122.9579,46.5883 -122.9627,46.5829 -122.967,46.5782 -122.9712,46.5735 -122.9769,46.5672 -122.9822,46.5608 -122.9821,46.5523 -122.9821,46.5433 -122.9821,46.5374 -122.9821,46.5304 -122.982,46.5248 -122.982,46.5166 -122.982,46.5107 -122.9819,46.5035 -122.9819,46.494 -122.9819,46.4875 -122.9818,46.4805 -122.9818,46.4742 -122.9818,46.4691 -122.9817,46.4643 -122.9817,46.4576 -122.9817,46.4506 -122.9816,46.444 -122.9816,46.4385 -122.9816,46.4335 -122.9815,46.4267 -122.9815,46.4205 -122.9814,46.4137 -122.9814,46.4054 -122.9814,46.3987 -122.9813,46.3943 -122.9813,46.3872 -122.9813,46.3809 -122.9812,46.375 -122.9812,46.37 -122.9812,46.3626 -122.9811,46.3565 -122.9811,46.3504 -122.981,46.3429 -122.981,46.3356 -122.9815,46.331 -122.9814,46.3238 -122.9814,46.3177 -122.9814,46.3123 -122.9813,46.3049 -122.9813,46.2968 -122.9813,46.2924 -122.9813,46.2865 -122.9812,46.2791 -122.9812,46.2726 -122.9812,46.2683 -122.9826,46.2605 -122.9848,46.2544 -122.9876,46.2465 -122.991,46.2377 -122.9931,46.2316 -122.9949,46.2267 -122.9974,46.2186 -122.9989,46.212 -123.0001,46.2066 -123.0015,46.2002 -123.0024,46.196 -123.0041,46.1886 -123.0054,46.1836 -123.007,46.1769 -123.009,46.1704 -123.0105,46.1653 -123.0128,46.1575 -123.0093,46.1535 -123.018,46.1426 -123.0289,46.13 -123.0377,46.1197 -123.0367,46.1157 -123.036,46.1095 -123.0333,46.1079</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 73.88km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-122.8753,46.7545 -122.8762,46.7562 -122.8788,46.7622 -122.8813,46.7717 -122.8821,46.778 -122.8826,46.7822 -122.8832,46.7877 -122.8915,46.7919 -122.8995,46.7959 -122.9061,46.7991 -122.9115,46.8018 -122.9236,46.8078 -122.9301,46.8111 -122.9375,46.8148 -122.9449,46.8185 -122.9496,46.8238 -122.9494,46.8317 -122.9492,46.8372 -122.9489,46.8435 -122.9487,46.8492 -122.9486,46.8539 -122.9544,46.857 -122.9616,46.8609 -122.9681,46.8645 -122.9762,46.8689 -122.9834,46.8728 -122.9906,46.8768 -122.9931,46.8811 -122.9932,46.8874 -122.9932,46.8923 -122.9933,46.9006 -122.9934,46.9079 -122.9954,46.913 -122.9977,46.919 -122.9998,46.9244 -123.0,46.9293 -122.9978,46.9354 -122.996,46.9405 -122.9938,46.9467 -122.9917,46.9528 -122.9895,46.959 -122.9829,46.9634 -122.977,46.9673 -122.9699,46.972 -122.9613,46.9777 -122.9552,46.9818 -122.9552,46.9875 -122.9551,46.9926 -122.9551,46.9975 -122.957,47.0013 -122.9585,47.0065 -122.9646,47.0124 -122.9675,47.013 -122.976,47.0149 -122.9857,47.0188 -122.9965,47.0232 -123.0041,47.0262 -123.0109,47.029 -123.0162,47.0312 -123.0234,47.0321 -123.0318,47.0332 -123.0408,47.0345 -123.0482,47.0352 -123.0565,47.0363 -123.0655,47.0368 -123.0723,47.0363 -123.081,47.0343 -123.0898,47.0322 -123.0983,47.0303 -123.1071,47.0283 -123.1157,47.0263 -123.1242,47.0243 -123.133,47.0221 -123.1426,47.0208 -123.1516,47.0197 -123.1657,47.018 -123.1718,47.0173 -123.1827,47.016 -123.19,47.0152 -123.198,47.0143 -123.2059,47.0135 -123.2189,47.012 -123.2252,47.0102 -123.2318,47.0083 -123.2449,47.0046 -123.2535,47.0022 -123.2603,47.0002 -123.2677,46.9981 -123.2751,46.996 -123.2834,46.9936 -123.2936,46.9908 -123.3034,46.988 -123.3109,46.987 -123.3213,46.9869 -123.3325,46.9868 -123.3429,46.9867 -123.3536,46.9866 -123.3641,46.9866 -123.371,46.9865 -123.377,46.9818 -123.3835,46.9763 -123.3884,46.9722 -123.3968,46.9723 -123.4051,46.9725 -123.4137,46.9726 -123.42,46.972 -123.4292,46.9712 -123.44,46.9702 -123.4488,46.9692 -123.4601,46.9679 -123.4638,46.9674</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 86.98km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-122.8753,46.7545 -122.8753,46.7548 -122.8773,46.7598 -122.8803,46.7668 -122.8813,46.7759 -122.8818,46.7801 -122.8825,46.7855 -122.8859,46.7895 -122.8955,46.7943 -122.9024,46.7977 -122.9097,46.8013 -122.9163,46.8046 -122.9238,46.8084 -122.9297,46.8113 -122.9371,46.815 -122.9434,46.8181 -122.9492,46.8237 -122.9489,46.8313 -122.9487,46.8372 -122.9485,46.8435 -122.9483,46.8492 -122.9481,46.854 -122.9552,46.8579 -122.9619,46.8616 -122.9686,46.8652 -122.9761,46.8693 -122.9833,46.8732 -122.9904,46.8771 -122.9926,46.8813 -122.9927,46.8876 -122.9927,46.8928 -122.9928,46.9007 -122.9929,46.9051 -122.9938,46.9102 -122.996,46.916 -122.9982,46.9215 -123.0003,46.927 -122.9985,46.932 -122.9964,46.938 -122.9944,46.9437 -122.9924,46.9494 -122.9902,46.9555 -122.9862,46.9607 -122.9796,46.9651 -122.9719,46.9702 -122.9635,46.9758 -122.9575,46.9798 -122.9543,46.9847 -122.9543,46.9897 -122.9531,46.9961 -122.9533,47.001</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 33.74km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-121.9338,47.3361 -121.9331,47.3358 -121.9338,47.3299 -121.9341,47.3236 -121.9344,47.3173 -121.9338,47.3128 -121.9331,47.3069 -121.9333,47.3009 -121.9335,47.295 -121.9336,47.2893 -121.934,47.2826 -121.9347,47.2762 -121.9353,47.2701 -121.94,47.266 -121.9447,47.2618 -121.9451,47.2553 -121.9454,47.2494 -121.9467,47.2443 -121.9467,47.2385 -121.9466,47.2328 -121.9464,47.2265 -121.9464,47.2211 -121.9476,47.2153 -121.9481,47.209 -121.9425,47.2036 -121.9408,47.1973 -121.9386,47.19 -121.9373,47.1853 -121.9368,47.1809 -121.939,47.1748 -121.9412,47.1687 -121.9433,47.1629 -121.946,47.1553 -121.9479,47.1501 -121.9549,47.1475 -121.9628,47.1412 -121.9675,47.1375 -121.9749,47.1341 -121.9813,47.1323 -121.9907,47.1297 -122.0009,47.1271 -122.0171,47.1231 -122.0243,47.1212 -122.0325,47.1198 -122.0437,47.1179 -122.0527,47.1163 -122.0604,47.1127 -122.0663,47.1064 -122.0711,47.1013 -122.0758,47.0961 -122.0862,47.0897 -122.0922,47.0878 -122.0995,47.0856 -122.1079,47.0831 -122.1163,47.0805 -122.1235,47.0783 -122.1328,47.074 -122.1417,47.0698 -122.1478,47.0669 -122.1548,47.0637 -122.164,47.0596 -122.1702,47.0567 -122.1785,47.053 -122.1869,47.0492 -122.1952,47.0454 -122.2014,47.0426 -122.2131,47.0375 -122.2212,47.0356 -122.2303,47.0342 -122.2392,47.0328 -122.2481,47.0315 -122.2562,47.0302 -122.2646,47.0289 -122.2733,47.027 -122.2818,47.0246 -122.2904,47.0222 -122.2989,47.0198 -122.3074,47.0174 -122.3156,47.0151 -122.323,47.013 -122.3316,47.0106 -122.3401,47.0082 -122.3484,47.0058 -122.3562,47.0036 -122.3658,47.0009 -122.373,46.9989 -122.3812,46.9983 -122.3904,46.9977 -122.399,46.9971 -122.4078,46.9965 -122.4138,46.9931 -122.4209,46.9891 -122.4268,46.9858 -122.4339,46.9818 -122.441,46.9778 -122.447,46.9746 -122.4539,46.9711 -122.4613,46.9673 -122.4686,46.9635 -122.479,46.9626 -122.486,46.962 -122.4948,46.9613 -122.5039,46.9606 -122.5131,46.9599 -122.5212,46.9592 -122.5298,46.9586 -122.5387,46.9579 -122.5461,46.9573 -122.5536,46.9567 -122.5621,46.956 -122.5668,46.9516 -122.5732,46.9453 -122.5778,46.9408 -122.5813,46.9374 -122.5852,46.9336 -122.5906,46.9283 -122.5954,46.9236 -122.6012,46.9187 -122.6062,46.9144 -122.612,46.9095 -122.6182,46.9042 -122.6241,46.8992 -122.6297,46.8944 -122.6355,46.8895 -122.6401,46.8855 -122.646,46.8805 -122.6518,46.8755 -122.6563,46.8717 -122.6613,46.8674 -122.6649,46.8644 -122.6706,46.8595 -122.6764,46.8545 -122.6818,46.8499 -122.6896,46.8432 -122.6936,46.8398 -122.6975,46.8365 -122.7024,46.8324 -122.7077,46.8279 -122.7145,46.8221 -122.7202,46.8172 -122.7273,46.8112 -122.733,46.8063 -122.7382,46.8019 -122.7446,46.7965 -122.7518,46.7903 -122.7588,46.7843 -122.7664,46.778 -122.7729,46.7735 -122.7794,46.7692 -122.7856,46.7649 -122.7936,46.7595 -122.7992,46.7557 -122.8072,46.7501 -122.8124,46.7464 -122.8182,46.7423 -122.8255,46.7371 -122.8317,46.7326 -122.8387,46.7276 -122.8426,46.7294 -122.8492,46.7315 -122.8566,46.7338 -122.8606,46.7382 -122.8651,46.7429 -122.8701,46.7482 -122.8745,46.753 -122.8753,46.7545</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 125.95km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-122.3691,47.2567 -122.3654,47.2573 -122.3582,47.2573 -122.3554,47.2615 -122.3554,47.2676 -122.3554,47.2739 -122.3554,47.2791 -122.3554,47.2854 -122.3554,47.2911 -122.3495,47.2943 -122.3426,47.2979 -122.3356,47.3017 -122.3283,47.3056 -122.3223,47.3088 -122.3167,47.3118 -122.3095,47.3119 -122.3043,47.312 -122.2939,47.316 -122.2868,47.3188 -122.2805,47.3213 -122.2735,47.324 -122.2654,47.3272 -122.2596,47.3295 -122.2515,47.3326 -122.2439,47.3356 -122.2375,47.3372 -122.2289,47.3372 -122.2233,47.3372 -122.2156,47.3372 -122.2082,47.3372 -122.1965,47.3373 -122.1905,47.3374 -122.1812,47.3372 -122.1711,47.3371 -122.1637,47.337 -122.1559,47.3394 -122.1476,47.342 -122.1411,47.3441 -122.1296,47.3477 -122.1232,47.3497 -122.1183,47.3492 -122.1115,47.346 -122.1027,47.3461 -122.0961,47.346 -122.088,47.346 -122.079,47.346 -122.0706,47.3459 -122.0627,47.3479 -122.0549,47.349 -122.0461,47.3481 -122.0396,47.3471 -122.0309,47.3456 -122.0211,47.344 -122.0118,47.3428 -122.001,47.3418 -121.9878,47.3407 -121.9776,47.3398 -121.9661,47.3388 -121.9571,47.338 -121.9433,47.3364 -121.9356,47.3353 -121.9338,47.3361</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 48.47km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-121.9338,47.3361 -121.934,47.3361 -121.939,47.3353 -121.9534,47.3372 -121.9626,47.338 -121.9714,47.3388 -121.9802,47.3396 -121.988,47.3403 -121.9955,47.3409 -122.0036,47.3416 -122.0129,47.3424 -122.0201,47.3433 -122.0281,47.3447 -122.0365,47.3461 -122.0441,47.3474 -122.0518,47.3443 -122.0589,47.3414 -122.0668,47.3382 -122.074,47.3353 -122.0812,47.3324 -122.0888,47.3293 -122.0959,47.3274 -122.1023,47.3256 -122.1086,47.3294 -122.1152,47.3335 -122.1203,47.3366 -122.1201,47.3423 -122.1228,47.3464</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 20.79km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-121.9338,47.3361 -121.9335,47.3358 -121.939,47.335 -121.9531,47.3368 -121.9621,47.3377 -121.9714,47.3385 -121.9802,47.3392 -121.9878,47.3399 -121.9955,47.3406 -122.0044,47.3413 -122.0135,47.3421 -122.02,47.343 -122.0276,47.3443 -122.0367,47.3458 -122.0438,47.347 -122.0509,47.3442 -122.0577,47.3414 -122.0651,47.3384 -122.073,47.3352 -122.0809,47.332 -122.0886,47.329 -122.0958,47.327 -122.1024,47.3252 -122.1084,47.3289 -122.1153,47.3331 -122.1208,47.3365 -122.1207,47.3417 -122.1235,47.346</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 20.99km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-121.873,47.4926 -121.8733,47.4923 -121.8733,47.4899 -121.8847,47.4897 -121.8915,47.4843 -121.8995,47.4779 -121.9051,47.4754 -121.9138,47.4723 -121.9236,47.4682 -121.9318,47.4646 -121.9411,47.461 -121.9473,47.4585 -121.9597,47.4536 -121.9639,47.452 -121.9753,47.4507 -121.9846,47.4513 -121.9919,47.4517 -122.003,47.4523 -122.0115,47.4528 -122.0178,47.4532 -122.0321,47.454 -122.0422,47.4547 -122.049,47.4547 -122.0565,47.4548 -122.0687,47.4547 -122.0826,47.4542 -122.0913,47.4542 -122.1004,47.4541 -122.1111,47.455 -122.1194,47.4561 -122.1283,47.4572 -122.1362,47.4583 -122.146,47.4587 -122.1544,47.4587 -122.1625,47.4618 -122.1692,47.4665 -122.1765,47.4706 -122.1848,47.4704 -122.1862,47.4697</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 32.99km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-121.8848,47.4896 -121.8871,47.4876 -121.8956,47.4808 -121.9007,47.4768 -121.9079,47.4744 -121.9197,47.4699 -121.9267,47.4665 -121.9357,47.463 -121.9437,47.4598 -121.9536,47.456 -121.9609,47.4531 -121.9681,47.4502 -121.9791,47.4509 -121.9866,47.4513 -121.997,47.4519 -122.0075,47.4525 -122.0157,47.453 -122.0221,47.4533 -122.0373,47.4542 -122.0445,47.4546 -122.0536,47.4547 -122.0614,47.4547 -122.0799,47.4542 -122.0867,47.4541 -122.0956,47.4541 -122.1047,47.454 -122.1172,47.4557 -122.1246,47.4567 -122.1317,47.4576 -122.1397,47.4587 -122.1507,47.4586 -122.1589,47.4604 -122.1658,47.463 -122.1726,47.4701 -122.1808,47.471 -122.1855,47.4698</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 31.58km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-121.9158,47.8041 -121.9159,47.8042 -121.9167,47.8033 -121.9204,47.799 -121.9264,47.7921 -121.9271,47.789 -121.927,47.7827 -121.927,47.7751 -121.9276,47.7697 -121.9282,47.7642 -121.9288,47.7586 -121.928,47.7523 -121.927,47.7438 -121.9268,47.7373 -121.9267,47.7326 -121.9239,47.7277 -121.9181,47.7228 -121.9122,47.7179 -121.907,47.7134 -121.9012,47.7085 -121.8949,47.7027 -121.8906,47.698 -121.8864,47.6936 -121.8817,47.6885 -121.8768,47.6832 -121.8721,47.6782 -121.8674,47.6731 -121.8582,47.6663 -121.8543,47.6606 -121.8543,47.6547 -121.8544,47.6494 -121.8544,47.6422 -121.8545,47.6359 -121.8546,47.6307 -121.8546,47.6251 -121.8547,47.6191 -121.853,47.6127 -121.8535,47.6067 -121.8539,47.6015 -121.8538,47.5952 -121.8537,47.5903 -121.8536,47.5852 -121.8519,47.5798 -121.8487,47.5739 -121.846,47.5689 -121.8465,47.5631 -121.85,47.5591 -121.8555,47.5522 -121.8614,47.5449 -121.8624,47.5406 -121.8638,47.5343 -121.8651,47.5287 -121.8651,47.5242 -121.8651,47.5182 -121.8651,47.5127 -121.8667,47.5049 -121.8709,47.4999 -121.8736,47.4948 -121.873,47.4926</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 36.02km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-121.9158,47.8041 -121.9159,47.8042 -121.9187,47.8044 -121.9264,47.805 -121.935,47.8057 -121.9429,47.8064 -121.9495,47.8048 -121.9605,47.8021 -121.97,47.802 -121.9841,47.8019 -121.9931,47.8019 -122.0048,47.8018 -122.0131,47.8018 -122.0194,47.8042 -122.0256,47.8066 -122.0296,47.8074 -122.0414,47.807 -122.0502,47.807 -122.0595,47.8071 -122.068,47.8072 -122.0767,47.8072 -122.0858,47.8073 -122.0932,47.8074 -122.1025,47.8075 -122.1124,47.8076 -122.1218,47.8077 -122.1306,47.8078 -122.1378,47.8078 -122.1462,47.8081 -122.1551,47.8087 -122.1646,47.8077 -122.1701,47.8077 -122.1742,47.8106 -122.1804,47.8121 -122.185,47.8129 -122.1867,47.813</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 27.39km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-121.8895,47.8972 -121.8892,47.8976 -121.8918,47.9028 -121.8926,47.904 -121.9021,47.9042 -121.9135,47.9045 -121.9214,47.9047 -121.9299,47.905 -121.9379,47.9053 -121.9447,47.9055 -121.9543,47.9058 -121.9625,47.909 -121.9691,47.9116 -121.977,47.9147 -121.9839,47.9174 -121.9915,47.9203 -121.9966,47.9223 -122.0048,47.9255 -122.0103,47.9277 -122.0139,47.9332 -122.0171,47.9382 -122.0207,47.9437 -122.0236,47.9481 -122.0273,47.9537 -122.0304,47.9585 -122.0339,47.964 -122.0371,47.9694 -122.0405,47.9754 -122.0439,47.9816 -122.0436,47.9872 -122.0433,47.9929 -122.043,47.9976 -122.0485,48.0049 -122.0482,48.0115 -122.0472,48.0168 -122.0455,48.0224 -122.0451,48.0287 -122.0445,48.0351 -122.0441,48.0401 -122.0449,48.0462 -122.0456,48.0509 -122.0466,48.057 -122.0475,48.0629 -122.0484,48.0689 -122.0494,48.0753 -122.0502,48.0816 -122.051,48.0875 -122.0518,48.0936 -122.0527,48.1 -122.0537,48.1078 -122.0546,48.1141 -122.0554,48.1201 -122.0563,48.1272 -122.0572,48.1334 -122.0573,48.1397 -122.0566,48.1459 -122.0561,48.1504 -122.0554,48.1565 -122.0565,48.1603 -122.0606,48.1645 -122.0635,48.1686 -122.0659,48.175 -122.066,48.181 -122.066,48.187 -122.0661,48.1932 -122.0689,48.198 -122.0738,48.2029 -122.0791,48.2082 -122.084,48.2132 -122.0887,48.2178 -122.094,48.2231 -122.1005,48.2281 -122.108,48.2339 -122.1106,48.2397 -122.1132,48.2453 -122.1159,48.2513 -122.1187,48.2574 -122.1216,48.2617 -122.1252,48.2671 -122.1264,48.2717 -122.1277,48.2773 -122.1291,48.2828 -122.1301,48.287 -122.1344,48.2927 -122.1386,48.2983 -122.1427,48.3037 -122.1469,48.3094 -122.1513,48.3152 -122.1567,48.3223 -122.1602,48.3269 -122.1644,48.3326 -122.168,48.3374 -122.1716,48.3407 -122.1782,48.3471 -122.184,48.3526 -122.1894,48.3578 -122.1895,48.3635 -122.1896,48.3697 -122.1896,48.3757 -122.1897,48.3814 -122.1898,48.3876 -122.1899,48.3919 -122.19,48.3981 -122.1901,48.4037 -122.1901,48.41 -122.1902,48.4152 -122.1903,48.4216 -122.1904,48.4271 -122.1905,48.4336 -122.1906,48.4385 -122.1907,48.4447 -122.1908,48.4512 -122.1857,48.4554 -122.1809,48.4594 -122.1754,48.464 -122.1723,48.4686 -122.1709,48.4745 -122.1699,48.4798 -122.1696,48.484 -122.169,48.4917 -122.1685,48.4978 -122.1681,48.5037 -122.1674,48.5095 -122.1666,48.5147 -122.1699,48.5206 -122.1727,48.5255 -122.1757,48.5309 -122.1791,48.5369 -122.1817,48.5413 -122.185,48.5472 -122.189,48.5517 -122.195,48.5554 -122.2012,48.5592 -122.207,48.5628 -122.2138,48.567 -122.2168,48.5717 -122.2166,48.578 -122.2166,48.5842 -122.2169,48.5895 -122.2171,48.595 -122.2174,48.6004 -122.215,48.6064 -122.2134,48.6106 -122.2112,48.6163 -122.209,48.622 -122.2066,48.6281 -122.2046,48.6333 -122.2075,48.6403 -122.2132,48.6462 -122.2175,48.6506 -122.2171,48.6562 -122.2168,48.6599 -122.2163,48.6667 -122.2188,48.6727 -122.225,48.6785 -122.2304,48.6837 -122.2351,48.6881 -122.2413,48.6939 -122.2468,48.6992 -122.2533,48.7018 -122.2625,48.7055 -122.2684,48.7108 -122.271,48.7173 -122.2731,48.7224 -122.2792,48.7233 -122.2833,48.7244 -122.2886,48.7262 -122.2958,48.7291 -122.3031,48.732 -122.3143,48.738 -122.3199,48.741 -122.3285,48.7457 -122.3356,48.7495 -122.3425,48.7532 -122.349,48.7567 -122.3557,48.7603 -122.3617,48.7635 -122.3711,48.7685 -122.3781,48.7723 -122.3847,48.7758 -122.3908,48.7791 -122.3982,48.783 -122.4045,48.7866 -122.4128,48.7912 -122.4204,48.7955 -122.4249,48.7976 -122.4306,48.7998 -122.4365,48.8031 -122.4423,48.8071 -122.4478,48.8108 -122.4544,48.8154 -122.4608,48.8197 -122.4681,48.8238 -122.4744,48.8267 -122.4814,48.8299 -122.4897,48.8337 -122.496,48.8386 -122.5018,48.8429 -122.5082,48.8475 -122.5138,48.8516 -122.5202,48.8562 -122.5265,48.8608 -122.5329,48.8654 -122.5392,48.87 -122.5458,48.8731 -122.5536,48.8767 -122.5646,48.8819 -122.5734,48.8866 -122.5801,48.891 -122.587,48.8955 -122.5937,48.8999 -122.6005,48.9044 -122.6071,48.9088 -122.6118,48.9118 -122.6192,48.9082 -122.6249,48.905</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 145.9km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-121.8895,47.8972 -121.8889,47.8976 -121.8912,47.9028 -121.8922,47.9045 -121.9013,47.9046 -121.9159,47.905 -121.9256,47.9053 -121.9333,47.9055 -121.9422,47.9058 -121.9481,47.906 -121.9583,47.9078 -121.9665,47.911 -121.972,47.9132 -121.9797,47.9162 -121.9865,47.9188 -121.9958,47.9225 -122.0039,47.9257 -122.0096,47.9279 -122.0135,47.9336 -122.0165,47.9383 -122.0197,47.9431 -122.0232,47.9486 -122.0268,47.9541 -122.0298,47.9586 -122.0334,47.9641 -122.0365,47.9696 -122.0399,47.9754 -122.0434,47.9818 -122.0431,47.9872 -122.0427,47.9935 -122.0425,47.9978 -122.0479,48.005 -122.0476,48.0116 -122.0465,48.017 -122.045,48.0224 -122.0444,48.0287 -122.0439,48.0351 -122.0435,48.0409 -122.0445,48.0477 -122.0455,48.054 -122.0465,48.0603 -122.0474,48.0663 -122.0484,48.0725 -122.0493,48.0789 -122.0503,48.0865 -122.0511,48.0926 -122.0519,48.099 -122.0528,48.1054 -122.0536,48.1117 -122.0545,48.118 -122.0551,48.1228 -122.0562,48.1305 -122.057,48.1369 -122.0563,48.1429 -122.0558,48.1475 -122.055,48.1546 -122.0544,48.159 -122.0577,48.1623 -122.0618,48.1671 -122.0652,48.172 -122.0653,48.1777 -122.0654,48.1839 -122.0655,48.1895 -122.0656,48.194 -122.0709,48.1993 -122.0753,48.2037 -122.08,48.2084 -122.085,48.2133 -122.0892,48.2176 -122.0945,48.2228 -122.101,48.2279 -122.1056,48.2314 -122.11,48.2369 -122.1125,48.2425 -122.1152,48.2484 -122.1175,48.2534 -122.1211,48.26 -122.1247,48.2653 -122.1265,48.2695 -122.1275,48.274 -122.1294,48.2815 -122.1307,48.2869 -122.135,48.2925 -122.1391,48.298 -122.1434,48.3037 -122.1464,48.3078 -122.1514,48.3144 -122.1574,48.3224 -122.1606,48.3266 -122.1643,48.3315 -122.1686,48.3372 -122.1731,48.3415 -122.1783,48.3465 -122.183,48.3509 -122.1874,48.3551 -122.1901,48.3611 -122.1901,48.3675 -122.1902,48.3726 -122.1903,48.3771 -122.1904,48.3832 -122.1904,48.3883 -122.1905,48.3927 -122.1906,48.399 -122.1907,48.4037 -122.1908,48.41 -122.1908,48.4149 -122.1909,48.4207 -122.191,48.4263 -122.1911,48.4317 -122.1912,48.438 -122.1913,48.4433 -122.1913,48.4496 -122.1914,48.4551 -122.1915,48.4598 -122.1916,48.4659 -122.1917,48.4717 -122.1924,48.4753 -122.1956,48.48 -122.1976,48.4855 -122.2003,48.4955 -122.2007,48.5007 -122.201,48.507 -122.2038,48.5116 -122.21,48.5167 -122.2183,48.5236 -122.2184,48.5318 -122.2183,48.5379 -122.2183,48.5442 -122.2183,48.5505 -122.2183,48.5568 -122.2184,48.5632 -122.2184,48.5694 -122.2184,48.5748 -122.2184,48.5806 -122.2184,48.5868 -122.2184,48.5931 -122.2184,48.5977 -122.2184,48.604 -122.2184,48.6101 -122.2207,48.6163 -122.2207,48.6254 -122.2186,48.6304 -122.2178,48.6353 -122.2182,48.6402 -122.2185,48.6448 -122.2185,48.6498 -122.2181,48.6561 -122.2178,48.6604 -122.2172,48.6685 -122.222,48.6745 -122.2266,48.6789 -122.2316,48.6835 -122.2371,48.6887 -122.2423,48.6937 -122.2475,48.6986 -122.2539,48.7012 -122.2619,48.7044 -122.2691,48.7103 -122.2706,48.7141 -122.2727,48.7195 -122.2745,48.7215 -122.2833,48.724 -122.2885,48.7257 -122.2957,48.7286 -122.3035,48.7317 -122.3108,48.7356 -122.318,48.7395 -122.3247,48.7431 -122.3317,48.7468 -122.3391,48.7509 -122.3465,48.7548 -122.3521,48.7578 -122.3588,48.7614 -122.3688,48.7668 -122.3737,48.7694 -122.3811,48.7734 -122.388,48.7771 -122.3953,48.781 -122.4031,48.7853 -122.4082,48.7881 -122.416,48.7925 -122.4216,48.7956 -122.4278,48.7997 -122.4327,48.8019 -122.4394,48.806 -122.4439,48.8091 -122.4502,48.8135 -122.4569,48.818 -122.4633,48.8224 -122.4704,48.8257 -122.4775,48.829 -122.4853,48.8325 -122.4912,48.8362 -122.4968,48.8402 -122.5034,48.845 -122.5098,48.8497 -122.5164,48.8544 -122.5227,48.859 -122.5288,48.8635 -122.5353,48.8682 -122.5416,48.872 -122.5487,48.8753 -122.5585,48.8798 -122.5692,48.8848 -122.5761,48.8893 -122.5829,48.8938 -122.5896,48.8982 -122.5962,48.9025 -122.6028,48.9069 -122.6097,48.9114 -122.6144,48.9096 -122.6222,48.9057 -122.6254,48.9043</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 143.0km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-119.6516,47.9862 -119.6524,47.9871 -119.6573,47.9864 -119.6578,47.9804 -119.6583,47.9745 -119.6571,47.972 -119.6607,47.9672 -119.6643,47.9624 -119.6682,47.9572 -119.6722,47.9518 -119.6751,47.9479 -119.6793,47.9422 -119.6835,47.9366 -119.687,47.9318 -119.6934,47.9276 -119.699,47.9239 -119.7057,47.9195 -119.7135,47.9143 -119.7195,47.9103 -119.726,47.906 -119.7318,47.9021 -119.7377,47.8982 -119.7432,47.8945 -119.7515,47.889 -119.7573,47.8852 -119.7626,47.8816 -119.7683,47.8779 -119.7735,47.8744 -119.7794,47.8705 -119.7836,47.8677 -119.7913,47.8626 -119.7972,47.8586 -119.8029,47.8548 -119.8092,47.8506 -119.8158,47.8463 -119.8221,47.842 -119.8287,47.8376 -119.8356,47.833 -119.8428,47.8282 -119.8483,47.8246 -119.8542,47.8206 -119.8595,47.8171 -119.8654,47.8132 -119.8714,47.8091 -119.8773,47.8052 -119.883,47.8014 -119.8887,47.7976 -119.8946,47.7937 -119.9009,47.7895 -119.9078,47.7848 -119.9121,47.7819 -119.9182,47.7779 -119.9242,47.7739 -119.9296,47.7702 -119.9354,47.7664 -119.9405,47.7629 -119.9459,47.7594 -119.9518,47.7554 -119.9581,47.7531 -119.9673,47.7514 -119.9748,47.7501 -119.9825,47.7487 -119.9895,47.7475 -119.997,47.7461 -120.006,47.7445 -120.0143,47.7431 -120.0229,47.7415 -120.0331,47.7397 -120.0395,47.7385 -120.0461,47.7374 -120.0549,47.7358 -120.061,47.7347 -120.0679,47.7335 -120.0754,47.7321 -120.0812,47.7311 -120.089,47.7297 -120.0971,47.7282 -120.1055,47.7267 -120.114,47.7252 -120.1199,47.7242 -120.1312,47.7224 -120.1375,47.7214 -120.1432,47.7204 -120.1523,47.719 -120.1614,47.7175 -120.1677,47.7165 -120.176,47.7152 -120.1851,47.7137 -120.1926,47.7124 -120.2006,47.7116 -120.2097,47.712 -120.2194,47.7085 -120.2287,47.7096 -120.2372,47.7106 -120.2462,47.7117 -120.2536,47.7126 -120.2586,47.7134 -120.2659,47.7145 -120.2719,47.7154 -120.2779,47.7164 -120.2874,47.7179 -120.3019,47.7201 -120.3135,47.7219 -120.3182,47.7216 -120.3251,47.7188 -120.3416,47.7122 -120.3477,47.7097 -120.356,47.7076 -120.3654,47.7052 -120.3731,47.7032 -120.383,47.7007 -120.387,47.6997 -120.4002,47.6963 -120.4051,47.6957 -120.4173,47.6962 -120.4253,47.6966 -120.4401,47.6977 -120.4484,47.6983 -120.4577,47.699 -120.4663,47.6997 -120.4801,47.7007 -120.4873,47.7012 -120.4952,47.7018 -120.506,47.7031 -120.5119,47.704 -120.521,47.7055 -120.5251,47.7061 -120.5336,47.7074 -120.5412,47.7086 -120.5475,47.7096 -120.5554,47.7108 -120.5641,47.7122 -120.572,47.7135 -120.5829,47.7152 -120.5922,47.7166 -120.5985,47.7179 -120.6044,47.7201 -120.6166,47.7248 -120.6212,47.7265 -120.6309,47.7302 -120.641,47.734 -120.6462,47.736 -120.6537,47.7388 -120.6602,47.7413 -120.6658,47.7434 -120.6731,47.7462 -120.6787,47.7483 -120.683,47.7499 -120.6905,47.7527 -120.6977,47.7555 -120.7023,47.7572 -120.7093,47.7598 -120.7158,47.7623 -120.7273,47.7635 -120.7362,47.7645 -120.7477,47.766 -120.7561,47.767 -120.7655,47.7682 -120.7737,47.7693 -120.7837,47.7705 -120.7922,47.7716 -120.7994,47.7726 -120.808,47.7737 -120.8213,47.7733 -120.8287,47.7732 -120.8352,47.7762 -120.8416,47.7792 -120.8482,47.7819 -120.8535,47.7837 -120.8606,47.7856 -120.8647,47.7858 -120.8734,47.7859 -120.8825,47.7856 -120.8926,47.7842 -120.8988,47.7839 -120.9076,47.7834 -120.9146,47.782 -120.924,47.7816 -120.9303,47.7813 -120.9406,47.7796 -120.9523,47.7777 -120.9603,47.7748 -120.9688,47.7718 -120.9744,47.7697 -120.9817,47.7689 -120.9885,47.7709 -120.9956,47.7722 -121.0051,47.7702 -121.0101,47.7687 -121.0186,47.7669 -121.024,47.7665 -121.0293,47.7646 -121.0336,47.7622 -121.0364,47.7594 -121.0397,47.7547 -121.0417,47.7493 -121.0433,47.7445 -121.047,47.7401 -121.0531,47.7354 -121.0624,47.737 -121.0666,47.7298 -121.0744,47.729 -121.0796,47.7285 -121.0856,47.7266 -121.0929,47.7242 -121.1,47.7238 -121.1114,47.7188 -121.114,47.7161 -121.1205,47.7142 -121.125,47.7131 -121.1305,47.7123 -121.1378,47.7112 -121.1436,47.7097 -121.1517,47.708 -121.1622,47.7076 -121.1698,47.7103 -121.1744,47.7119 -121.1809,47.7129 -121.1866,47.7129 -121.1917,47.712 -121.2021,47.712 -121.2123,47.7125 -121.2198,47.7131 -121.2279,47.713 -121.236,47.7129 -121.2478,47.7129 -121.2575,47.7128 -121.2663,47.7128 -121.2777,47.7127 -121.2873,47.7151 -121.2909,47.7155 -121.2994,47.7162 -121.309,47.717 -121.3179,47.7177 -121.3265,47.7184 -121.3365,47.7192 -121.3488,47.7202 -121.353,47.7196 -121.3613,47.7175 -121.3689,47.7157 -121.3723,47.7158 -121.3791,47.7196 -121.3896,47.7249 -121.3962,47.7284 -121.4031,47.7318 -121.4088,47.7348 -121.416,47.7384 -121.4242,47.7404 -121.4337,47.7427 -121.439,47.7453 -121.4482,47.7498 -121.4535,47.7532 -121.4597,47.7581 -121.4665,47.7635 -121.474,47.7693 -121.4783,47.7727 -121.4844,47.7775 -121.4931,47.7823 -121.4982,47.7835 -121.5065,47.785 -121.5177,47.7876 -121.5261,47.79 -121.5338,47.792 -121.5462,47.7948 -121.5527,47.7976 -121.562,47.8004 -121.5722,47.8093 -121.5762,47.8132 -121.5799,47.8165 -121.585,47.8211 -121.5924,47.8278 -121.5972,47.832 -121.602,47.8364 -121.607,47.8399 -121.6134,47.8424 -121.621,47.8453 -121.6266,47.8475 -121.6333,47.8501 -121.6405,47.8529 -121.6476,47.8556 -121.6547,47.8584 -121.6612,47.8609 -121.6674,47.8633 -121.6769,47.8669 -121.6847,47.8699 -121.6895,47.8718 -121.6958,47.8731 -121.7058,47.8742 -121.7143,47.8752 -121.7274,47.8766 -121.739,47.8778 -121.746,47.8786 -121.7547,47.8795 -121.7651,47.8807 -121.7732,47.8816 -121.7814,47.8825 -121.7906,47.8834 -121.7987,47.8843 -121.8076,47.8853 -121.8146,47.8861 -121.8224,47.8868 -121.8368,47.8915 -121.8456,47.8943 -121.8536,47.8968 -121.8611,47.8992 -121.8696,47.9019 -121.8753,47.9025 -121.8882,47.9026 -121.8886,47.8976</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 243.16km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-120.5102,47.1214 -120.5121,47.1216 -120.5195,47.1214 -120.5287,47.1214 -120.5379,47.121 -120.5469,47.121 -120.5561,47.121 -120.565,47.121 -120.5743,47.121 -120.5835,47.121 -120.5917,47.121 -120.6009,47.1209 -120.6099,47.1209 -120.6192,47.1209 -120.628,47.1209 -120.6352,47.1218 -120.6441,47.1236 -120.6529,47.1254 -120.6617,47.1273 -120.6704,47.1291 -120.6811,47.1313 -120.6917,47.1335 -120.7006,47.1353 -120.7094,47.1372 -120.7182,47.139 -120.7271,47.1408 -120.7434,47.1442 -120.7509,47.1458 -120.7574,47.1471 -120.7662,47.1489 -120.7736,47.1505 -120.782,47.1522 -120.7926,47.1544 -120.8018,47.1547 -120.8164,47.1552 -120.8274,47.1556 -120.8377,47.156 -120.8468,47.1563 -120.856,47.1566 -120.8653,47.1569 -120.8755,47.1573 -120.8845,47.1576 -120.8936,47.1579 -120.902,47.1582 -120.9112,47.1585 -120.9215,47.1589 -120.9318,47.1591 -120.941,47.1599 -120.9502,47.1606 -120.9571,47.1611 -120.9641,47.1612 -120.9722,47.1614 -120.9796,47.1615 -120.9889,47.1616 -120.9972,47.1618 -121.0065,47.162 -121.0157,47.1622 -121.0239,47.1623 -121.0332,47.1625 -121.0401,47.1627 -121.049,47.1628 -121.0583,47.163 -121.0673,47.1632 -121.0765,47.1634 -121.083,47.1678 -121.0915,47.1735 -121.0978,47.1778 -121.104,47.1819 -121.1106,47.1864 -121.117,47.1907 -121.1242,47.1956 -121.1319,47.2008 -121.1399,47.2061 -121.1475,47.2105 -121.1522,47.214 -121.1584,47.2185 -121.1645,47.2225 -121.1739,47.2281 -121.181,47.2325 -121.1859,47.2354 -121.1905,47.2372 -121.1977,47.2394 -121.2078,47.2424 -121.2162,47.2449 -121.2242,47.2496 -121.2322,47.2528 -121.2395,47.2558 -121.2506,47.2602 -121.2582,47.2637 -121.2671,47.2683 -121.2786,47.2736 -121.286,47.2766 -121.2951,47.2804 -121.3048,47.2843 -121.3121,47.2844 -121.3204,47.285 -121.3282,47.2854 -121.3383,47.284 -121.3453,47.2799 -121.3546,47.2743 -121.3634,47.2692 -121.3702,47.2655 -121.3787,47.2609 -121.3841,47.2581 -121.3918,47.2543 -121.3995,47.2501 -121.4078,47.2478 -121.4153,47.2438 -121.4226,47.2389 -121.429,47.2346 -121.4397,47.2274 -121.4459,47.2233 -121.4542,47.2209 -121.4628,47.2185 -121.4779,47.2143 -121.4872,47.2124 -121.4991,47.2107 -121.5053,47.2098 -121.5147,47.2095 -121.5239,47.2092 -121.5328,47.2089 -121.5425,47.2087 -121.5555,47.2087 -121.5613,47.2095 -121.5686,47.2146 -121.5792,47.2202 -121.5885,47.2241 -121.6007,47.2281 -121.6117,47.2302 -121.6211,47.2319 -121.6308,47.2343 -121.6456,47.2393 -121.6554,47.2425 -121.6642,47.2455 -121.6685,47.2469 -121.6783,47.2502 -121.6898,47.2541 -121.6958,47.256 -121.7041,47.2588 -121.717,47.2631 -121.7281,47.2669 -121.7361,47.2695 -121.7435,47.272 -121.7517,47.2747 -121.7563,47.2777 -121.7609,47.283 -121.7673,47.2911 -121.7719,47.2968 -121.7759,47.3017 -121.7802,47.307 -121.7846,47.3125 -121.7903,47.3175 -121.796,47.3224 -121.8017,47.3274 -121.8074,47.3324 -121.8131,47.3374 -121.8188,47.3424 -121.8244,47.3474 -121.8296,47.3519 -121.8341,47.3558 -121.8393,47.3585 -121.8511,47.3625 -121.8583,47.3634 -121.8668,47.3634 -121.8765,47.3635 -121.8841,47.3636 -121.8894,47.3637</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 148.04km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-120.5102,47.1214 -120.5121,47.1211 -120.5195,47.1213 -120.5287,47.1213 -120.5379,47.1209 -120.5469,47.1209 -120.5561,47.1209 -120.565,47.1209 -120.5743,47.1209 -120.5835,47.1209 -120.5917,47.1209 -120.6009,47.1209 -120.6099,47.1209 -120.6192,47.1208 -120.628,47.1208 -120.6352,47.1217 -120.6441,47.1235 -120.6529,47.1254 -120.6617,47.1272 -120.6704,47.129 -120.6811,47.1312 -120.6917,47.1334 -120.7006,47.1353 -120.7094,47.1371 -120.7182,47.1389 -120.7271,47.1408 -120.7434,47.1441 -120.7509,47.1457 -120.7574,47.1471 -120.7662,47.1489 -120.7736,47.1504 -120.782,47.1521 -120.7926,47.1543 -120.8018,47.1546 -120.8164,47.1552 -120.8274,47.1555 -120.8377,47.1559 -120.8468,47.1562 -120.856,47.1565 -120.8653,47.1569 -120.8755,47.1572 -120.8845,47.1575 -120.8936,47.1578 -120.902,47.1581 -120.9112,47.1584 -120.9215,47.1588 -120.9318,47.1591 -120.941,47.1598 -120.9502,47.1605 -120.9571,47.161 -120.9641,47.1612 -120.9722,47.1613 -120.9796,47.1614 -120.9889,47.1616 -120.9972,47.1617 -121.0065,47.1619 -121.0157,47.1621 -121.0239,47.1623 -121.0332,47.1624 -121.0401,47.1626 -121.049,47.1628 -121.0583,47.1629 -121.0673,47.1631 -121.0765,47.1633 -121.083,47.1677 -121.0915,47.1735 -121.0978,47.1777 -121.104,47.1819 -121.1106,47.1863 -121.117,47.1906 -121.1242,47.1955 -121.132,47.2007 -121.1399,47.206 -121.1475,47.2104 -121.1522,47.2139 -121.1584,47.2185 -121.1645,47.2224 -121.1708,47.2262 -121.1773,47.2301 -121.1831,47.2337 -121.1879,47.2361 -121.1931,47.238 -121.2002,47.2401 -121.2078,47.2423 -121.2162,47.2449 -121.2242,47.2496 -121.2322,47.2528 -121.2395,47.2557 -121.2506,47.2601 -121.2582,47.2636 -121.2671,47.2682 -121.2786,47.2736 -121.286,47.2766 -121.2951,47.2803 -121.3048,47.2843 -121.3121,47.2843 -121.3204,47.2849 -121.3282,47.2853 -121.3383,47.284 -121.3453,47.2798 -121.3546,47.2743 -121.3634,47.2691 -121.3702,47.2654 -121.3787,47.2608 -121.3841,47.258 -121.3918,47.2542 -121.3995,47.25 -121.4078,47.2477 -121.4153,47.2437 -121.4226,47.2389 -121.429,47.2345 -121.4397,47.2273 -121.4459,47.2232 -121.4542,47.2209 -121.4628,47.2185 -121.4729,47.2157 -121.4827,47.213 -121.4903,47.2119 -121.4991,47.2107 -121.5053,47.2098 -121.5147,47.2094 -121.5239,47.2091 -121.5328,47.2088 -121.5425,47.2086 -121.5555,47.2087 -121.5613,47.2094 -121.5686,47.2145 -121.5792,47.2201 -121.5885,47.2241 -121.6007,47.2281 -121.6117,47.2301 -121.6211,47.2319 -121.6308,47.2342 -121.641,47.2376 -121.6484,47.2401 -121.6595,47.2438 -121.6667,47.2462 -121.6756,47.2492 -121.6841,47.2521 -121.6924,47.2549 -121.6992,47.2571 -121.714,47.2621 -121.7193,47.2638 -121.7322,47.2681 -121.7401,47.2708 -121.7476,47.2733 -121.7547,47.2757 -121.7582,47.28 -121.7657,47.2875 -121.769,47.2933 -121.7736,47.2989 -121.7781,47.3043 -121.7825,47.3098 -121.7875,47.3149 -121.7932,47.3199 -121.7989,47.3249 -121.8046,47.3299 -121.8102,47.3349 -121.8159,47.3398 -121.821,47.3443 -121.8267,47.3492 -121.8324,47.3542 -121.8358,47.3572 -121.8434,47.3598 -121.8511,47.3624 -121.8583,47.3633 -121.8668,47.3634 -121.8765,47.3634 -121.8841,47.3635 -121.8909,47.3623 -121.9,47.3595 -121.9076,47.3572 -121.9161,47.3546 -121.9224,47.3504 -121.9271,47.3437 -121.9316,47.3375 -121.9338,47.3361</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 153.54km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-120.5102,47.1214 -120.5105,47.1201 -120.5159,47.12 -120.5246,47.12 -120.5343,47.12 -120.5435,47.12 -120.5478,47.12 -120.5566,47.12 -120.5632,47.12 -120.5725,47.12 -120.5809,47.1199 -120.5897,47.1199 -120.5988,47.1199 -120.6081,47.1199 -120.6173,47.1199 -120.6266,47.1199 -120.6357,47.1208 -120.6445,47.1226 -120.6547,47.1247 -120.6618,47.1261 -120.6703,47.1279 -120.6801,47.13 -120.6916,47.1323 -120.6998,47.1341 -120.7087,47.1359 -120.7175,47.1377 -120.7244,47.1391 -120.7332,47.1409 -120.7508,47.1446 -120.7574,47.146 -120.7663,47.1479 -120.7748,47.1496 -120.7834,47.1514 -120.7919,47.1527 -120.8019,47.1532 -120.8138,47.1535 -120.8238,47.1542 -120.835,47.1549 -120.8434,47.1551 -120.8527,47.1555 -120.8621,47.1558 -120.8703,47.1561 -120.8783,47.1564 -120.8859,47.1566 -120.895,47.1569 -120.9034,47.1572 -120.9104,47.1575 -120.9164,47.1576 -120.9231,47.1577 -120.9311,47.158 -120.9404,47.1588 -120.9503,47.1596 -120.9572,47.1601 -120.9649,47.1602 -120.9723,47.1603 -120.9799,47.1605 -120.9892,47.1606 -120.997,47.1608 -121.006,47.1609 -121.0146,47.1611 -121.0239,47.1613 -121.031,47.1614 -121.0385,47.1616 -121.0478,47.1618 -121.0571,47.162 -121.0661,47.1621 -121.0753,47.1623 -121.0814,47.1653 -121.0866,47.1687 -121.0923,47.1726 -121.1003,47.178 -121.108,47.1832 -121.1149,47.1878 -121.1211,47.192 -121.1275,47.1963 -121.1352,47.2015 -121.1423,47.2063 -121.1484,47.2096 -121.1552,47.2135 -121.1616,47.2171 -121.17,47.2213 -121.1765,47.2245 -121.1846,47.228 -121.1918,47.2309 -121.1991,47.2337 -121.2038,47.2356 -121.2152,47.2399 -121.2243,47.2479 -121.2317,47.2514 -121.2404,47.2549 -121.2485,47.2582 -121.2564,47.2613 -121.2652,47.266 -121.2745,47.2707 -121.2833,47.2728 -121.2936,47.2752 -121.3007,47.2766 -121.307,47.2769 -121.3099,47.2793 -121.3128,47.2839 -121.3207,47.2858 -121.3284,47.2861 -121.3355,47.2851 -121.3427,47.2823 -121.3499,47.2781 -121.3613,47.2723 -121.3717,47.2674 -121.3784,47.2639 -121.3868,47.2596 -121.3948,47.2554 -121.3988,47.2534 -121.4069,47.2491 -121.4152,47.2449 -121.4216,47.2405 -121.4272,47.2368 -121.4334,47.2326 -121.4436,47.2257 -121.4486,47.2235 -121.4534,47.2219 -121.463,47.2192 -121.4718,47.2168 -121.4791,47.2147 -121.4872,47.2131 -121.4925,47.2123 -121.5047,47.2105 -121.5144,47.2102 -121.524,47.2099 -121.533,47.2095 -121.5431,47.2096 -121.5568,47.2098 -121.5649,47.2135 -121.5705,47.2169 -121.5786,47.2206 -121.585,47.2234 -121.5946,47.2274 -121.6014,47.229 -121.6122,47.231 -121.6232,47.233 -121.6304,47.2349 -121.6399,47.2381 -121.6477,47.2407 -121.6584,47.2443 -121.667,47.2471 -121.6701,47.2463 -121.6777,47.2489 -121.6873,47.2521 -121.6957,47.2549 -121.7056,47.2582 -121.7188,47.2626 -121.7306,47.2665 -121.7369,47.2686 -121.7454,47.2715 -121.7529,47.274 -121.757,47.2762 -121.7616,47.2811 -121.7681,47.2885 -121.7719,47.2938 -121.776,47.2994 -121.7801,47.3048 -121.7835,47.309 -121.7875,47.3133 -121.793,47.3182 -121.7981,47.3226 -121.8033,47.3271 -121.8088,47.332 -121.8142,47.3367 -121.8198,47.3416 -121.8254,47.3465 -121.8311,47.3515 -121.8368,47.3565 -121.844,47.3589 -121.8518,47.3614 -121.8587,47.3623 -121.868,47.3623 -121.879,47.3624 -121.8871,47.3625 -121.8948,47.3614 -121.9025,47.3591 -121.91,47.3568 -121.9174,47.3545 -121.9228,47.3506 -121.9276,47.344 -121.932,47.3377 -121.9338,47.3361</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 153.88km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-120.5102,47.1214 -120.5105,47.1204 -120.5138,47.1203 -120.5232,47.1203 -120.5342,47.1203 -120.5435,47.1203 -120.5478,47.1203 -120.5564,47.1203 -120.5632,47.1203 -120.5726,47.1203 -120.5809,47.1203 -120.5895,47.1203 -120.5988,47.1203 -120.6081,47.1202 -120.6173,47.1202 -120.6266,47.1202 -120.6355,47.1211 -120.6443,47.1229 -120.6532,47.1248 -120.6616,47.1265 -120.6774,47.1298 -120.683,47.131 -120.6955,47.1336 -120.703,47.1351 -120.7119,47.137 -120.7208,47.1388 -120.7284,47.1404 -120.7452,47.1438 -120.7542,47.1457 -120.7618,47.1473 -120.7706,47.1491 -120.7779,47.1506 -120.7859,47.1522 -120.794,47.1535 -120.8102,47.1538 -120.8185,47.1542 -120.8293,47.155 -120.8386,47.1553 -120.8478,47.1556 -120.8566,47.1559 -120.866,47.1563 -120.8753,47.1566 -120.8813,47.1568 -120.8903,47.1571 -120.8997,47.1574 -120.9066,47.1577 -120.9126,47.1579 -120.9217,47.158 -120.9271,47.1581 -120.9358,47.1588 -120.945,47.1595 -120.9526,47.1601 -120.9612,47.1605 -120.9689,47.1606 -120.9752,47.1607 -120.9843,47.1609 -120.9937,47.161 -121.0012,47.1612 -121.0103,47.1614 -121.0187,47.1615 -121.0273,47.1617 -121.0364,47.1619 -121.0454,47.1621 -121.0538,47.1622 -121.0632,47.1624 -121.0725,47.1626 -121.0811,47.1655 -121.0862,47.169 -121.092,47.1729 -121.0986,47.1774 -121.1062,47.1825 -121.1119,47.1863 -121.1186,47.1908 -121.1252,47.1953 -121.1311,47.1992 -121.1354,47.2021 -121.1417,47.2064 -121.148,47.2099 -121.1542,47.2134 -121.1613,47.2174 -121.1689,47.2211 -121.1743,47.2238 -121.18,47.2267 -121.188,47.2298 -121.193,47.2317 -121.2006,47.2347 -121.2087,47.2379 -121.2174,47.2412 -121.2269,47.2499 -121.2331,47.2524 -121.243,47.2564 -121.2528,47.2603 -121.2608,47.2641 -121.2672,47.2675 -121.2757,47.2714 -121.2882,47.2744 -121.2988,47.2769 -121.307,47.2772 -121.3095,47.2796 -121.3122,47.2839 -121.3211,47.2863 -121.329,47.2864 -121.3354,47.2855 -121.3435,47.2824 -121.3505,47.2782 -121.361,47.2729 -121.3721,47.2677 -121.3792,47.264 -121.3877,47.2596 -121.3955,47.2556 -121.3998,47.2534 -121.4058,47.2502 -121.4155,47.2451 -121.4219,47.2408 -121.4278,47.2369 -121.4334,47.2331 -121.4437,47.2261 -121.4488,47.2238 -121.4537,47.2222 -121.4624,47.2198 -121.4722,47.217 -121.4793,47.215 -121.4873,47.2134 -121.4926,47.2126 -121.5048,47.2109 -121.512,47.2106 -121.5204,47.2103 -121.5266,47.2101 -121.5371,47.2097 -121.5462,47.21 -121.5588,47.2102 -121.5661,47.2147 -121.5715,47.218 -121.5824,47.2227 -121.5902,47.226 -121.5988,47.2288 -121.6068,47.2304 -121.6165,47.2321 -121.6263,47.2339 -121.631,47.2355 -121.6397,47.2384 -121.6475,47.241 -121.6584,47.2447 -121.6673,47.2477 -121.6702,47.2467 -121.6779,47.2493 -121.6849,47.2516 -121.6955,47.2552 -121.7047,47.2583 -121.7179,47.2627 -121.7292,47.2664 -121.7362,47.2688 -121.7446,47.2716 -121.7526,47.2743 -121.7571,47.2772 -121.7613,47.2819 -121.7679,47.2889 -121.7718,47.2943 -121.7757,47.2997 -121.7796,47.3049 -121.7834,47.3096 -121.7871,47.3135 -121.7927,47.3184 -121.7975,47.3226 -121.8032,47.3277 -121.8087,47.3325 -121.814,47.3371 -121.8193,47.3418 -121.825,47.3467 -121.8306,47.3516 -121.8365,47.3568 -121.8444,47.3594 -121.8516,47.3618 -121.8587,47.3626 -121.868,47.3626 -121.8788,47.3628 -121.8869,47.3629 -121.8952,47.3617 -121.9026,47.3595 -121.9094,47.3574 -121.9176,47.3549 -121.9233,47.3507 -121.9281,47.344 -121.9325,47.3379 -121.9338,47.3361</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 153.9km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-120.5102,47.1214 -120.5096,47.1204 -120.5042,47.1204 -120.4951,47.1204 -120.4859,47.1204 -120.4769,47.1204 -120.4672,47.1204 -120.4604,47.1174 -120.4524,47.1139 -120.445,47.1107 -120.4374,47.1074 -120.4303,47.1042 -120.4226,47.1009 -120.4155,47.0977 -120.4084,47.0946 -120.4015,47.0916 -120.3937,47.0882 -120.3861,47.0849 -120.3788,47.0816 -120.3707,47.0781 -120.3651,47.0756 -120.3595,47.0709 -120.3554,47.0674 -120.3484,47.0614 -120.3426,47.0565 -120.3374,47.0521 -120.3318,47.0473 -120.3265,47.0428 -120.321,47.0381 -120.3154,47.0334 -120.3117,47.0302 -120.3037,47.0234 -120.3017,47.0217 -120.2944,47.0155 -120.289,47.011 -120.2847,47.0064 -120.2799,47.0014 -120.2753,46.9966 -120.2722,46.9934 -120.2673,46.9882 -120.2625,46.9832 -120.2588,46.9793 -120.2544,46.9747 -120.2494,46.9695 -120.2452,46.9651 -120.242,46.9618 -120.2371,46.9566 -120.2305,46.9525 -120.2252,46.9492 -120.2199,46.9458 -120.2131,46.9416 -120.2066,46.9375 -120.1999,46.9333 -120.1935,46.9293 -120.1875,46.9255 -120.1819,46.922 -120.1753,46.9179 -120.1711,46.9153 -120.1646,46.9111 -120.1608,46.9088 -120.1542,46.9046 -120.1483,46.9009 -120.1395,46.8954 -120.1341,46.8917 -120.1288,46.888 -120.1233,46.8842 -120.1175,46.8801 -120.1111,46.8756 -120.1049,46.8713 -120.096,46.865 -120.0883,46.8596 -120.0793,46.8593 -120.0726,46.8591 -120.0649,46.8589 -120.0557,46.8587 -120.0478,46.8584 -120.0394,46.8582 -120.0314,46.858 -120.024,46.8578 -120.0153,46.8575 -120.0064,46.8572 -119.998,46.857 -119.9903,46.8568 -119.9822,46.8565 -119.9708,46.8606 -119.9545,46.8665 -119.9445,46.8701 -119.9393,46.8676 -119.9364,46.8611 -119.9335,46.8548 -119.9305,46.8483 -119.9273,46.8412 -119.9249,46.8361 -119.9218,46.8293 -119.919,46.8232 -119.9154,46.8153 -119.9102,46.8068 -119.9062,46.8015 -119.9025,46.7967 -119.898,46.7908 -119.891,46.7816 -119.8868,46.7761 -119.8829,46.771 -119.8788,46.7656 -119.8737,46.7595 -119.8691,46.7532 -119.8647,46.7473 -119.8602,46.7412 -119.8558,46.7352 -119.8517,46.7295 -119.8471,46.7232 -119.8431,46.7178 -119.839,46.7121 -119.8346,46.7061 -119.8304,46.7004 -119.826,46.6942 -119.8215,46.6882 -119.8174,46.6825 -119.813,46.6764 -119.8089,46.6708 -119.8045,46.6647 -119.8001,46.6588 -119.7959,46.653 -119.7904,46.6455 -119.7885,46.6393 -119.7884,46.629 -119.7883,46.6168 -119.7883,46.6102 -119.7897,46.6049 -119.7934,46.5986 -119.7962,46.5938 -119.7997,46.5878 -119.8032,46.5818 -119.8063,46.5765 -119.8092,46.5715 -119.8125,46.5658 -119.8161,46.5597 -119.8187,46.5553 -119.8219,46.5498 -119.8246,46.5452 -119.8261,46.5396 -119.8274,46.5342 -119.8288,46.5289 -119.8299,46.5251 -119.8317,46.5192 -119.8343,46.5157</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 107.35km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-120.5102,47.1214 -120.5096,47.1217 -120.5056,47.1218 -120.4962,47.1218 -120.4868,47.1254 -120.4832,47.1282 -120.4706,47.1324 -120.4637,47.1361 -120.4591,47.1397 -120.4535,47.144 -120.4485,47.1479 -120.4455,47.1507 -120.4406,47.1561 -120.436,47.1611 -120.4321,47.1653 -120.4282,47.1696 -120.4233,47.1749 -120.4184,47.1802 -120.4084,47.184 -120.4003,47.187 -120.3885,47.1914 -120.3795,47.1947 -120.3704,47.1981 -120.3604,47.2018 -120.3532,47.2045 -120.3452,47.2075 -120.3401,47.2109 -120.336,47.2159 -120.3304,47.2228 -120.3259,47.2283 -120.3214,47.2338 -120.3158,47.2406 -120.3105,47.2471 -120.305,47.2539 -120.3004,47.2596 -120.2947,47.2665 -120.2891,47.2734 -120.2854,47.2779 -120.2804,47.2826 -120.2742,47.2893 -120.2702,47.294 -120.264,47.2997 -120.258,47.3029 -120.25,47.3072 -120.2378,47.3137 -120.2268,47.3196 -120.22,47.3232 -120.2118,47.3276 -120.2016,47.3331 -120.1942,47.337 -120.1927,47.3411 -120.1915,47.3446 -120.1882,47.3536 -120.1846,47.3568 -120.1765,47.3596 -120.1687,47.3593 -120.1626,47.3643 -120.154,47.3712 -120.1519,47.3765 -120.1519,47.3824 -120.1564,47.3907 -120.1591,47.3956 -120.1619,47.4009 -120.1655,47.4076 -120.1673,47.4129 -120.1698,47.4171 -120.1751,47.4221 -120.181,47.4275 -120.1865,47.4327 -120.1909,47.4368 -120.1949,47.4405 -120.2008,47.4462 -120.2053,47.4506 -120.2102,47.4554 -120.2156,47.4606 -120.2208,47.4654 -120.2257,47.47 -120.2289,47.4742 -120.2347,47.4805 -120.2406,47.4851 -120.2466,47.4898 -120.2535,47.4952 -120.2566,47.4988 -120.2606,47.5044 -120.2638,47.511 -120.2658,47.5161 -120.2681,47.5221 -120.2733,47.5297 -120.278,47.5349 -120.2802,47.5367</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 67.11km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-119.0204,47.9664 -119.0232,47.9653 -119.028,47.9611 -119.0351,47.9551 -119.0464,47.9554 -119.0558,47.9554 -119.0648,47.9555 -119.0732,47.9555 -119.0824,47.9555 -119.0918,47.9555 -119.0995,47.9556 -119.1088,47.9556 -119.1181,47.9556 -119.1234,47.9527 -119.1297,47.9492 -119.137,47.9452 -119.144,47.9412 -119.1512,47.9373 -119.1584,47.9332 -119.1672,47.9283 -119.1761,47.9234 -119.1833,47.9194 -119.1899,47.9158 -119.1963,47.9122 -119.2022,47.9089 -119.2049,47.904 -119.208,47.8984 -119.2109,47.8931 -119.2139,47.8875 -119.2194,47.8775 -119.2225,47.8718 -119.2253,47.8667 -119.2293,47.8595 -119.2321,47.8543 -119.2349,47.8491 -119.2382,47.8432 -119.2414,47.8373 -119.2438,47.8328 -119.2466,47.8278 -119.2498,47.8219 -119.2535,47.8151 -119.2562,47.8102 -119.2594,47.8044 -119.2626,47.7984 -119.2658,47.7925 -119.269,47.7866 -119.2723,47.7807 -119.2752,47.7754 -119.2791,47.7681 -119.2821,47.7626 -119.2852,47.757 -119.2884,47.7511 -119.2916,47.7452 -119.2954,47.7394 -119.2994,47.7342 -119.3036,47.7286 -119.307,47.7241 -119.3113,47.7185 -119.3149,47.7137 -119.3191,47.7082 -119.3233,47.7027 -119.3275,47.6971 -119.3316,47.6918 -119.3354,47.6867 -119.3396,47.6811 -119.3439,47.6755 -119.3481,47.67 -119.3515,47.6655 -119.3567,47.6587 -119.3595,47.6549 -119.3637,47.6494 -119.3679,47.6438 -119.3727,47.6375 -119.3786,47.6321 -119.3848,47.6279 -119.3909,47.6238 -119.3994,47.6182 -119.4054,47.6141 -119.4121,47.6097 -119.4195,47.6047 -119.4254,47.6007 -119.4363,47.5935 -119.4429,47.589 -119.4491,47.5849 -119.4557,47.5804 -119.4608,47.577 -119.4691,47.5714 -119.4791,47.5648 -119.49,47.5575 -119.4997,47.5509 -119.5063,47.5465 -119.5143,47.5411 -119.5272,47.5325 -119.534,47.5279 -119.5407,47.524 -119.5468,47.5205 -119.5534,47.5166 -119.5604,47.5125 -119.5674,47.5085 -119.5733,47.505 -119.5803,47.5009 -119.5871,47.497 -119.5941,47.4928 -119.6012,47.4887 -119.6079,47.4848 -119.6146,47.4809 -119.621,47.4772 -119.6284,47.4728 -119.6355,47.4687 -119.6424,47.4647 -119.6495,47.4605 -119.6566,47.4564 -119.6636,47.4522 -119.6707,47.4481 -119.6777,47.444 -119.6847,47.4399 -119.6916,47.4359 -119.6986,47.4318 -119.7056,47.4276 -119.7127,47.4235 -119.7197,47.4194 -119.7267,47.4153 -119.7333,47.4114 -119.7409,47.407 -119.7473,47.4032 -119.7537,47.3995 -119.7606,47.3954 -119.7677,47.3913 -119.7744,47.3873 -119.7815,47.3832 -119.7885,47.379 -119.7953,47.375 -119.8013,47.3715 -119.8074,47.3679 -119.8144,47.3649 -119.8222,47.3615 -119.8299,47.3581 -119.8369,47.3551 -119.8456,47.3513 -119.8528,47.3482 -119.8606,47.3448 -119.8697,47.3408 -119.8775,47.3374 -119.884,47.3346 -119.8892,47.3335 -119.8981,47.3316 -119.9067,47.3298 -119.9152,47.3281 -119.9218,47.3267 -119.9307,47.3248 -119.9377,47.3233 -119.9461,47.3216 -119.9537,47.32 -119.9603,47.3186 -119.9692,47.3167 -119.975,47.3155 -119.9839,47.3137 -119.9946,47.3114 -120.0034,47.3095 -120.0121,47.3077 -120.0235,47.3053 -120.0353,47.3028 -120.0455,47.3007 -120.0543,47.2988 -120.0649,47.2967 -120.0705,47.2964 -120.0767,47.2971 -120.0859,47.2943 -120.097,47.2904 -120.1079,47.2882 -120.1179,47.2864 -120.1261,47.2847 -120.1345,47.2797 -120.1414,47.2755 -120.1486,47.2712 -120.1568,47.2662 -120.1649,47.2613 -120.1717,47.2572 -120.1777,47.2536 -120.1892,47.2446 -120.1943,47.2391 -120.2019,47.2308 -120.21,47.222 -120.2158,47.2157 -120.2218,47.2092 -120.2266,47.2039 -120.2303,47.1999 -120.2361,47.1936 -120.24,47.1893 -120.2469,47.1852 -120.2556,47.18 -120.2628,47.1756 -120.2736,47.1691 -120.2818,47.1642 -120.2891,47.1598 -120.2976,47.1553 -120.307,47.1511 -120.3161,47.1471 -120.3247,47.1433 -120.3337,47.1393 -120.3407,47.1362 -120.3516,47.1314 -120.362,47.1268 -120.3767,47.125 -120.3823,47.1244 -120.39,47.1235 -120.4034,47.1219 -120.4094,47.1214 -120.4184,47.1214 -120.4296,47.1214 -120.4388,47.1214 -120.4457,47.1214 -120.4543,47.1214 -120.4626,47.1214 -120.4718,47.1214 -120.4831,47.1214 -120.4918,47.1214 -120.501,47.1214 -120.5074,47.1216 -120.5102,47.1214</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 179.92km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-119.0204,47.9664 -119.0221,47.9647 -119.0277,47.9599 -119.0351,47.955 -119.0464,47.9553 -119.0558,47.9554 -119.0648,47.9554 -119.0732,47.9554 -119.0824,47.9554 -119.0918,47.9555 -119.0995,47.9555 -119.1088,47.9555 -119.1181,47.9555 -119.1234,47.9526 -119.1297,47.9491 -119.137,47.9451 -119.144,47.9412 -119.1512,47.9372 -119.1584,47.9332 -119.1672,47.9283 -119.1761,47.9234 -119.1833,47.9194 -119.1899,47.9157 -119.1963,47.9121 -119.2022,47.9088 -119.2049,47.904 -119.208,47.8983 -119.2109,47.8931 -119.2139,47.8874 -119.2194,47.8775 -119.2225,47.8718 -119.2253,47.8666 -119.2293,47.8594 -119.2321,47.8542 -119.2349,47.8491 -119.2382,47.8431 -119.2414,47.8372 -119.2438,47.8327 -119.2466,47.8277 -119.2498,47.8218 -119.2535,47.8151 -119.2562,47.8101 -119.2594,47.8043 -119.2626,47.7984 -119.2658,47.7925 -119.269,47.7865 -119.2723,47.7806 -119.2752,47.7753 -119.2791,47.7681 -119.2821,47.7625 -119.2852,47.7569 -119.2884,47.751 -119.2916,47.7451 -119.2954,47.7394 -119.2994,47.7341 -119.3036,47.7285 -119.307,47.724 -119.3113,47.7184 -119.3149,47.7136 -119.3191,47.7081 -119.3233,47.7027 -119.3275,47.6971 -119.3316,47.6917 -119.3354,47.6866 -119.3396,47.6811 -119.3439,47.6755 -119.3481,47.6699 -119.3515,47.6654 -119.3567,47.6586 -119.3595,47.6548 -119.3637,47.6494 -119.3679,47.6437 -119.3727,47.6374 -119.3786,47.632 -119.3848,47.6279 -119.3909,47.6238 -119.3994,47.6181 -119.4054,47.614 -119.4121,47.6096 -119.4195,47.6046 -119.4254,47.6006 -119.4363,47.5934 -119.4429,47.589 -119.4491,47.5848 -119.4557,47.5804 -119.4608,47.5769 -119.4691,47.5714 -119.4791,47.5647 -119.49,47.5574 -119.4997,47.5509 -119.5063,47.5464 -119.5143,47.5411 -119.5272,47.5324 -119.534,47.5278 -119.5407,47.5239 -119.5468,47.5204 -119.5534,47.5165 -119.5604,47.5124 -119.5674,47.5084 -119.5733,47.5049 -119.5803,47.5008 -119.5871,47.4969 -119.5941,47.4928 -119.6012,47.4887 -119.6079,47.4847 -119.6146,47.4808 -119.621,47.4771 -119.6284,47.4727 -119.6355,47.4686 -119.6424,47.4646 -119.6495,47.4604 -119.6566,47.4563 -119.6636,47.4522 -119.6707,47.448 -119.6777,47.4439 -119.6847,47.4399 -119.6916,47.4358 -119.6986,47.4317 -119.7056,47.4276 -119.7127,47.4235 -119.7197,47.4193 -119.7267,47.4152 -119.7333,47.4114 -119.7409,47.4069 -119.7473,47.4032 -119.7537,47.3994 -119.7606,47.3953 -119.7677,47.3912 -119.7744,47.3872 -119.7815,47.3831 -119.7885,47.379 -119.7953,47.375 -119.8013,47.3714 -119.8074,47.3678 -119.8144,47.3648 -119.8222,47.3614 -119.8299,47.3581 -119.8369,47.355 -119.8456,47.3512 -119.8528,47.3481 -119.8606,47.3447 -119.8697,47.3407 -119.8775,47.3374 -119.884,47.3345 -119.8892,47.3334 -119.8981,47.3316 -119.9067,47.3298 -119.9152,47.328 -119.9218,47.3266 -119.9307,47.3247 -119.9377,47.3233 -119.9461,47.3215 -119.9537,47.3199 -119.9603,47.3185 -119.9692,47.3167 -119.975,47.3154 -119.9839,47.3136 -119.9946,47.3113 -120.0034,47.3095 -120.0121,47.3076 -120.0235,47.3052 -120.0353,47.3028 -120.0455,47.3006 -120.0543,47.2987 -120.0649,47.2966 -120.0705,47.2964 -120.0765,47.2966 -120.0859,47.2942 -120.097,47.2904 -120.1079,47.2882 -120.1179,47.2863 -120.1261,47.2846 -120.1345,47.2796 -120.1414,47.2754 -120.1486,47.2711 -120.1568,47.2661 -120.1649,47.2613 -120.1717,47.2571 -120.1777,47.2535 -120.1892,47.2446 -120.1943,47.239 -120.2019,47.2307 -120.21,47.222 -120.2158,47.2156 -120.2218,47.2091 -120.2266,47.2038 -120.2303,47.1998 -120.2361,47.1935 -120.24,47.1892 -120.2469,47.1851 -120.2556,47.1799 -120.2628,47.1755 -120.2736,47.169 -120.2818,47.1641 -120.2891,47.1597 -120.2976,47.1552 -120.307,47.1511 -120.3161,47.147 -120.3247,47.1432 -120.3337,47.1392 -120.3407,47.1361 -120.3516,47.1313 -120.362,47.1267 -120.3767,47.125 -120.3823,47.1243 -120.39,47.1234 -120.4034,47.1218 -120.4094,47.1214 -120.4184,47.1214 -120.4296,47.1214 -120.4388,47.1214 -120.4457,47.1214 -120.4543,47.1214 -120.4626,47.1214 -120.4718,47.1214 -120.4831,47.1214 -120.4918,47.1214 -120.501,47.1214 -120.5074,47.1212 -120.5102,47.1214</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 179.91km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-119.9398,46.8776 -119.9388,46.8761 -119.9428,46.8748 -119.9506,46.87 -119.9603,46.8653 -119.9768,46.8594 -119.9846,46.8586 -119.9937,46.8599 -120.0029,46.8611 -120.0119,46.8624 -120.0197,46.8635 -120.028,46.8646 -120.0354,46.8656 -120.0442,46.8673 -120.0529,46.8693 -120.0648,46.872 -120.0735,46.874 -120.0819,46.8759 -120.0906,46.8779 -120.099,46.8798 -120.1077,46.8822 -120.1159,46.8851 -120.1234,46.8877 -120.1317,46.8906 -120.1384,46.8929 -120.1453,46.8971 -120.1522,46.9013 -120.159,46.9054 -120.166,46.9097 -120.1729,46.9139 -120.1784,46.9173 -120.1854,46.9215 -120.1909,46.9248 -120.1974,46.9289 -120.2042,46.9332 -120.2106,46.9374 -120.2182,46.9423 -120.2269,46.9479 -120.233,46.9518 -120.2396,46.956 -120.2463,46.9603 -120.2504,46.9637 -120.2551,46.9686 -120.2602,46.9739 -120.2653,46.9792 -120.2691,46.9833 -120.2742,46.9886 -120.2798,46.9944 -120.2841,46.999 -120.2892,47.0043 -120.2943,47.0096 -120.2992,47.0147 -120.3043,47.02 -120.3086,47.0245 -120.3148,47.0309 -120.3181,47.034 -120.3239,47.0388 -120.3295,47.0436 -120.3352,47.0485 -120.341,47.0534 -120.3453,47.0571 -120.3502,47.0612 -120.3561,47.0662 -120.3611,47.0705 -120.3662,47.0748 -120.3713,47.0777 -120.3792,47.0812 -120.3865,47.0844 -120.3941,47.0877 -120.402,47.0912 -120.4088,47.0942 -120.4152,47.097 -120.423,47.1004 -120.4308,47.1038 -120.4379,47.1069 -120.4455,47.1102 -120.4533,47.1137 -120.4609,47.117 -120.4679,47.12 -120.476,47.12 -120.4847,47.12 -120.494,47.12 -120.5023,47.12 -120.5096,47.1202</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 65.74km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-119.6516,47.9862 -119.6523,47.9869 -119.6567,47.986 -119.6571,47.9812 -119.6575,47.9763 -119.6573,47.9731 -119.6586,47.9693 -119.662,47.9647 -119.6655,47.96 -119.6691,47.9552 -119.673,47.9499 -119.6772,47.9442 -119.6815,47.9386 -119.6851,47.9337 -119.6896,47.9296 -119.696,47.9254 -119.7026,47.921 -119.7105,47.9157 -119.7172,47.9113 -119.723,47.9075 -119.7284,47.9039 -119.7343,47.9 -119.7402,47.8961 -119.7452,47.8927 -119.7545,47.8866 -119.7592,47.8834 -119.7655,47.8793 -119.7704,47.876 -119.7763,47.8721 -119.7818,47.8684 -119.7877,47.8645 -119.794,47.8603 -119.7995,47.8566 -119.8063,47.8521 -119.8124,47.848 -119.8186,47.8439 -119.8247,47.8398 -119.8321,47.8349 -119.8388,47.8305 -119.8453,47.8261 -119.8515,47.822 -119.8572,47.8182 -119.8625,47.8146 -119.8674,47.8113 -119.8737,47.8072 -119.8796,47.8032 -119.8853,47.7994 -119.8913,47.7954 -119.8976,47.7912 -119.9037,47.7871 -119.9099,47.783 -119.9152,47.7794 -119.9206,47.7758 -119.9268,47.7717 -119.9322,47.768 -119.9371,47.7647 -119.9432,47.7607 -119.949,47.7568 -119.9539,47.7535 -119.959,47.7517 -119.9639,47.7482 -119.9713,47.7431 -119.9784,47.7382 -119.9847,47.7339 -119.9925,47.7285 -119.9987,47.7242 -120.0064,47.7189 -120.0126,47.7145 -120.0208,47.7089 -120.0271,47.7046 -120.033,47.7005 -120.0391,47.6962 -120.0454,47.6919 -120.0531,47.6865 -120.0589,47.6825 -120.0652,47.6782 -120.0725,47.673 -120.0796,47.6682 -120.0869,47.6631 -120.0945,47.6578 -120.0997,47.6542 -120.1073,47.6489 -120.1139,47.6444 -120.1194,47.6414 -120.1276,47.6372 -120.139,47.6311 -120.1437,47.6286 -120.1506,47.6249 -120.1571,47.6214 -120.162,47.6187 -120.1673,47.6104 -120.1718,47.604 -120.1766,47.5972 -120.1799,47.5924 -120.1829,47.588 -120.1873,47.5817 -120.1913,47.576 -120.1952,47.5704 -120.1988,47.565 -120.2024,47.5599 -120.2058,47.5549 -120.2108,47.5478 -120.2147,47.5421 -120.2195,47.5353 -120.224,47.5287 -120.2287,47.5267 -120.2384,47.5275 -120.248,47.5284 -120.2542,47.529 -120.2622,47.5301 -120.2701,47.5326 -120.2775,47.5351 -120.2802,47.5367</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 80.8km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-119.0204,47.9664 -119.0227,47.9666 -119.0269,47.9636 -119.0318,47.9655 -119.036,47.9682 -119.0416,47.9719 -119.0485,47.9762 -119.0547,47.98 -119.0615,47.9843 -119.0663,47.9872 -119.0738,47.9898 -119.081,47.9898 -119.0889,47.9898 -119.0982,47.9898 -119.1076,47.9897 -119.1166,47.9897 -119.126,47.9897 -119.1355,47.9897 -119.1444,47.9896 -119.1532,47.9896 -119.1611,47.9896 -119.1699,47.9895 -119.1817,47.9895 -119.1892,47.9895 -119.1963,47.9895 -119.2043,47.9913 -119.2131,47.9933 -119.2215,47.9952 -119.2302,47.9973 -119.2391,47.9993 -119.2478,48.0013 -119.2559,48.0032 -119.2637,48.004 -119.2729,48.004 -119.2845,48.004 -119.2938,48.004 -119.3018,48.004 -119.3112,48.004 -119.3204,48.004 -119.3298,48.004 -119.3392,48.004 -119.3497,48.004 -119.3561,48.004 -119.3655,48.004 -119.3749,48.004 -119.3833,48.0039 -119.3918,48.0039 -119.4012,48.0039 -119.4093,48.0039 -119.4187,48.0039 -119.4279,48.0039 -119.4374,48.0039 -119.4468,48.0038 -119.4513,48.0025 -119.4629,47.999 -119.4709,47.9966 -119.4791,47.9942 -119.4865,47.992 -119.4943,47.9896 -119.5018,47.9874 -119.5084,47.9854 -119.5185,47.9824 -119.5246,47.9805 -119.5324,47.9782 -119.5419,47.9753 -119.551,47.9753 -119.5602,47.9753 -119.5691,47.9753 -119.5779,47.9754 -119.5868,47.9754 -119.5957,47.9754 -119.6026,47.9749 -119.6125,47.9736 -119.6203,47.9733 -119.631,47.9734 -119.6395,47.9735 -119.6487,47.9736 -119.6567,47.9739 -119.6569,47.9765 -119.6565,47.9813 -119.6562,47.9855 -119.6523,47.9867</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 66.73km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-119.9398,46.8776 -119.9376,46.8755 -119.9324,46.876 -119.9289,46.8731 -119.9263,46.865 -119.9241,46.8584 -119.9219,46.8518 -119.9197,46.8453 -119.9169,46.837 -119.9149,46.8309 -119.9128,46.8244 -119.9079,46.8161 -119.8995,46.8058 -119.895,46.8002 -119.8815,46.7955 -119.8673,46.7906 -119.8591,46.7878 -119.8484,46.7841 -119.84,46.7812 -119.8319,46.7784 -119.8227,46.7752 -119.8128,46.7718 -119.8048,46.769 -119.7956,46.7658 -119.7857,46.7624 -119.7763,46.7591 -119.7665,46.7557 -119.7585,46.7529 -119.7486,46.7495 -119.7388,46.7461 -119.7292,46.7427 -119.7197,46.7394 -119.7099,46.736 -119.6999,46.7326 -119.6904,46.7292 -119.6806,46.7258 -119.6709,46.7224 -119.6611,46.719 -119.6515,46.7157 -119.6422,46.7124 -119.6342,46.7096 -119.6281,46.7064 -119.62,46.7011 -119.6136,46.6968 -119.6061,46.6919 -119.5981,46.6866 -119.5903,46.6815 -119.5839,46.6772 -119.5749,46.6714 -119.5715,46.6697</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 44.67km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-119.0204,47.9664 -119.0195,47.9649 -119.0198,47.9609 -119.0185,47.9559 -119.0158,47.9453 -119.0142,47.9374 -119.0129,47.9284 -119.0122,47.9237 -119.0111,47.9164 -119.0117,47.9121 -119.0142,47.9079 -119.017,47.9033 -119.0198,47.8985 -119.0234,47.8927 -119.0265,47.8875 -119.0295,47.8824 -119.0333,47.8769 -119.0367,47.8718 -119.0395,47.8671 -119.0418,47.8627 -119.0451,47.8565 -119.0477,47.8516 -119.0513,47.8456 -119.0545,47.84 -119.0583,47.8335 -119.0615,47.828 -119.0646,47.8227 -119.0675,47.8176 -119.071,47.8118 -119.0744,47.8058 -119.0781,47.7994 -119.0815,47.7936 -119.0838,47.7897 -119.0872,47.7838 -119.0908,47.7777 -119.0946,47.7711 -119.0984,47.7642 -119.101,47.759 -119.1048,47.7524 -119.1087,47.7467 -119.1119,47.7419 -119.1151,47.737 -119.1192,47.7309 -119.1225,47.7259 -119.1265,47.7205 -119.1305,47.7155 -119.1344,47.7107 -119.1374,47.7064 -119.1413,47.7008 -119.1449,47.6958 -119.1482,47.691 -119.1521,47.6855 -119.1552,47.6811 -119.1592,47.6753 -119.1633,47.6695 -119.1672,47.664 -119.171,47.6585 -119.1748,47.6531 -119.1784,47.6479 -119.1821,47.6426 -119.1858,47.6373 -119.1896,47.6319 -119.1937,47.6261 -119.1973,47.621 -119.2007,47.616 -119.204,47.6113 -119.2074,47.6065 -119.2113,47.6009 -119.2151,47.5955 -119.2189,47.5901 -119.2227,47.5846 -119.2268,47.5787 -119.2304,47.5736 -119.234,47.5683 -119.2375,47.5634 -119.2403,47.5593 -119.2443,47.5536 -119.2478,47.5485 -119.2515,47.5433 -119.2549,47.5383 -119.2586,47.5331 -119.2622,47.5279 -119.2659,47.5227 -119.2694,47.5175 -119.2723,47.5134 -119.2761,47.5079 -119.2785,47.5046 -119.2821,47.4994 -119.2866,47.4929 -119.2905,47.4873 -119.2937,47.4826 -119.2981,47.4764 -119.3017,47.4712 -119.3051,47.4662 -119.3089,47.4608 -119.3124,47.4557 -119.3162,47.4502 -119.3204,47.4442 -119.3257,47.4366 -119.3298,47.4307 -119.3339,47.4248 -119.3379,47.4189 -119.3426,47.4121 -119.3459,47.4075 -119.3496,47.4022 -119.3537,47.3962 -119.3571,47.3912 -119.361,47.3857 -119.3651,47.3798 -119.3685,47.3749 -119.3718,47.37 -119.3754,47.3649 -119.3791,47.3595 -119.3827,47.3542 -119.3865,47.3487 -119.3907,47.3427 -119.3945,47.3371 -119.398,47.3321 -119.4017,47.3268 -119.4053,47.3216 -119.4092,47.3159 -119.4129,47.3106 -119.4165,47.3053 -119.4201,47.3002 -119.4237,47.2949 -119.4274,47.2895 -119.4311,47.2842 -119.4348,47.2788 -119.4384,47.2736 -119.442,47.2684 -119.4455,47.2633 -119.4492,47.2579 -119.4532,47.2521 -119.4573,47.2462 -119.4614,47.2402 -119.4656,47.234 -119.4692,47.2288 -119.4729,47.2234 -119.4762,47.2186 -119.48,47.213 -119.4846,47.2064 -119.488,47.2014 -119.4916,47.1962 -119.4956,47.1904 -119.4992,47.1851 -119.503,47.1796 -119.507,47.1737 -119.5108,47.1683 -119.5149,47.1623 -119.5184,47.1572 -119.5219,47.1521 -119.5257,47.1464 -119.5296,47.1408 -119.5329,47.1361 -119.5363,47.131 -119.5399,47.1258 -119.5437,47.1202 -119.5473,47.115 -119.5513,47.1088 -119.5552,47.1026 -119.5583,47.0981 -119.5619,47.0928 -119.5663,47.0864 -119.5664,47.08 -119.5665,47.0726 -119.5666,47.0654 -119.5667,47.0582 -119.5668,47.0507 -119.5669,47.0434 -119.567,47.0361 -119.5671,47.0288 -119.5672,47.0214 -119.5672,47.0141 -119.5673,47.0068 -119.5674,46.9995 -119.5675,46.9924 -119.5676,46.9845 -119.5677,46.9783 -119.5678,46.9701 -119.5679,46.9634 -119.568,46.9571 -119.5681,46.9499 -119.5682,46.9447 -119.5654,46.9393 -119.5632,46.9348 -119.5632,46.9283 -119.5632,46.9226 -119.5633,46.9171 -119.5633,46.9125 -119.5633,46.9047 -119.5633,46.8967 -119.5634,46.8913 -119.5636,46.885 -119.5638,46.8789 -119.5639,46.8732 -119.5642,46.864 -119.5644,46.8578 -119.5647,46.8501 -119.565,46.8398 -119.5653,46.832 -119.5667,46.8276 -119.57,46.8173 -119.5721,46.8109 -119.5737,46.806 -119.5754,46.8007 -119.5789,46.79 -119.5797,46.7846 -119.5797,46.7782 -119.5797,46.7719 -119.5798,46.7659 -119.5798,46.7603 -119.5798,46.7541 -119.5798,46.7477 -119.5798,46.7415 -119.5791,46.7357 -119.5776,46.7305 -119.5778,46.7241 -119.579,46.7178 -119.5794,46.713 -119.5795,46.7074 -119.5796,46.7014 -119.5798,46.6955 -119.5798,46.6893 -119.5824,46.6844 -119.5881,46.6794 -119.5822,46.6747 -119.5729,46.6677 -119.5709,46.6695</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 148.83km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-118.7913,46.211 -118.7921,46.2098 -118.7963,46.2042 -118.8001,46.1992 -118.8042,46.1937 -118.8084,46.1881 -118.8122,46.1824 -118.8157,46.177 -118.8194,46.1712 -118.8232,46.1655 -118.8269,46.1597 -118.8301,46.1547 -118.8338,46.1489 -118.8373,46.1436 -118.8408,46.1377 -118.8443,46.1319 -118.8476,46.1265 -118.851,46.1208 -118.8546,46.115 -118.858,46.1094 -118.8615,46.1036 -118.8647,46.0983 -118.8681,46.0926 -118.8714,46.0871 -118.8749,46.0814 -118.8784,46.0756 -118.8817,46.0701 -118.8848,46.0644 -118.8883,46.0559 -118.8908,46.05 -118.893,46.0449 -118.8971,46.0393 -118.9004,46.0347 -118.9045,46.0291 -118.9086,46.0235 -118.9116,46.0194 -118.9157,46.0137 -118.9187,46.0097 -118.9237,46.0037 -118.9288,45.9989 -118.933,45.995 -118.9382,45.9902 -118.9425,45.9866 -118.9475,45.9826 -118.9527,45.9785 -118.9574,45.9748 -118.9628,45.9705 -118.9686,45.966 -118.9744,45.9613 -118.9804,45.9566 -118.9915,45.9477 -118.9979,45.9456 -119.0059,45.943 -119.0141,45.9403 -119.022,45.9376 -119.03,45.9346 -119.0363,45.9319 -119.043,45.9291 -119.0495,45.9263 -119.0572,45.9231 -119.0661,45.9218 -119.0739,45.9219 -119.0829,45.9219 -119.092,45.9219 -119.0996,45.9219 -119.1059,45.9174 -119.1121,45.913 -119.118,45.9089 -119.1244,45.9044 -119.1297,45.9019 -119.1387,45.9009 -119.1476,45.8998 -119.1566,45.8987 -119.1655,45.8977 -119.1735,45.8976 -119.1813,45.8986 -119.1902,45.8997 -119.1979,45.9006 -119.2055,45.9016 -119.2125,45.9024 -119.2209,45.9035 -119.2285,45.9044 -119.2374,45.9055 -119.2461,45.9066 -119.255,45.9077 -119.2639,45.9088 -119.2702,45.9096 -119.2731,45.9097 -119.2766,45.9104 -119.2856,45.9115 -119.2944,45.9126 -119.301,45.9134 -119.3069,45.9123 -119.3067,45.919 -119.3091,45.9236 -119.3136,45.9242</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 68.15km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-118.5449,46.5502 -118.5454,46.5484 -118.5487,46.542 -118.5511,46.5369 -118.5535,46.5309 -118.5553,46.5266 -118.5572,46.5221 -118.5596,46.516 -118.5619,46.5106 -118.5642,46.505 -118.5667,46.4988 -118.5692,46.4928 -118.5715,46.487 -118.5741,46.4817 -118.5766,46.477 -118.5793,46.4719 -118.5818,46.4671 -118.5856,46.4599 -118.5888,46.454 -118.5919,46.448 -118.5951,46.442 -118.5973,46.4378 -118.6005,46.4319 -118.6047,46.4238 -118.6078,46.4179 -118.611,46.412 -118.6141,46.4061 -118.617,46.4007 -118.6209,46.3956 -118.6252,46.3901 -118.6292,46.385 -118.6334,46.3796 -118.6376,46.3741 -118.6409,46.3699 -118.6448,46.3648 -118.6489,46.3596 -118.6535,46.3524 -118.6555,46.3488 -118.6588,46.3429 -118.6616,46.3378 -118.6649,46.3319 -118.6682,46.326 -118.6746,46.3214 -118.6809,46.3169 -118.6872,46.3124 -118.6936,46.3079 -118.6999,46.3033 -118.7062,46.2988 -118.7123,46.2945 -118.7184,46.2901 -118.7248,46.2856 -118.7311,46.281 -118.7364,46.2772 -118.7426,46.2727 -118.7475,46.2693 -118.7519,46.2635 -118.7546,46.2598 -118.7588,46.2542 -118.763,46.2486 -118.7671,46.2431 -118.7713,46.2375 -118.7756,46.2319 -118.7798,46.2263 -118.784,46.2207 -118.7881,46.2151 -118.7913,46.211</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 42.79km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-119.3136,45.9242 -119.3098,45.9229 -119.3093,45.915 -119.3104,45.9096 -119.3081,45.9037 -119.3044,45.9002 -119.3002,45.8963 -119.2958,45.8921 -119.2922,45.8887 -119.2879,45.8847 -119.2845,45.8815 -119.281,45.8782 -119.2754,45.8729 -119.2709,45.8686 -119.2664,45.8649 -119.2633,45.8626 -119.259,45.8595 -119.2555,45.857 -119.2539,45.8536 -119.2517,45.849 -119.2495,45.8445 -119.2471,45.8394 -119.245,45.8368 -119.2422,45.8342 -119.2388,45.8311 -119.226,45.8153 -119.2592,45.8056 -119.29,45.7985 -119.3116,45.7984 -119.3115,45.7937</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 25.64km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-118.5449,46.5502 -118.5462,46.5497 -118.5486,46.5457 -118.5519,46.5455 -118.5658,46.5491 -118.5731,46.5509 -118.5799,46.5535 -118.5887,46.5583 -118.5945,46.5614 -118.6033,46.5614 -118.61,46.5614 -118.6192,46.5614 -118.6277,46.5614 -118.6367,46.5616 -118.6463,46.5618 -118.6551,46.5619 -118.6635,46.5619 -118.6728,46.5618 -118.6814,46.5617 -118.6884,46.5617 -118.6964,46.5617 -118.7034,46.5618 -118.7145,46.5617 -118.7218,46.5617 -118.7301,46.5617 -118.7391,46.5618 -118.7482,46.5618 -118.7581,46.5618 -118.7673,46.5617 -118.7757,46.5617 -118.7843,46.5617 -118.7927,46.5618 -118.8018,46.5618 -118.8101,46.5618 -118.8193,46.562 -118.8284,46.562 -118.8354,46.5621 -118.8453,46.5621 -118.8534,46.562 -118.8616,46.562 -118.8706,46.562 -118.8793,46.562 -118.8881,46.5603 -118.8966,46.5569 -118.9044,46.5537 -118.9133,46.5539 -118.922,46.554 -118.9307,46.5542 -118.9393,46.5543 -118.9471,46.5545 -118.9554,46.5546 -118.9645,46.5547 -118.9721,46.5514 -118.9795,46.5483 -118.9862,46.5453 -118.9934,46.5438 -119.0026,46.5437 -119.0118,46.5435 -119.0196,46.5434 -119.0282,46.5433 -119.0351,46.5433 -119.0439,46.5432 -119.053,46.5432 -119.0626,46.5431 -119.0702,46.5431 -119.0792,46.5431 -119.086,46.5423 -119.0911,46.5417 -119.0977,46.541 -119.1051,46.5402 -119.114,46.5403 -119.1225,46.5403 -119.1305,46.5384 -119.141,46.5335 -119.1485,46.5299 -119.156,46.5263 -119.1634,46.5228 -119.17,46.5197 -119.1781,46.5179 -119.186,46.5161 -119.1945,46.5142 -119.2025,46.5123 -119.2101,46.5096 -119.2179,46.5068 -119.2258,46.504 -119.2327,46.5015 -119.2408,46.4986 -119.2487,46.4977 -119.2635,46.4952 -119.2749,46.4933 -119.2829,46.492 -119.2911,46.4907 -119.3,46.4892 -119.3085,46.4878 -119.3172,46.4863 -119.3256,46.4849 -119.3345,46.4835 -119.3349,46.4812</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 81.42km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-118.5449,46.5502 -118.5459,46.5496 -118.5485,46.5451 -118.5603,46.548 -118.5685,46.5501 -118.5766,46.5521 -118.5855,46.5569 -118.5888,46.5587 -118.596,46.5625 -118.6032,46.5664 -118.6104,46.5703 -118.6176,46.5742 -118.6243,46.5778 -118.6316,46.5817 -118.6388,46.5855 -118.6449,46.5888 -118.6509,46.592 -118.6581,46.5959 -118.6653,46.5998 -118.6706,46.6024 -118.6778,46.6059 -118.6852,46.6094 -118.6927,46.613 -118.6995,46.6163 -118.7081,46.6203 -118.7149,46.6236 -118.722,46.627 -118.7275,46.6291 -118.7372,46.6312 -118.7451,46.6329 -118.7524,46.6344 -118.7596,46.636 -118.7685,46.6365 -118.7765,46.6369 -118.7847,46.6374 -118.7937,46.6379 -118.8024,46.6384 -118.8088,46.6388 -118.8161,46.6392 -118.8252,46.6398 -118.8343,46.6403 -118.8433,46.6408 -118.8518,46.6413 -118.8612,46.6418 -118.8698,46.6423 -118.8776,46.6428 -118.8891,46.6434 -118.8975,46.6439 -118.9063,46.6444 -118.9145,46.6449 -118.9236,46.6454 -118.9312,46.6458 -118.9404,46.6463 -118.9493,46.6457 -118.9582,46.645 -118.9673,46.6442 -118.975,46.6436 -118.9845,46.6429 -118.9926,46.6426 -119.0017,46.6428 -119.0106,46.6429 -119.021,46.643 -119.0302,46.6433 -119.0385,46.6435 -119.0456,46.6437 -119.0547,46.6428 -119.0635,46.642 -119.0715,46.6412 -119.0781,46.6406 -119.0853,46.6399 -119.0935,46.6391 -119.1016,46.642 -119.1092,46.6447 -119.1173,46.6476 -119.1251,46.6505 -119.1329,46.6533 -119.1411,46.6562 -119.1485,46.6589 -119.1564,46.6617 -119.1657,46.665 -119.1722,46.6688 -119.1792,46.6729 -119.1862,46.6769 -119.1931,46.6809 -119.2005,46.6828 -119.2096,46.6819 -119.2168,46.6812 -119.2255,46.6803 -119.2335,46.68 -119.2427,46.6802 -119.2518,46.6803 -119.261,46.6805 -119.2751,46.6807 -119.284,46.6809 -119.2932,46.681 -119.302,46.6812 -119.3097,46.6813 -119.3187,46.6814 -119.3279,46.6816 -119.337,46.6817 -119.3462,46.6819 -119.3553,46.682 -119.3645,46.6821 -119.3737,46.6823 -119.3828,46.6824 -119.392,46.6826 -119.4011,46.6827 -119.41,46.6828 -119.4191,46.683 -119.4282,46.6831 -119.4358,46.6795 -119.4451,46.6751 -119.4577,46.6691 -119.4664,46.665 -119.4733,46.6617 -119.4802,46.6584 -119.4888,46.6555 -119.496,46.6541 -119.5048,46.6524 -119.5136,46.6506 -119.5224,46.6489 -119.5313,46.6472 -119.5401,46.6454 -119.5452,46.65 -119.5499,46.6543 -119.554,46.658 -119.5594,46.6631 -119.5638,46.6676 -119.5695,46.6709 -119.5709,46.6695</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 107.68km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-118.5449,46.5502 -118.5441,46.5501 -118.5408,46.5532 -118.5336,46.5586 -118.5237,46.56 -118.5155,46.56 -118.5063,46.5609 -118.4982,46.5618 -118.4884,46.5627 -118.4809,46.5635 -118.4739,46.5642 -118.4652,46.565 -118.459,46.5656 -118.4493,46.5666 -118.4416,46.5674 -118.4337,46.5681 -118.4219,46.5691 -118.4144,46.5696 -118.4065,46.5701 -118.3974,46.5708 -118.39,46.5713 -118.3822,46.5718 -118.3731,46.5724 -118.3624,46.5732 -118.3555,46.5736 -118.344,46.5738 -118.3349,46.5739 -118.3286,46.574 -118.3195,46.5741 -118.3115,46.5743 -118.3024,46.5744 -118.296,46.5745 -118.2856,46.5746 -118.2797,46.5747 -118.2689,46.5739 -118.2621,46.5735 -118.2531,46.5728 -118.2442,46.5722 -118.2351,46.5715 -118.2259,46.5709 -118.2174,46.5715 -118.2066,46.5743 -118.1925,46.578 -118.1839,46.5802 -118.1757,46.5823 -118.1673,46.5823 -118.1586,46.5822 -118.1496,46.5821 -118.1418,46.5821 -118.1314,46.582 -118.1234,46.582 -118.1142,46.582 -118.1064,46.582 -118.099,46.5819 -118.084,46.5844 -118.0762,46.586 -118.0689,46.5875 -118.0551,46.5823 -118.0531,46.5823</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 49.92km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-118.5449,46.5502 -118.5451,46.5503 -118.5412,46.5491 -118.5365,46.5542 -118.5319,46.559 -118.524,46.5597 -118.5155,46.5597 -118.5056,46.5607 -118.4974,46.5615 -118.4878,46.5624 -118.4809,46.5631 -118.4739,46.5638 -118.4653,46.5647 -118.4583,46.5654 -118.4492,46.5663 -118.4415,46.567 -118.4337,46.5678 -118.4216,46.5688 -118.4143,46.5693 -118.4064,46.5698 -118.3962,46.5705 -118.39,46.5709 -118.3827,46.5714 -118.3732,46.5721 -118.3625,46.5728 -118.3555,46.5733 -118.3436,46.5735 -118.3357,46.5736 -118.3286,46.5737 -118.3184,46.5738 -118.3115,46.5739 -118.3026,46.574 -118.296,46.5741 -118.2856,46.5743 -118.2797,46.5744 -118.269,46.5736 -118.2621,46.5731 -118.2531,46.5725 -118.2442,46.5718 -118.2351,46.5712 -118.2252,46.5705 -118.2182,46.5709 -118.2063,46.574 -118.1919,46.5777 -118.1833,46.5799 -118.1753,46.582 -118.1676,46.5819 -118.1594,46.5819 -118.1504,46.5818 -118.1419,46.5818 -118.1312,46.5817 -118.1238,46.5817 -118.1147,46.5816 -118.1065,46.5816 -118.098,46.5816 -118.0854,46.5836 -118.0775,46.5852 -118.0689,46.587 -118.0601,46.5838 -118.0531,46.5823</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 50.25km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-117.8068,46.5955 -117.808,46.5961 -117.8119,46.5956 -117.8203,46.592 -117.8271,46.5891 -117.8347,46.5858 -117.8413,46.583 -117.8493,46.5796 -117.8559,46.5791 -117.8701,46.5781 -117.8776,46.5776 -117.8859,46.577 -117.8948,46.5774 -117.9026,46.5777 -117.9178,46.5767 -117.9251,46.5758 -117.9385,46.5743 -117.9485,46.5732 -117.9587,46.572 -117.9679,46.571 -117.977,46.57 -117.9858,46.569 -118.0003,46.5673 -118.0063,46.567 -118.0235,46.566 -118.034,46.5654 -118.0433,46.5717 -118.047,46.5746 -118.0547,46.5815</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 25.95km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-118.0531,46.5823 -118.0532,46.5825 -118.05,46.5819 -118.0458,46.5746 -118.0431,46.572 -118.0339,46.5657 -118.0234,46.5663 -118.0069,46.5673 -118.0004,46.5676 -117.9861,46.5693 -117.9768,46.5703 -117.9678,46.5713 -117.9588,46.5724 -117.9498,46.5734 -117.945,46.5739 -117.936,46.5749 -117.924,46.5763 -117.918,46.577 -117.9026,46.578 -117.8945,46.5777 -117.8859,46.5773 -117.8777,46.5779 -117.8698,46.5784 -117.8583,46.5793 -117.8494,46.5799 -117.8416,46.5832 -117.8362,46.5856 -117.8272,46.5894 -117.8156,46.5944 -117.797,46.6023 -117.7887,46.6059 -117.7808,46.6099 -117.7718,46.6145 -117.7645,46.6183 -117.7572,46.622 -117.7501,46.6242 -117.7439,46.6255 -117.7358,46.6273 -117.7248,46.6297 -117.7157,46.6296 -117.7051,46.6295 -117.6975,46.6295 -117.6883,46.6295 -117.6801,46.6294 -117.6696,46.6293 -117.6582,46.6293 -117.6459,46.6292 -117.6373,46.6292 -117.6243,46.6291 -117.6154,46.629 -117.6071,46.629 -117.6003,46.6289 -117.5917,46.6289 -117.5833,46.6288 -117.5723,46.6288 -117.5662,46.6295 -117.5582,46.6317 -117.5491,46.6343 -117.5406,46.6367 -117.5323,46.639 -117.5241,46.6419 -117.5152,46.646 -117.5061,46.65 -117.4907,46.6562 -117.4845,46.6589 -117.476,46.6627 -117.4615,46.6611 -117.4527,46.6604 -117.4469,46.6562 -117.4413,46.6522 -117.4259,46.6519 -117.42,46.6516</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 66.11km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-117.8068,46.5955 -117.8073,46.5965 -117.8041,46.5989 -117.7974,46.6018 -117.7885,46.6056 -117.7805,46.6097 -117.7719,46.6141 -117.7672,46.6165 -117.7599,46.6202 -117.7547,46.6228 -117.7472,46.6245 -117.7385,46.6263 -117.7312,46.6279 -117.7172,46.6293 -117.7106,46.6293 -117.7019,46.6292 -117.6938,46.6292 -117.6831,46.6291 -117.6752,46.6291 -117.6661,46.629 -117.6581,46.629 -117.6519,46.6289 -117.6411,46.6289 -117.6279,46.6288 -117.6202,46.6287 -117.6124,46.6287 -117.6022,46.6286 -117.5927,46.6286 -117.5831,46.6285 -117.5724,46.6284 -117.5659,46.6292 -117.5581,46.6314 -117.5484,46.6341 -117.5402,46.6364 -117.532,46.6387 -117.5239,46.6416 -117.5149,46.6457 -117.5054,46.6496 -117.4909,46.6556 -117.4839,46.6587 -117.4759,46.6623 -117.4616,46.6607 -117.4524,46.6598 -117.4467,46.6556 -117.4415,46.6519 -117.4379,46.6493 -117.431,46.649 -117.4215,46.6516 -117.4199,46.6518</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 40.6km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-117.4199,46.6518 -117.4197,46.6521 -117.4147,46.6488 -117.4006,46.6462 -117.3907,46.6439 -117.3706,46.6444 -117.3677,46.6395 -117.3618,46.6296 -117.3587,46.6242 -117.3506,46.6192 -117.3423,46.614 -117.3293,46.6059 -117.3223,46.5981 -117.3188,46.5943 -117.3139,46.5887 -117.3045,46.5846 -117.2941,46.5802 -117.2861,46.5769 -117.2768,46.5731 -117.2633,46.5687 -117.2518,46.566 -117.2427,46.5638 -117.2333,46.5568 -117.2303,46.5527 -117.2262,46.5468 -117.2208,46.5388 -117.2175,46.5339 -117.2142,46.5291 -117.2071,46.5187 -117.2027,46.5122 -117.1977,46.505 -117.199,46.4992 -117.2005,46.4924 -117.2005,46.4879 -117.1966,46.4807 -117.193,46.4767 -117.1891,46.4724 -117.1831,46.4658 -117.1749,46.4564 -117.1703,46.4511 -117.1626,46.4484 -117.1487,46.4461 -117.1357,46.4438 -117.1273,46.4424 -117.119,46.4419 -117.1083,46.4412 -117.0956,46.4419 -117.0787,46.4427 -117.0672,46.4433 -117.0519,46.4411 -117.0394,46.4414 -117.0298,46.443 -117.0226,46.4441 -117.012,46.4459 -117.0029,46.4472 -116.9883,46.4494 -116.9799,46.4506 -116.9639,46.4529 -116.9532,46.4545 -116.9428,46.4557 -116.9339,46.4568 -116.9257,46.4612 -116.9172,46.4657 -116.9114,46.4688</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 61.46km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-116.9114,46.4692 -116.9108,46.4692 -116.908,46.4712 -116.901,46.4712 -116.8936,46.473 -116.8865,46.477 -116.8775,46.4821 -116.8669,46.4834 -116.8573,46.4846 -116.8492,46.4894 -116.8416,46.4924 -116.8296,46.4917 -116.8219,46.4901 -116.8132,46.4882 -116.8044,46.4867 -116.7977,46.4832 -116.7898,46.4791 -116.7795,46.4814 -116.7687,46.4897 -116.7666,46.493 -116.7549,46.4999 -116.7453,46.5056 -116.7407,46.5079 -116.7266,46.5116 -116.7203,46.5121 -116.7131,46.5126 -116.7061,46.516 -116.6951,46.5216 -116.6882,46.5273 -116.684,46.5308 -116.6783,46.5318 -116.6623,46.5347 -116.6548,46.5358 -116.6481,46.5347 -116.6347,46.5358 -116.6306,46.5361 -116.6193,46.5349 -116.61,46.5339 -116.5995,46.5323 -116.5925,46.531 -116.5869,46.5295 -116.5747,46.5257 -116.5675,46.5235 -116.5584,46.5237 -116.551,46.5238 -116.5419,46.524 -116.5327,46.5242 -116.521,46.5245 -116.5135,46.5246 -116.5048,46.5235 -116.4985,46.5227 -116.4924,46.5227 -116.4808,46.5227 -116.4728,46.5227 -116.4636,46.5227 -116.4558,46.5227 -116.4459,46.5227 -116.4359,46.5227 -116.4279,46.5227 -116.4192,46.5227 -116.4127,46.5232 -116.4038,46.524 -116.3976,46.5245 -116.3929,46.528 -116.3848,46.528 -116.3745,46.528 -116.3673,46.5281</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 57.26km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-119.0204,47.9664 -119.0182,47.9642 -119.0183,47.9605 -119.0179,47.956 -119.0153,47.9459 -119.0137,47.9377 -119.0123,47.9283 -119.0041,47.9254 -118.9989,47.9236 -118.9948,47.9186 -118.9911,47.9142 -118.9866,47.9089 -118.9792,47.9074 -118.9715,47.9057 -118.964,47.9042 -118.9531,47.9019 -118.9482,47.9008 -118.9402,47.8991 -118.9337,47.8978 -118.9258,47.8961 -118.9191,47.8947 -118.9114,47.8931 -118.9043,47.8915 -118.896,47.8897 -118.8889,47.8882 -118.8811,47.8865 -118.873,47.8847 -118.8658,47.8832 -118.857,47.8813 -118.8481,47.8794 -118.8402,47.8776 -118.8324,47.876 -118.8253,47.8744 -118.8148,47.8721 -118.8057,47.8699 -118.7981,47.8678 -118.7909,47.8658 -118.7825,47.8634 -118.7716,47.8604 -118.7646,47.8585 -118.7569,47.8563 -118.747,47.8536 -118.738,47.8511 -118.7322,47.8495 -118.7259,47.8477 -118.7194,47.8459 -118.7101,47.8433 -118.7033,47.8412 -118.6972,47.8391 -118.6895,47.8364 -118.6816,47.8336 -118.6743,47.8311 -118.6681,47.8289 -118.6581,47.8254 -118.6503,47.8227 -118.6432,47.8202 -118.6361,47.8177 -118.6281,47.8149 -118.6203,47.8122 -118.6133,47.8097 -118.6077,47.8078 -118.6001,47.8051 -118.5921,47.8023 -118.5852,47.7999 -118.577,47.797 -118.5707,47.7948 -118.5647,47.7927 -118.5577,47.7902 -118.5486,47.787 -118.5406,47.7842 -118.5316,47.7809 -118.5236,47.7779 -118.5159,47.7751 -118.5086,47.7724 -118.5015,47.7698 -118.4928,47.7666 -118.4855,47.764 -118.4791,47.7616 -118.4719,47.759 -118.464,47.756 -118.4566,47.7533 -118.4467,47.7497 -118.4382,47.7466 -118.4314,47.7441 -118.425,47.7417 -118.4182,47.7392 -118.4111,47.7366 -118.4039,47.7339 -118.3962,47.7311 -118.3875,47.7312 -118.378,47.7312 -118.3691,47.7313 -118.3615,47.7313 -118.3528,47.7313 -118.3426,47.7314 -118.3317,47.7314 -118.3197,47.7315 -118.3103,47.7316 -118.3007,47.7316 -118.2931,47.7316 -118.2853,47.7317 -118.2748,47.7317 -118.2667,47.7317 -118.2567,47.7318 -118.2445,47.7318 -118.2392,47.7319 -118.2308,47.7319 -118.224,47.7319 -118.2161,47.732 -118.2081,47.732 -118.1958,47.732 -118.1873,47.7321 -118.1788,47.7321 -118.17,47.7321 -118.1618,47.7322 -118.153,47.7322 -118.1442,47.7322 -118.133,47.7323 -118.1208,47.7323 -118.1122,47.7323 -118.1049,47.7323 -118.0988,47.7324 -118.0917,47.7321 -118.0837,47.7318 -118.0747,47.7314 -118.0655,47.731 -118.057,47.7307 -118.0419,47.7302 -118.0311,47.7299 -118.0206,47.7297 -118.0139,47.7295 -118.0068,47.7294 -117.9988,47.7292 -117.9913,47.7296 -117.9813,47.7301 -117.9729,47.7306 -117.9673,47.7308 -117.9598,47.7308 -117.9508,47.7308 -117.944,47.7308 -117.9357,47.7309 -117.9273,47.7309 -117.9184,47.7308 -117.9099,47.7308 -117.902,47.7308 -117.8933,47.7308 -117.8857,47.7308 -117.8786,47.7325 -117.8691,47.7348 -117.8637,47.7361 -117.8561,47.7361 -117.8485,47.736 -117.8413,47.736 -117.8347,47.7359 -117.8254,47.7359 -117.8172,47.7358 -117.8095,47.7358 -117.7986,47.7357 -117.7886,47.7356 -117.7802,47.7356 -117.7719,47.7355 -117.7644,47.7355 -117.7567,47.7354 -117.7463,47.7354 -117.736,47.7353 -117.7269,47.7352 -117.7168,47.7351 -117.7076,47.7351 -117.7001,47.735 -117.6927,47.735 -117.6856,47.7349 -117.6798,47.7358 -117.6699,47.7374 -117.6604,47.739 -117.6519,47.7403 -117.6441,47.7416 -117.637,47.7427 -117.6267,47.7443 -117.618,47.7454 -117.6099,47.7457 -117.6029,47.7459 -117.5954,47.7461 -117.5862,47.7462 -117.5772,47.7463 -117.5678,47.7464 -117.5599,47.7465 -117.55,47.7466 -117.54,47.7477 -117.5316,47.7497 -117.5246,47.7513 -117.5133,47.7539 -117.505,47.7559 -117.4983,47.7574 -117.4911,47.7574 -117.4817,47.7575 -117.4706,47.7575 -117.4622,47.7574 -117.4531,47.7573 -117.4418,47.757 -117.4361,47.7569 -117.4316,47.7584 -117.4219,47.7579 -117.4124,47.7574 -117.4037,47.7573 -117.3962,47.7535 -117.3901,47.7507 -117.3842,47.748 -117.377,47.7462 -117.3743,47.7492</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 172.14km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-115.5892,47.4564 -115.5899,47.4564 -115.5967,47.4583 -115.6048,47.4607 -115.6134,47.4632 -115.6198,47.4642 -115.632,47.4644 -115.6383,47.4645 -115.6479,47.4646 -115.6571,47.4648 -115.6669,47.465 -115.6766,47.4651 -115.6878,47.4653 -115.694,47.4674 -115.705,47.4711 -115.7166,47.4751 -115.7224,47.477 -115.7281,47.4789 -115.735,47.4813 -115.743,47.484 -115.7539,47.4877 -115.7646,47.4903 -115.7747,47.4927 -115.7828,47.4947 -115.787,47.4957 -115.7982,47.4984 -115.8105,47.5014 -115.8169,47.5029 -115.824,47.5047 -115.8334,47.5069 -115.8455,47.5098 -115.8656,47.5166 -115.8708,47.5184 -115.875,47.5198 -115.8891,47.5245 -115.8999,47.5282 -115.907,47.5306 -115.9151,47.5334 -115.9313,47.5389 -115.9392,47.5415 -115.9528,47.5578 -115.9614,47.5681 -115.9692,47.5775 -115.9727,47.5817 -115.9811,47.5918 -115.9834,47.5945 -115.9906,47.6031 -115.996,47.6097 -116.0004,47.615 -116.0129,47.6214 -116.0217,47.6259 -116.0358,47.6331 -116.0381,47.6342 -116.052,47.6413 -116.0654,47.6482 -116.0711,47.6592 -116.089,47.6638 -116.0967,47.6658 -116.1078,47.6687 -116.1195,47.6717 -116.1325,47.6751 -116.1412,47.6773 -116.1542,47.6811 -116.161,47.6833 -116.1681,47.6856 -116.1769,47.6884 -116.1863,47.6915 -116.1897,47.6926 -116.2056,47.6978 -116.2084,47.6986 -116.2164,47.7013 -116.2272,47.7048 -116.2391,47.7086 -116.2441,47.7102 -116.2543,47.7135 -116.2603,47.7155 -116.273,47.7196 -116.2836,47.723 -116.2886,47.7246 -116.299,47.728 -116.3079,47.7308 -116.3183,47.7342 -116.3267,47.7369 -116.3366,47.7401 -116.3527,47.745 -116.36,47.7471 -116.3696,47.7499 -116.3787,47.7525 -116.383,47.7538 -116.3954,47.7574 -116.3997,47.7586 -116.4051,47.7602 -116.4181,47.7639 -116.4232,47.7654 -116.4307,47.7684 -116.4415,47.7726 -116.4526,47.7769 -116.4578,47.779 -116.4637,47.7813 -116.4798,47.7876 -116.483,47.7888 -116.4919,47.7923 -116.4991,47.7951 -116.506,47.7979 -116.5143,47.8016 -116.5195,47.8055 -116.5236,47.8085 -116.5288,47.8124 -116.5329,47.8154 -116.54,47.8207 -116.5433,47.8231 -116.5533,47.8305 -116.557,47.8332 -116.561,47.8362 -116.5679,47.8406 -116.5804,47.8422 -116.5934,47.8439 -116.6008,47.8448 -116.6122,47.8463 -116.6252,47.848 -116.6341,47.8491 -116.6512,47.8513 -116.664,47.8529 -116.6744,47.8543 -116.6814,47.8552 -116.6956,47.8561 -116.7044,47.8562 -116.7158,47.8564 -116.7244,47.8565 -116.738,47.8568 -116.7464,47.8569 -116.7553,47.8571 -116.7646,47.857 -116.774,47.8572 -116.7812,47.8574 -116.791,47.8576 -116.7978,47.8554 -116.8044,47.8511 -116.8111,47.8468 -116.8179,47.8424 -116.8247,47.838 -116.8299,47.8347 -116.8366,47.8303 -116.8433,47.826 -116.85,47.8217 -116.8572,47.817 -116.8636,47.8129 -116.87,47.8087 -116.8771,47.8041 -116.8842,47.8002 -116.892,47.7966 -116.8992,47.7933 -116.9071,47.7896 -116.9147,47.7861 -116.9223,47.7826 -116.9288,47.7796 -116.9365,47.776 -116.9441,47.7725 -116.9508,47.7693 -116.9592,47.7654 -116.9667,47.762 -116.9744,47.7584 -116.9816,47.7551 -116.9894,47.7514 -116.9968,47.748 -117.0047,47.7443 -117.0128,47.7405 -117.0204,47.737 -117.0281,47.7334 -117.0351,47.7302 -117.0418,47.727 -117.0484,47.724 -117.0562,47.7203 -117.0639,47.7186 -117.0732,47.7183 -117.0813,47.718 -117.0909,47.7177 -117.1008,47.7173 -117.1103,47.717 -117.1186,47.7167 -117.1271,47.7164 -117.1365,47.7161 -117.1439,47.7158 -117.1588,47.7159 -117.1743,47.7166 -117.1852,47.7171 -117.1941,47.7174 -117.2025,47.7178 -117.2138,47.7183 -117.2213,47.7186 -117.2277,47.7199 -117.2349,47.7228 -117.2422,47.7256 -117.2506,47.7289 -117.2577,47.7317 -117.2634,47.7339 -117.2713,47.7369 -117.2792,47.74 -117.2867,47.7439 -117.292,47.7466 -117.2998,47.7507 -117.307,47.7524 -117.3156,47.7522 -117.3247,47.7521 -117.3341,47.752 -117.3424,47.7519 -117.3515,47.7518 -117.3615,47.7518 -117.3661,47.7489 -117.3711,47.7477 -117.3743,47.7492</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 192.77km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-116.3672,46.5284 -116.3673,46.5283 -116.3745,46.5284 -116.3849,46.5285 -116.3929,46.5285 -116.393,46.5326 -116.393,46.5374 -116.3931,46.5437 -116.3931,46.5483 -116.3932,46.5539 -116.3933,46.5601 -116.3934,46.5657 -116.3964,46.5712 -116.4011,46.5764 -116.4041,46.5796 -116.408,46.5839 -116.4119,46.5882 -116.4152,46.5928 -116.4179,46.5986 -116.4217,46.6067 -116.4248,46.6133 -116.4272,46.6183 -116.43,46.6243 -116.4326,46.6299 -116.4355,46.6359 -116.4379,46.641 -116.4398,46.6452 -116.4435,46.6529 -116.4463,46.6589 -116.4486,46.6635 -116.4515,46.6695 -116.4543,46.6754 -116.4571,46.6808 -116.4612,46.6873 -116.4637,46.6914 -116.4656,46.6944 -116.4655,46.6982 -116.4652,46.7049 -116.4649,46.7132 -116.4647,46.7183 -116.4645,46.7238 -116.4643,46.73 -116.4637,46.7376 -116.4631,46.7441 -116.4626,46.7504 -116.4581,46.756 -116.4527,46.7627 -116.449,46.7673 -116.4446,46.7728 -116.4407,46.7776 -116.4366,46.7827 -116.4314,46.7876 -116.4282,46.7906 -116.4217,46.7966 -116.4163,46.8016 -116.4094,46.808 -116.4056,46.8116 -116.4001,46.8167 -116.3995,46.8218 -116.3987,46.8281 -116.3979,46.8349 -116.3973,46.8395 -116.3901,46.8428 -116.3835,46.8459 -116.3756,46.8517 -116.3711,46.8564 -116.3648,46.8629 -116.3598,46.8683 -116.3543,46.8746 -116.3489,46.8807 -116.3442,46.8861 -116.3401,46.8909 -116.336,46.8966 -116.3324,46.9015 -116.3263,46.9101 -116.3164,46.9136 -116.3085,46.9164 -116.2991,46.9197 -116.2911,46.9252 -116.2864,46.931 -116.282,46.9363 -116.2775,46.9418 -116.2738,46.9462 -116.2686,46.9532 -116.2656,46.9574 -116.2609,46.964 -116.2559,46.9712 -116.2524,46.976 -116.2474,46.9831 -116.2446,46.9881 -116.2412,46.9941 -116.2363,46.9996 -116.228,47.0047 -116.2216,47.0092 -116.2174,47.0122 -116.2115,47.0163 -116.205,47.0209 -116.1992,47.025 -116.1935,47.029 -116.1876,47.0331 -116.1824,47.0368 -116.1759,47.0414 -116.171,47.0448 -116.1647,47.0492 -116.1572,47.0545 -116.151,47.0589 -116.147,47.0627 -116.142,47.07 -116.1394,47.075 -116.1405,47.0798 -116.1428,47.0842 -116.1455,47.0894 -116.1475,47.0956 -116.1483,47.1012 -116.1491,47.1073 -116.1498,47.1125 -116.1472,47.1179 -116.1446,47.1236 -116.1406,47.1323 -116.1401,47.1371 -116.1393,47.1456 -116.1386,47.1521 -116.1376,47.1609 -116.1364,47.1699 -116.1344,47.1757 -116.1322,47.1818 -116.1309,47.1857 -116.1287,47.1918 -116.1272,47.1962 -116.1213,47.2037 -116.1138,47.207 -116.1073,47.2099 -116.1023,47.2121 -116.0947,47.2154 -116.0884,47.2182 -116.0817,47.2201 -116.0755,47.2215 -116.0651,47.2238 -116.0605,47.2248 -116.0508,47.2287 -116.0429,47.2318 -116.0383,47.238 -116.0343,47.2433 -116.0246,47.2547 -116.0216,47.2581 -116.0168,47.2634 -116.0122,47.2684 -116.0089,47.2721 -116.0046,47.2747 -115.9939,47.2736 -115.9863,47.2727 -115.9773,47.2718 -115.9653,47.2705 -115.9561,47.2695 -115.9512,47.2689 -115.9439,47.2682 -115.9315,47.2691 -115.9269,47.2775 -115.9221,47.2862 -115.9181,47.2935 -115.9128,47.3033 -115.9111,47.3064 -115.9055,47.3167 -115.8929,47.3297 -115.8899,47.3329 -115.8794,47.3437 -115.8753,47.348 -115.8704,47.3531 -115.8627,47.3611 -115.8589,47.365 -115.8558,47.3682 -115.8531,47.371 -115.8471,47.3748 -115.8399,47.3751 -115.8207,47.3759 -115.8146,47.3762 -115.8055,47.3789 -115.7993,47.3808 -115.7856,47.3876 -115.7698,47.386 -115.7575,47.3847 -115.7464,47.3871 -115.7327,47.3904 -115.7215,47.3933 -115.7101,47.4015 -115.7004,47.4033 -115.6896,47.4053 -115.6805,47.407 -115.6742,47.4082 -115.6631,47.407 -115.6581,47.4065 -115.6501,47.4056 -115.6388,47.4044 -115.6309,47.4066 -115.6221,47.4102 -115.6095,47.4156 -115.597,47.421 -115.5854,47.4261 -115.5819,47.4314 -115.5812,47.4357 -115.5821,47.4398 -115.5774,47.4466 -115.5745,47.4509 -115.5719,47.4548 -115.5746,47.4551 -115.5891,47.4556</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 155.63km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-115.5892,47.4564 -115.5835,47.4558 -115.573,47.4555 -115.5682,47.4601 -115.5657,47.464 -115.5643,47.4681 -115.5631,47.472 -115.5626,47.4739 -115.5624,47.4793 -115.5641,47.4865 -115.5665,47.4917 -115.5675,47.4959 -115.567,47.5011 -115.5658,47.5101 -115.564,47.516 -115.5614,47.5202 -115.5551,47.5301 -115.5531,47.5331 -115.5489,47.5361 -115.5424,47.5399 -115.5324,47.54 -115.5253,47.5455 -115.5171,47.5477 -115.5078,47.5502 -115.4993,47.5525 -115.4915,47.557 -115.4864,47.56 -115.4786,47.5628 -115.4722,47.5641 -115.463,47.5651 -115.4477,47.5678 -115.4393,47.57 -115.4328,47.5716 -115.4202,47.5704 -115.4134,47.5697 -115.4029,47.5734 -115.393,47.5746 -115.3819,47.5759 -115.3731,47.577 -115.3628,47.5774 -115.358,47.5774 -115.3482,47.5772 -115.3402,47.577 -115.3317,47.5769 -115.3232,47.5779 -115.3144,47.579 -115.3061,47.5822 -115.2994,47.5871 -115.2934,47.5915 -115.2857,47.5903 -115.2766,47.5888 -115.2675,47.5874 -115.2584,47.586 -115.2493,47.5845 -115.24,47.583 -115.231,47.5816 -115.217,47.5805 -115.1994,47.5791 -115.1914,47.5752 -115.1843,47.5723 -115.1772,47.5689 -115.173,47.5684 -115.1642,47.5641 -115.1562,47.5614 -115.1485,47.5588 -115.142,47.5553 -115.1353,47.5517 -115.127,47.5481 -115.1186,47.5452 -115.1103,47.5424 -115.1019,47.5395 -115.0937,47.5367 -115.0856,47.5339 -115.0774,47.5311 -115.0695,47.5284 -115.0616,47.5283 -115.0517,47.5281 -115.0429,47.528 -115.0343,47.5267 -115.0267,47.5244 -115.0192,47.5222 -115.0107,47.5196 -115.0022,47.5171 -114.9969,47.5155 -114.9884,47.513 -114.9798,47.5104 -114.9713,47.5079 -114.9629,47.5054 -114.9543,47.5028 -114.9458,47.5003 -114.9381,47.4996 -114.9314,47.5004 -114.9201,47.5017 -114.9114,47.5028 -114.9038,47.5037 -114.8923,47.5051 -114.884,47.5061 -114.8757,47.5071 -114.8644,47.5084 -114.8563,47.5094 -114.8493,47.5102 -114.8436,47.5131 -114.8372,47.5163 -114.8281,47.5169 -114.8195,47.5175 -114.8092,47.5182 -114.7999,47.5188 -114.7906,47.5194 -114.7828,47.52 -114.7735,47.5206 -114.7642,47.5212 -114.7548,47.5219 -114.7482,47.5224 -114.7385,47.5264 -114.7317,47.5291 -114.725,47.5319 -114.7189,47.5344 -114.7118,47.5373 -114.7069,47.5392 -114.6992,47.5424 -114.6902,47.546 -114.6816,47.5495 -114.6748,47.5523 -114.6657,47.556 -114.6594,47.5585 -114.6531,47.5611 -114.6466,47.5662 -114.6397,47.5716 -114.6294,47.5726 -114.6287,47.5759</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 107.16km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-115.5892,47.4564 -115.5835,47.4557 -115.5727,47.4555 -115.5656,47.4554 -115.5523,47.454 -115.5381,47.4526 -115.5265,47.4514 -115.5175,47.4499 -115.5098,47.4487 -115.4951,47.4463 -115.4823,47.4442 -115.4733,47.4427 -115.4619,47.4408 -115.4505,47.4389 -115.4433,47.4377 -115.4337,47.4362 -115.4226,47.4338 -115.4121,47.4309 -115.4028,47.4282 -115.3911,47.4249 -115.3834,47.4227 -115.3728,47.4197 -115.3636,47.4171 -115.3525,47.414 -115.3462,47.4122 -115.3397,47.4103 -115.3311,47.4078 -115.3202,47.4043 -115.3149,47.4026 -115.3053,47.3994 -115.2923,47.3952 -115.2825,47.392 -115.2698,47.3879 -115.2606,47.3849 -115.2433,47.383 -115.2345,47.3824 -115.2202,47.3815 -115.2057,47.3805 -115.198,47.38 -115.1816,47.3789 -115.1744,47.3784 -115.1562,47.3772 -115.1431,47.3739 -115.1336,47.3712 -115.1235,47.3683 -115.1086,47.364 -115.0898,47.3585 -115.077,47.3548 -115.0678,47.3525 -115.0564,47.3507 -115.0466,47.3491 -115.0357,47.3474 -115.0267,47.346 -115.0245,47.3388 -115.0228,47.3332 -115.0153,47.3265 -115.0028,47.3231 -114.9969,47.3209 -114.9936,47.3157 -114.984,47.3008 -114.9773,47.2904 -114.9701,47.2791 -114.9657,47.2723 -114.9607,47.27 -114.9523,47.2661 -114.9459,47.2632 -114.9335,47.2575 -114.9238,47.253 -114.9176,47.2502 -114.9056,47.2468 -114.895,47.2439 -114.8882,47.242 -114.8728,47.2377 -114.8685,47.2365 -114.853,47.2322 -114.8447,47.2299 -114.8335,47.2268 -114.8221,47.2186 -114.8159,47.2141 -114.8034,47.2051 -114.7989,47.2019 -114.7865,47.1929 -114.7804,47.1885 -114.768,47.1795 -114.7634,47.1762 -114.7584,47.1696 -114.7501,47.1586 -114.7439,47.1505 -114.7419,47.1478 -114.7381,47.1428 -114.7239,47.1239 -114.7089,47.1154 -114.6986,47.109 -114.6897,47.1022 -114.6824,47.0966 -114.6757,47.0915 -114.6644,47.0828 -114.6555,47.0787 -114.6395,47.0714 -114.6251,47.0649 -114.6125,47.0591 -114.5944,47.0575 -114.5773,47.0559 -114.5595,47.0543 -114.5544,47.0538 -114.5364,47.0522 -114.5184,47.0505 -114.5099,47.0498 -114.4973,47.0486 -114.4926,47.0482 -114.4846,47.0474 -114.4755,47.0466 -114.4644,47.0397 -114.4604,47.0373 -114.4542,47.0334 -114.4494,47.0304 -114.4413,47.0254 -114.43,47.0184 -114.4217,47.0133 -114.4065,47.0092 -114.3976,47.008 -114.3882,47.0069 -114.3779,47.0056 -114.3696,46.9992 -114.3661,46.9966 -114.3567,46.9895 -114.3478,46.9828 -114.341,46.9776 -114.3355,46.9734 -114.321,46.9624 -114.3148,46.9578 -114.3101,46.9542 -114.3025,46.9484 -114.2911,46.9398 -114.2846,46.9342 -114.2775,46.9237 -114.2732,46.9173 -114.2662,46.9067 -114.2626,46.9014 -114.256,46.8915 -114.2503,46.883 -114.2453,46.8755 -114.2411,46.8692 -114.2373,46.8635 -114.2328,46.8568 -114.2234,46.8427 -114.2196,46.837 -114.2162,46.8318 -114.209,46.8211 -114.2027,46.8116 -114.1989,46.8059 -114.1889,46.8057 -114.1708,46.8054 -114.1589,46.8051 -114.1512,46.805 -114.1392,46.8048 -114.1269,46.8045 -114.1197,46.8031 -114.1054,46.8003 -114.0933,46.7979 -114.0846,46.7962 -114.0758,46.7944 -114.067,46.7926 -114.061,46.7891 -114.0552,46.7857 -114.048,46.7813 -114.0408,46.777 -114.0339,46.7729 -114.0211,46.7653 -114.0124,46.7601 -114.0053,46.7564 -113.9938,46.751 -113.9854,46.7471 -113.9778,46.7435 -113.9669,46.7384 -113.9538,46.7322 -113.9455,46.7284 -113.9329,46.7224 -113.9243,46.7184 -113.914,46.7135 -113.9044,46.709 -113.8949,46.7045 -113.89,46.7022 -113.8789,46.7024 -113.8665,46.7026 -113.8579,46.7028 -113.8479,46.703 -113.8331,46.7032 -113.8218,46.7034 -113.8049,46.7037 -113.7953,46.7039 -113.7858,46.7041 -113.7689,46.7043 -113.7615,46.7045 -113.7473,46.7047 -113.7404,46.7048 -113.7294,46.705 -113.7178,46.7052 -113.7086,46.7054 -113.6983,46.7055 -113.6861,46.7057 -113.6623,46.706 -113.6479,46.7058 -113.6414,46.7057 -113.6256,46.7055 -113.62,46.7031 -113.6143,46.6982 -113.6093,46.694 -113.601,46.687 -113.5945,46.6815 -113.5864,46.6746 -113.5814,46.6703 -113.5755,46.6653 -113.5646,46.6561 -113.5596,46.6518 -113.5501,46.6437 -113.541,46.636 -113.535,46.6334 -113.5208,46.6287 -113.5104,46.6253 -113.5023,46.6226 -113.4895,46.6183 -113.4793,46.615 -113.4693,46.6061 -113.4652,46.6025 -113.4562,46.5945 -113.4485,46.5877 -113.4403,46.5804 -113.4338,46.5746 -113.4296,46.5709 -113.4225,46.5651 -113.4098,46.5564 -113.4035,46.5521 -113.3918,46.5441 -113.3818,46.5373 -113.3748,46.5324 -113.3647,46.5255 -113.3603,46.5225 -113.3501,46.5155 -113.3417,46.5098 -113.3317,46.5029 -113.3249,46.4983 -113.3194,46.4945 -113.3124,46.4897 -113.3033,46.4834 -113.2948,46.4772 -113.2886,46.4723 -113.2769,46.4629 -113.2727,46.4594 -113.2662,46.4542 -113.2604,46.4496 -113.2526,46.4433 -113.2463,46.4382 -113.2408,46.4338 -113.2339,46.4283 -113.2174,46.4271 -113.2032,46.426 -113.1945,46.4253 -113.1756,46.4278 -113.1658,46.4311 -113.161,46.4327 -113.1516,46.4357 -113.1397,46.4397 -113.1329,46.4419 -113.1189,46.4465 -113.1094,46.4496 -113.1012,46.4523 -113.0914,46.4555 -113.0821,46.4591 -113.0735,46.4629 -113.0646,46.4668 -113.0569,46.4702 -113.0499,46.4724 -113.0393,46.4754 -113.03,46.4778 -113.0215,46.4801 -113.0111,46.4828 -113.0043,46.4846 -112.9883,46.4888 -112.9811,46.4907 -112.9754,46.4922 -112.9621,46.4957 -112.9486,46.4992 -112.9411,46.5012 -112.9311,46.5039 -112.9245,46.5057 -112.9154,46.5082 -112.9057,46.5108 -112.8993,46.5124 -112.8919,46.5139 -112.888,46.5161</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 305.7km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-115.5892,47.4564 -115.5835,47.4553 -115.5728,47.4552 -115.5656,47.4553 -115.5523,47.4539 -115.5381,47.4525 -115.5265,47.4513 -115.5175,47.4498 -115.5098,47.4486 -115.4951,47.4462 -115.4823,47.4441 -115.4733,47.4426 -115.4619,47.4407 -115.4505,47.4389 -115.4433,47.4377 -115.4337,47.4361 -115.4226,47.4338 -115.4121,47.4308 -115.4028,47.4282 -115.3911,47.4248 -115.3834,47.4227 -115.3728,47.4197 -115.3636,47.417 -115.3525,47.4139 -115.3462,47.4121 -115.3397,47.4102 -115.3311,47.4078 -115.3202,47.4042 -115.3149,47.4025 -115.3053,47.3994 -115.29,47.3944 -115.2767,47.3901 -115.2606,47.3848 -115.2396,47.3827 -115.2202,47.3814 -115.2057,47.3804 -115.198,47.3799 -115.1816,47.3788 -115.1643,47.3777 -115.1538,47.377 -115.1412,47.3733 -115.1273,47.3693 -115.1106,47.3645 -115.0922,47.3591 -115.0802,47.3556 -115.0709,47.3529 -115.0613,47.3514 -115.0504,47.3497 -115.042,47.3483 -115.031,47.3466 -115.0256,47.3422 -115.0238,47.3365 -115.022,47.3304 -115.0125,47.3256 -114.9987,47.3215 -114.9953,47.3183 -114.9887,47.3081 -114.9781,47.2916 -114.9746,47.2861 -114.968,47.2759 -114.9628,47.2709 -114.954,47.2669 -114.9494,47.2647 -114.9355,47.2583 -114.9282,47.255 -114.9224,47.2523 -114.9145,47.2492 -114.8991,47.2449 -114.8914,47.2428 -114.8749,47.2382 -114.8713,47.2372 -114.8553,47.2328 -114.8487,47.231 -114.8351,47.2272 -114.8258,47.2212 -114.8184,47.2159 -114.8087,47.2089 -114.8003,47.2028 -114.796,47.1997 -114.7835,47.1906 -114.7786,47.1871 -114.7661,47.1781 -114.7603,47.1721 -114.7528,47.1621 -114.7482,47.156 -114.7431,47.1492 -114.7395,47.1445 -114.7313,47.1336 -114.7141,47.1182 -114.7008,47.1107 -114.6934,47.105 -114.6866,47.0997 -114.6793,47.0942 -114.6711,47.0879 -114.6618,47.0816 -114.644,47.0734 -114.6331,47.0685 -114.6144,47.0599 -114.5969,47.0576 -114.5806,47.0562 -114.5713,47.0553 -114.5576,47.054 -114.553,47.0536 -114.5228,47.0509 -114.5164,47.0503 -114.5081,47.0495 -114.4946,47.0483 -114.4879,47.0477 -114.4809,47.047 -114.4743,47.0458 -114.4632,47.0389 -114.4586,47.036 -114.4526,47.0323 -114.4453,47.0278 -114.4393,47.0241 -114.4259,47.0158 -114.4173,47.0104 -114.403,47.0086 -114.3933,47.0074 -114.3826,47.0061 -114.3734,47.002 -114.3672,46.9973 -114.3567,46.9894 -114.3478,46.9827 -114.341,46.9775 -114.3355,46.9734 -114.321,46.9624 -114.3148,46.9577 -114.3101,46.9541 -114.3025,46.9483 -114.2911,46.9397 -114.2846,46.9342 -114.2775,46.9236 -114.2733,46.9172 -114.2662,46.9066 -114.2626,46.9013 -114.256,46.8914 -114.2503,46.883 -114.2453,46.8754 -114.2411,46.8691 -114.2373,46.8634 -114.2328,46.8567 -114.2234,46.8426 -114.2196,46.8369 -114.2162,46.8317 -114.208,46.8195 -114.2005,46.8082 -114.1906,46.8057 -114.1759,46.8054 -114.1669,46.8052 -114.1538,46.805 -114.1482,46.8049 -114.1304,46.8045 -114.1244,46.804 -114.1122,46.8016 -114.1015,46.7994 -114.0892,46.797 -114.0803,46.7952 -114.0718,46.7935 -114.0649,46.7913 -114.058,46.7872 -114.0512,46.7832 -114.0435,46.7786 -114.0375,46.775 -114.0272,46.7689 -114.0174,46.763 -114.0097,46.7584 -114.0014,46.7545 -113.9913,46.7498 -113.9813,46.7451 -113.9679,46.7388 -113.9564,46.7334 -113.9492,46.73 -113.9434,46.7273 -113.9319,46.7219 -113.9223,46.7174 -113.9112,46.7121 -113.897,46.7055 -113.8922,46.7032 -113.884,46.7022 -113.8752,46.7024 -113.8613,46.7027 -113.8529,46.7028 -113.8408,46.703 -113.83,46.7032 -113.8179,46.7034 -113.8014,46.7037 -113.7884,46.7039 -113.7792,46.7041 -113.7647,46.7043 -113.7537,46.7045 -113.7447,46.7047 -113.7327,46.7049 -113.7266,46.705 -113.7151,46.7052 -113.7013,46.7054 -113.6902,46.7056 -113.6668,46.706 -113.6552,46.7058 -113.6426,46.7056 -113.6288,46.7054 -113.6228,46.7054 -113.6175,46.7009 -113.6118,46.696 -113.6065,46.6916 -113.5968,46.6834 -113.5914,46.6788 -113.5836,46.6721 -113.5755,46.6652 -113.5646,46.656 -113.5596,46.6517 -113.5501,46.6436 -113.541,46.6359 -113.535,46.6333 -113.5208,46.6286 -113.5104,46.6252 -113.5023,46.6225 -113.4895,46.6183 -113.4793,46.6149 -113.4693,46.606 -113.4652,46.6024 -113.4562,46.5944 -113.4485,46.5876 -113.4403,46.5803 -113.4338,46.5745 -113.4297,46.5708 -113.4225,46.565 -113.4098,46.5563 -113.4035,46.552 -113.3918,46.544 -113.3818,46.5372 -113.3748,46.5324 -113.3647,46.5255 -113.3603,46.5224 -113.3501,46.5155 -113.3417,46.5097 -113.3317,46.5028 -113.3249,46.4982 -113.3194,46.4944 -113.3124,46.4896 -113.3033,46.4834 -113.2948,46.4771 -113.2886,46.4722 -113.2769,46.4628 -113.2727,46.4594 -113.2662,46.4542 -113.2604,46.4495 -113.2526,46.4433 -113.2463,46.4382 -113.239,46.4324 -113.2206,46.4272 -113.2068,46.4262 -113.1945,46.4252 -113.1756,46.4278 -113.1658,46.431 -113.161,46.4326 -113.1516,46.4356 -113.1397,46.4396 -113.1329,46.4418 -113.1189,46.4464 -113.1094,46.4495 -113.1012,46.4522 -113.0914,46.4555 -113.0821,46.459 -113.0735,46.4628 -113.0646,46.4667 -113.0569,46.4701 -113.0499,46.4723 -113.0393,46.4753 -113.03,46.4778 -113.0215,46.48 -113.0111,46.4827 -113.0043,46.4845 -112.9883,46.4887 -112.9811,46.4906 -112.9754,46.4921 -112.9621,46.4956 -112.9486,46.4992 -112.9411,46.5011 -112.9311,46.5038 -112.9245,46.5056 -112.9154,46.5081 -112.9057,46.5107 -112.8993,46.5123 -112.8919,46.5138 -112.888,46.5161</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>500kV --- AC --- 305.74km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-108.8517,46.0518 -108.8588,46.0522 -108.9054,46.0529 -108.9476,46.0535 -109.006,46.0674 -109.0199,46.0718 -109.0885,46.0891 -109.1271,46.108 -109.1535,46.1159 -109.2048,46.1201 -109.2425,46.1218 -109.2516,46.1318 -109.3022,46.132 -109.3321,46.1377 -109.3641,46.1411 -109.4116,46.1462 -109.4497,46.1582 -109.4873,46.1726 -109.529,46.1849 -109.5768,46.1995 -109.6131,46.2134 -109.6397,46.2184 -109.7083,46.2349 -109.7695,46.2538 -109.8019,46.262 -109.8631,46.2711 -109.8989,46.2759 -109.9376,46.2847 -110.0146,46.2948 -110.0445,46.2993 -110.1063,46.3025 -110.1618,46.3052 -110.1996,46.3064 -110.2514,46.3225 -110.3012,46.329 -110.3592,46.3557 -110.4111,46.3595 -110.4563,46.36 -110.4963,46.3495 -110.5113,46.3432 -110.5332,46.3431 -110.5563,46.3513 -110.5641,46.3573 -110.576,46.3571 -110.6168,46.3559 -110.6819,46.3535 -110.7385,46.3328 -110.7985,46.3251 -110.8329,46.3199 -110.8576,46.3105 -110.8901,46.3026 -110.9467,46.2824 -110.9979,46.2642 -111.0667,46.2516 -111.0976,46.2526 -111.1578,46.2563 -111.2083,46.2661 -111.264,46.2693 -111.3057,46.2783 -111.3291,46.2705 -111.3595,46.2599 -111.3776,46.2574 -111.4277,46.2535 -111.4692,46.254 -111.475,46.2519 -111.4798,46.2495 -111.4874,46.2461 -111.4953,46.2426 -111.5038,46.2416 -111.5124,46.2407 -111.5187,46.2377 -111.5257,46.2344 -111.5335,46.2306 -111.5393,46.2279 -111.5465,46.2244 -111.5567,46.2196 -111.5668,46.2147 -111.5738,46.2114 -111.5808,46.2099 -111.5899,46.21 -111.5982,46.21 -111.6071,46.2099 -111.6162,46.2099 -111.6252,46.2099 -111.6342,46.2099 -111.641,46.208 -111.6452,46.2057 -111.6522,46.2017 -111.6595,46.1976 -111.6661,46.1939 -111.6757,46.1885 -111.6826,46.1835 -111.6894,46.1787 -111.6949,46.1748 -111.7,46.1712 -111.7094,46.1673 -111.7176,46.1659 -111.7282,46.1641 -111.7378,46.1624 -111.7446,46.1606 -111.7562,46.1595 -111.7653,46.1598 -111.7757,46.16 -111.7852,46.1603 -111.7975,46.1606 -111.8076,46.1608 -111.818,46.1611 -111.8241,46.1612 -111.832,46.1658 -111.8383,46.1696 -111.8471,46.1747 -111.8539,46.1787 -111.8608,46.1828 -111.8684,46.1872 -111.875,46.1897 -111.8813,46.1909 -111.8909,46.1928 -111.9018,46.195 -111.9124,46.1971 -111.9222,46.1991 -111.9316,46.201 -111.938,46.2036 -111.9467,46.207 -111.9538,46.2098 -111.9592,46.2133 -111.9668,46.2182 -111.9737,46.2227 -111.9813,46.2276 -111.988,46.2319 -111.9938,46.2356 -111.9995,46.2393 -112.0076,46.2422 -112.0157,46.245 -112.0233,46.2477 -112.0309,46.2522 -112.0365,46.2575 -112.0456,46.266 -112.0489,46.2692 -112.0511,46.2746 -112.054,46.2816 -112.0573,46.2897 -112.0605,46.2974 -112.0644,46.307 -112.0672,46.314 -112.0696,46.3199 -112.0755,46.3281 -112.0802,46.3318 -112.088,46.3379 -112.0966,46.3355 -112.107,46.3326 -112.1193,46.3291 -112.1302,46.3261 -112.1409,46.324 -112.1496,46.323 -112.1556,46.322 -112.1657,46.32 -112.1737,46.3184 -112.1793,46.3178 -112.1913,46.317 -112.1985,46.3166 -112.2063,46.3161 -112.2187,46.3153 -112.2225,46.3151 -112.2286,46.3163 -112.2367,46.3179 -112.2459,46.3197 -112.2542,46.3204 -112.2587,46.3195 -112.2705,46.317 -112.2743,46.3163 -112.2793,46.3142 -112.2855,46.3117 -112.2926,46.3088 -112.2984,46.3064 -112.3051,46.3037 -112.3136,46.3002 -112.3202,46.2975 -112.3264,46.2949 -112.3351,46.2909 -112.3427,46.2874 -112.3477,46.2851 -112.3531,46.2826 -112.3611,46.2789 -112.3699,46.2749 -112.3762,46.272 -112.3839,46.2685 -112.3891,46.2673 -112.3995,46.2659 -112.4059,46.2649 -112.4157,46.2628 -112.4232,46.2612 -112.4298,46.2605 -112.4379,46.2614 -112.448,46.2626 -112.4523,46.2631 -112.4595,46.264 -112.4666,46.2648 -112.4728,46.2655 -112.4845,46.2669 -112.4926,46.2678 -112.4984,46.2683 -112.5076,46.2686 -112.5174,46.269 -112.5295,46.2695 -112.5379,46.2698 -112.5433,46.2705 -112.5519,46.2721 -112.5582,46.2733 -112.5658,46.2747 -112.5729,46.276 -112.584,46.2781 -112.5917,46.2795 -112.5948,46.2838 -112.5992,46.29 -112.6036,46.296 -112.6079,46.302 -112.6043,46.3059 -112.6014,46.3091 -112.5955,46.3158 -112.5919,46.3204 -112.5891,46.324 -112.5868,46.3271 -112.5821,46.3331 -112.5821,46.3426 -112.5842,46.3488 -112.5859,46.3535 -112.5877,46.3592 -112.5899,46.3677 -112.5916,46.3739 -112.5933,46.3805 -112.5951,46.3872 -112.5974,46.396 -112.5973,46.4015 -112.5971,46.4067 -112.5969,46.4143 -112.5987,46.4188 -112.6046,46.4246 -112.6092,46.4291 -112.6148,46.4346 -112.6204,46.4401 -112.628,46.4476 -112.6332,46.4527 -112.6382,46.4576 -112.6453,46.4645 -112.6506,46.4698 -112.6563,46.4753 -112.6621,46.4801 -112.6703,46.487 -112.6809,46.4959 -112.6869,46.5009 -112.6939,46.5067 -112.6991,46.5111 -112.7066,46.5128 -112.7154,46.5128 -112.7241,46.5128 -112.7333,46.5128 -112.7422,46.5128 -112.7513,46.5128 -112.7594,46.5127 -112.7692,46.5127 -112.7754,46.5081 -112.7832,46.5023 -112.7894,46.4976 -112.7939,46.4947 -112.8034,46.4902 -112.8102,46.487 -112.8157,46.489 -112.8234,46.4918 -112.8359,46.4963 -112.8436,46.4991 -112.8512,46.5018 -112.8616,46.5056 -112.8705,46.5104 -112.8802,46.5155 -112.885,46.5165</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BPA-NWE</name><description>500kV --- AC --- 443.06km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-108.8517,46.0518 -108.8588,46.0518 -108.9056,46.0525 -108.9841,46.0586 -109.0114,46.0687 -109.0625,46.0822 -109.1041,46.0926 -109.1536,46.1156 -109.1931,46.1172 -109.2188,46.1201 -109.244,46.1217 -109.2519,46.1314 -109.3022,46.1316 -109.3322,46.1373 -109.364,46.1407 -109.4117,46.1458 -109.4499,46.1578 -109.4875,46.1722 -109.5303,46.185 -109.5771,46.1991 -109.6275,46.2165 -109.6509,46.2208 -109.7093,46.2348 -109.7871,46.2601 -109.834,46.2649 -109.8898,46.2743 -109.9202,46.2804 -109.9497,46.2858 -110.0306,46.2973 -110.0902,46.3039 -110.124,46.3063 -110.1665,46.3049 -110.2365,46.3223 -110.285,46.3214 -110.3277,46.3466 -110.3852,46.3572 -110.4562,46.3596 -110.496,46.3492 -110.5111,46.3428 -110.5334,46.3428 -110.5565,46.351 -110.5678,46.3579 -110.5867,46.3564 -110.6481,46.3543 -110.7064,46.3442 -110.7601,46.3245 -110.8199,46.3248 -110.8785,46.305 -110.9157,46.293 -110.9705,46.2735 -111.0245,46.2546 -111.0766,46.2504 -111.1319,46.26 -111.1723,46.2656 -111.2275,46.2688 -111.2852,46.2735 -111.3139,46.2752 -111.3416,46.2629 -111.3679,46.2583 -111.3969,46.2567 -111.4327,46.2529 -111.4692,46.2535 -111.475,46.2518 -111.4798,46.2494 -111.4874,46.246 -111.4953,46.2425 -111.5038,46.2416 -111.5124,46.2406 -111.5187,46.2376 -111.5257,46.2343 -111.5335,46.2306 -111.5393,46.2278 -111.5465,46.2243 -111.5567,46.2195 -111.5668,46.2146 -111.5738,46.2113 -111.5808,46.2099 -111.5899,46.2099 -111.5982,46.2099 -111.6071,46.2099 -111.6162,46.2098 -111.6252,46.2098 -111.6342,46.2098 -111.641,46.208 -111.6452,46.2056 -111.6522,46.2016 -111.6595,46.1975 -111.6661,46.1938 -111.6757,46.1884 -111.6826,46.1835 -111.6894,46.1786 -111.6949,46.1747 -111.7,46.1711 -111.7094,46.1672 -111.7176,46.1658 -111.7282,46.164 -111.7378,46.1624 -111.7446,46.1605 -111.7562,46.1595 -111.7653,46.1597 -111.7757,46.1599 -111.7852,46.1602 -111.7975,46.1605 -111.8076,46.1607 -111.818,46.161 -111.8241,46.1611 -111.832,46.1658 -111.8383,46.1695 -111.8471,46.1747 -111.8539,46.1786 -111.8608,46.1827 -111.8684,46.1871 -111.875,46.1896 -111.8813,46.1908 -111.8909,46.1927 -111.9018,46.1949 -111.9124,46.197 -111.9222,46.199 -111.9316,46.2009 -111.938,46.2035 -111.9467,46.2069 -111.9538,46.2098 -111.9592,46.2133 -111.9668,46.2182 -111.9737,46.2226 -111.9813,46.2275 -111.988,46.2318 -111.9938,46.2356 -111.9995,46.2392 -112.0076,46.2421 -112.0157,46.2449 -112.0233,46.2476 -112.0309,46.2521 -112.0365,46.2574 -112.0456,46.266 -112.0489,46.2691 -112.0511,46.2745 -112.054,46.2815 -112.0573,46.2896 -112.0605,46.2974 -112.0644,46.3069 -112.0672,46.3139 -112.0696,46.3198 -112.0755,46.328 -112.0802,46.3317 -112.088,46.3379 -112.0966,46.3354 -112.107,46.3325 -112.1193,46.3291 -112.1302,46.326 -112.1409,46.324 -112.1496,46.3229 -112.1556,46.3219 -112.1657,46.3199 -112.1737,46.3183 -112.1793,46.3177 -112.1913,46.3169 -112.1985,46.3165 -112.2063,46.316 -112.2187,46.3152 -112.2225,46.315 -112.2286,46.3162 -112.2367,46.3178 -112.2459,46.3196 -112.2542,46.3203 -112.2587,46.3194 -112.2705,46.317 -112.2743,46.3162 -112.2793,46.3142 -112.2855,46.3116 -112.2926,46.3087 -112.2984,46.3064 -112.3051,46.3036 -112.3136,46.3001 -112.3202,46.2975 -112.3264,46.2948 -112.3351,46.2908 -112.3427,46.2873 -112.3477,46.285 -112.3531,46.2825 -112.3611,46.2788 -112.3699,46.2748 -112.3762,46.2719 -112.3839,46.2684 -112.3891,46.2672 -112.3995,46.2659 -112.4059,46.2648 -112.4157,46.2627 -112.4232,46.2611 -112.4298,46.2604 -112.4379,46.2614 -112.448,46.2626 -112.4523,46.2631 -112.4595,46.2639 -112.4666,46.2647 -112.4728,46.2655 -112.4845,46.2668 -112.4926,46.2678 -112.4984,46.2682 -112.5076,46.2686 -112.5174,46.2689 -112.5295,46.2694 -112.5379,46.2697 -112.5433,46.2704 -112.5519,46.272 -112.5582,46.2732 -112.5658,46.2746 -112.5729,46.2759 -112.584,46.278 -112.5917,46.2794 -112.5948,46.2837 -112.5992,46.2899 -112.6036,46.2959 -112.6079,46.3019 -112.6043,46.3058 -112.6014,46.309 -112.5955,46.3158 -112.5919,46.3204 -112.5891,46.324 -112.5868,46.327 -112.5821,46.3331 -112.5821,46.3426 -112.5842,46.3487 -112.5859,46.3534 -112.5877,46.3591 -112.5899,46.3676 -112.5916,46.3738 -112.5933,46.3804 -112.5951,46.3871 -112.5974,46.3959 -112.5973,46.4014 -112.5971,46.4066 -112.5969,46.4142 -112.5987,46.4188 -112.6046,46.4245 -112.6092,46.429 -112.6148,46.4346 -112.6204,46.44 -112.628,46.4475 -112.6332,46.4526 -112.6382,46.4575 -112.6453,46.4645 -112.6506,46.4697 -112.6563,46.4752 -112.6621,46.48 -112.6703,46.487 -112.6809,46.4958 -112.6869,46.5008 -112.6939,46.5067 -112.6991,46.511 -112.7066,46.5127 -112.7154,46.5127 -112.7241,46.5127 -112.7333,46.5127 -112.7422,46.5127 -112.7513,46.5127 -112.7594,46.5127 -112.7692,46.5127 -112.7754,46.508 -112.7832,46.5022 -112.7894,46.4976 -112.7939,46.4947 -112.8034,46.4902 -112.8102,46.4869 -112.8157,46.4889 -112.8234,46.4917 -112.8359,46.4962 -112.8436,46.499 -112.8512,46.5018 -112.8616,46.5055 -112.8705,46.5103 -112.8802,46.5155 -112.8848,46.5163</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BPA-NWE</name><description>500kV --- AC --- 443.08km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-108.8517,46.0518 -108.8462,46.0532 -108.8438,46.07 -108.8397,46.0798 -108.8032,46.0955 -108.7617,46.0638 -108.7323,46.0527 -108.6986,46.0527 -108.6686,46.0611 -108.6141,46.0604 -108.5532,46.0597 -108.4724,46.0665 -108.4212,46.0725 -108.3742,46.0796 -108.3085,46.0895 -108.2533,46.0886 -108.2062,46.0849 -108.1553,46.0803 -108.1093,46.0761 -108.0392,46.074 -108.0059,46.0737 -107.9801,46.077 -107.9535,46.0757 -107.9179,46.0769 -107.8836,46.0789 -107.8635,46.0677 -107.8635,46.0491 -107.8307,46.0419 -107.8167,46.0349 -107.7981,46.0297 -107.7841,46.0266 -107.7639,46.024 -107.7412,46.019 -107.7147,46.0208 -107.6762,46.0135 -107.6303,46.0031 -107.5898,45.9937 -107.564,45.9849 -107.5439,45.9795 -107.5171,45.9734 -107.4857,45.9685 -107.4561,45.9686 -107.4208,45.965 -107.404,45.9615 -107.3679,45.9572 -107.3383,45.9572 -107.2926,45.9515 -107.2666,45.9585 -107.2333,45.9585 -107.1938,45.9584 -107.1555,45.9575 -107.1371,45.9561 -107.0925,45.9536 -107.0158,45.9547 -106.9727,45.9558 -106.9627,45.9543 -106.9162,45.9443 -106.85,45.9417 -106.7884,45.9393 -106.7527,45.9327 -106.6895,45.9123 -106.6667,45.9086 -106.6473,45.9021 -106.6267,45.8995 -106.6122,45.8941 -106.6128,45.8911</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NORTHWESTERN ENERGY</name><description>500kV --- AC --- 233.99km --- http://www.oasis.oati.com/PPW/PPWdocs/Transmission_Network_Diagram.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-108.8517,46.0518 -108.834,46.0526 -108.8014,46.0546 -108.7798,46.0524 -108.7322,46.0523 -108.6984,46.0523 -108.6686,46.0607 -108.6141,46.06 -108.5532,46.0593 -108.4724,46.0662 -108.421,46.0722 -108.374,46.0793 -108.3192,46.0876 -108.2797,46.0902 -108.2279,46.0862 -108.1819,46.0824 -108.1321,46.0777 -108.0755,46.0736 -108.0241,46.0736 -107.9942,46.0732 -107.9696,46.0761 -107.9325,46.0742 -107.9047,46.0785 -107.8683,46.0699 -107.864,46.049 -107.8505,46.0422 -107.8209,46.0381 -107.8027,46.0299 -107.7697,46.0244 -107.7488,46.0199 -107.7403,46.0186 -107.6995,46.0224 -107.6518,46.0076 -107.6109,45.9982 -107.5772,45.989 -107.5589,45.9832 -107.5354,45.9747 -107.5029,45.9683 -107.4562,45.9682 -107.4209,45.9646 -107.4045,45.9612 -107.3682,45.9568 -107.3383,45.9568 -107.2925,45.951 -107.2664,45.9581 -107.2347,45.9581 -107.1938,45.958 -107.1554,45.9571 -107.1371,45.9557 -107.1184,45.9553 -107.0836,45.9525 -106.9854,45.9551 -106.9666,45.9547 -106.9472,45.9505 -106.8998,45.9403 -106.8172,45.9421 -106.7657,45.9364 -106.722,45.9224 -106.6704,45.909 -106.6596,45.9057 -106.6351,45.9017 -106.6146,45.8951 -106.6128,45.892</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NORTHWESTERN ENERGY</name><description>500kV --- AC --- 229.66km --- http://www.oasis.oati.com/PPW/PPWdocs/Transmission_Network_Diagram.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-119.0478,43.6676 -119.0348,43.6691 -118.9609,43.6725 -118.9023,43.6714 -118.8612,43.671 -118.8455,43.6716 -118.8221,43.6717 -118.7837,43.6737 -118.7176,43.673 -118.6178,43.6574 -118.5472,43.6376 -118.4828,43.6261 -118.4452,43.6261 -118.3751,43.6158 -118.2874,43.6005 -118.2545,43.5735 -118.2169,43.5771 -118.1299,43.5726 -118.0886,43.5685 -117.9791,43.564 -117.8816,43.5675 -117.7776,43.5724 -117.7176,43.5844 -117.6686,43.5912 -117.5704,43.5927 -117.5002,43.6107 -117.4614,43.6236 -117.4414,43.6311 -117.4116,43.6422 -117.3828,43.653 -117.3593,43.6607 -117.3384,43.6685 -117.3048,43.6759 -117.2779,43.6695 -117.2548,43.6676 -117.2173,43.6534 -117.1853,43.6406 -117.1344,43.6175 -117.1078,43.6068 -117.0728,43.5929 -117.034,43.5656 -117.0059,43.5485 -116.9715,43.5308 -116.931,43.5082 -116.8833,43.4813 -116.8234,43.4472 -116.7742,43.4256 -116.7131,43.3872 -116.692,43.3696 -116.6704,43.3444 -116.663,43.3503</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFICORP</name><description>500kV --- AC --- 251.27km --- http://www.oasis.oati.com/PPW/PPWdocs/Transmission_Network_Diagram.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-116.663,43.3503 -116.6701,43.344 -116.6562,43.3277 -116.6305,43.3166 -116.5773,43.3044 -116.5493,43.3045 -116.4979,43.3039 -116.4798,43.309 -116.4537,43.3207 -116.4156,43.3394 -116.3888,43.348 -116.3364,43.3648 -116.3098,43.3718 -116.2334,43.3719 -116.1417,43.3719 -116.0252,43.3716 -115.9282,43.3715 -115.8584,43.3264 -115.7703,43.2695 -115.6934,43.2194 -115.6572,43.1949 -115.6172,43.1699 -115.5792,43.1452 -115.5272,43.1113 -115.4376,43.0749 -115.3698,43.0473 -115.3023,43.0097 -115.2486,42.9723 -115.2406,42.9644 -115.2209,42.9372 -115.2094,42.9268 -115.1918,42.9219 -115.1795,42.9157 -115.1516,42.8924 -115.1068,42.8806 -115.063,42.8663 -114.9929,42.8512 -114.9378,42.8507 -114.8981,42.8423 -114.8691,42.8387 -114.7379,42.8388 -114.5869,42.8386 -114.4931,42.8385 -114.4502,42.8381 -114.4285,42.8347</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFICORP</name><description>500kV --- AC --- 243.46km --- http://www.oasis.oati.com/PPW/PPWdocs/Transmission_Network_Diagram.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-121.1131,45.5946 -121.1106,45.5918 -121.1105,45.5892 -121.108,45.5843 -121.1054,45.5791 -121.1019,45.5721 -121.0995,45.5674 -121.0942,45.5567 -121.0906,45.5495 -121.0889,45.5462 -121.0859,45.5402 -121.0824,45.5332 -121.0789,45.5263 -121.0763,45.5211 -121.0737,45.5157 -121.0714,45.5111 -121.0677,45.5039 -121.0655,45.4994 -121.0646,45.4959 -121.0647,45.4889 -121.0647,45.4826 -121.0647,45.4788 -121.0648,45.4682 -121.0649,45.4634 -121.0649,45.4571 -121.065,45.451 -121.065,45.4459 -121.0651,45.4385 -121.0652,45.4322 -121.0652,45.4259 -121.0653,45.4196 -121.0653,45.4147 -121.0654,45.4083 -121.0655,45.4019 -121.0655,45.3974 -121.0656,45.3903 -121.0657,45.383 -121.0657,45.3772 -121.0657,45.3711 -121.0658,45.3652 -121.0659,45.3589 -121.0659,45.3529 -121.066,45.3477 -121.066,45.3424 -121.0661,45.3372 -121.0661,45.3309 -121.0662,45.3249 -121.0662,45.3196 -121.0663,45.314 -121.0635,45.3082 -121.0598,45.3018 -121.0574,45.2982 -121.0537,45.2925 -121.0505,45.2875 -121.0468,45.2818 -121.0438,45.277 -121.0403,45.2716 -121.0371,45.2666 -121.0313,45.2565 -121.0316,45.2499 -121.0322,45.2436 -121.0327,45.2378 -121.0332,45.232 -121.0338,45.2257 -121.0344,45.2194 -121.0349,45.2132 -121.0354,45.2072 -121.0364,45.2009 -121.0374,45.1952 -121.0352,45.1891 -121.0325,45.1817 -121.0304,45.1759 -121.0292,45.1726 -121.0275,45.168 -121.0252,45.1615 -121.0229,45.1554 -121.0194,45.1455 -121.0167,45.1381 -121.0156,45.135 -121.0135,45.1291 -121.0112,45.1229 -121.0087,45.1166 -121.0055,45.1093 -121.0032,45.1041 -121.0005,45.0981 -120.9979,45.0921 -120.9957,45.0872 -120.9931,45.0811 -120.9905,45.0753 -120.9879,45.0693 -120.9852,45.0633 -120.9829,45.0581 -120.9808,45.0533 -120.9782,45.0474 -120.9761,45.0426 -120.9734,45.0365 -120.971,45.0311 -120.9683,45.025 -120.9661,45.02 -120.9636,45.0141 -120.9604,45.0071 -120.9582,45.0019 -120.9555,44.9958 -120.9529,44.9898 -120.9502,44.9838 -120.9478,44.9782 -120.9451,44.9721 -120.9425,44.9661 -120.9399,44.9603 -120.9374,44.9546 -120.9375,44.9497 -120.94,44.9436 -120.9425,44.9376 -120.9449,44.9317 -120.9474,44.9256 -120.9498,44.9198 -120.9522,44.9138 -120.9544,44.9085 -120.9562,44.904 -120.9587,44.898 -120.961,44.8923 -120.9635,44.8862 -120.9655,44.8814 -120.9675,44.8766 -120.9702,44.8701 -120.9724,44.8645 -120.9747,44.8589 -120.9766,44.8543 -120.9796,44.8469 -120.9816,44.8421 -120.984,44.8361 -120.9865,44.83 -120.989,44.824 -120.9914,44.8182 -120.9939,44.8121 -120.9977,44.8068 -121.0025,44.8017 -121.0137,44.7897 -121.0146,44.7839 -121.0155,44.7786 -121.0162,44.7743 -121.0174,44.7673 -121.014,44.7603 -121.0114,44.7549 -121.0087,44.7493 -121.0059,44.7433 -121.0031,44.7375 -121.0003,44.7318 -120.9976,44.7261 -120.9947,44.7201 -120.9919,44.7142 -120.9904,44.7111 -120.9901,44.7059 -120.9897,44.6999 -120.988,44.6944 -120.9847,44.6886 -120.9814,44.6827 -120.9786,44.6776 -120.9755,44.6722 -120.9759,44.6659 -120.9763,44.6596 -120.9769,44.6529 -120.9779,44.6469 -120.9788,44.6407 -120.9798,44.6344 -120.9807,44.6281 -120.9816,44.6225 -120.9827,44.6152 -120.9829,44.6122 -120.9829,44.6059 -120.9829,44.5985 -120.9829,44.592 -120.9829,44.5856 -120.9829,44.58 -120.9829,44.5751 -120.9829,44.5692 -120.9828,44.5634 -120.9828,44.5584 -120.9833,44.5482 -120.9842,44.5419 -120.9851,44.5355 -120.986,44.5292 -120.9869,44.523 -120.9878,44.5167 -120.9886,44.511 -120.9895,44.5048 -120.9904,44.499 -120.991,44.4947 -120.9919,44.4884 -120.9928,44.4821 -120.9937,44.4758 -120.9946,44.4696 -120.9954,44.4636 -120.9963,44.4577 -120.997,44.4523 -120.9966,44.446 -120.9944,44.44 -120.9923,44.4339 -120.9901,44.4278 -120.9884,44.423 -120.9863,44.4172 -120.9844,44.4117 -120.9821,44.4052 -120.9803,44.3991 -120.9786,44.3929 -120.9768,44.3866 -120.9747,44.3822 -120.9684,44.3759 -120.9639,44.3714 -120.959,44.3665 -120.9515,44.3589 -120.9499,44.3542 -120.9473,44.3461 -120.9455,44.3405 -120.9435,44.3319 -120.9434,44.3273 -120.9432,44.3215 -120.943,44.3152 -120.9428,44.31 -120.9426,44.3044 -120.9424,44.2967 -120.9422,44.2908 -120.942,44.2845 -120.9418,44.2794 -120.9383,44.2737 -120.9347,44.2679 -120.9313,44.2624 -120.9271,44.2556 -120.9236,44.2498 -120.92,44.2441 -120.9164,44.2383 -120.9129,44.2324 -120.9093,44.2267 -120.9058,44.2209 -120.9029,44.2163 -120.8994,44.2106 -120.8981,44.2051 -120.8991,44.1989 -120.9,44.1927 -120.901,44.1866 -120.9019,44.1803 -120.9029,44.1741 -120.9038,44.1678 -120.9047,44.1618 -120.9057,44.1556 -120.9058,44.1515 -120.906,44.1452 -120.9061,44.14 -120.9063,44.1337 -120.9065,44.1274 -120.9067,44.1211 -120.9068,44.1148 -120.907,44.1085 -120.9072,44.1022 -120.9074,44.0959 -120.9076,44.0896 -120.9077,44.0833 -120.9079,44.077 -120.9081,44.0707 -120.9083,44.0644 -120.9085,44.0581 -120.9086,44.0519 -120.9088,44.0456 -120.909,44.0397 -120.9092,44.0334 -120.9093,44.0271 -120.9095,44.0208 -120.9097,44.0145 -120.9099,44.0085 -120.9101,44.0021 -120.9102,43.9958 -120.9104,43.9895 -120.9106,43.9832 -120.9108,43.977 -120.9109,43.9709 -120.9111,43.9663 -120.9095,43.9616 -120.9048,43.9556 -120.9007,43.9503 -120.8966,43.945 -120.8925,43.9398 -120.8883,43.9344 -120.8842,43.9291 -120.88,43.9238 -120.8758,43.9184 -120.8715,43.9129 -120.8672,43.9074 -120.863,43.9019 -120.8588,43.8965 -120.8545,43.891 -120.8502,43.8855 -120.8463,43.88 -120.8433,43.8754 -120.8394,43.8694 -120.8357,43.8637 -120.8321,43.8581 -120.8289,43.8532 -120.8253,43.8475 -120.8217,43.842 -120.818,43.8363 -120.8147,43.8312 -120.811,43.8254 -120.8077,43.8203 -120.8032,43.8134 -120.7995,43.8076 -120.7964,43.8028 -120.7927,43.7971 -120.7883,43.7903 -120.7832,43.7851 -120.7782,43.78 -120.7731,43.7748 -120.7682,43.7698 -120.7632,43.7647 -120.7581,43.7595 -120.7531,43.7544 -120.7481,43.7494 -120.7431,43.7442 -120.7381,43.7391 -120.733,43.7339 -120.728,43.7288 -120.723,43.7237 -120.7179,43.7185 -120.7129,43.7134 -120.7079,43.7082 -120.7028,43.7031 -120.6978,43.6979 -120.6928,43.6928 -120.6877,43.6877 -120.6827,43.6825 -120.6777,43.6774 -120.6727,43.6722 -120.6676,43.6671 -120.6626,43.6619 -120.6576,43.6568 -120.6526,43.6516 -120.6475,43.6465 -120.6425,43.6414 -120.6375,43.6362 -120.6325,43.6311 -120.6274,43.6258 -120.6223,43.6207 -120.6175,43.6157 -120.6125,43.6106 -120.6075,43.6054 -120.6025,43.6003 -120.5975,43.5951 -120.5925,43.59 -120.5874,43.5849 -120.5828,43.58 -120.5778,43.575 -120.5736,43.5706 -120.5701,43.5652 -120.5677,43.5591 -120.5655,43.5535 -120.5632,43.5474 -120.5608,43.5414 -120.5584,43.5353 -120.5562,43.5294 -120.5538,43.5234 -120.5515,43.5174 -120.5491,43.5114 -120.5468,43.5053 -120.5445,43.4994 -120.5421,43.4933 -120.5399,43.4875 -120.5376,43.4817 -120.5352,43.4756 -120.5331,43.4702 -120.5308,43.4641 -120.5284,43.4581 -120.5261,43.452 -120.5237,43.4459 -120.5214,43.4399 -120.519,43.4338 -120.5167,43.4277 -120.5143,43.4216 -120.512,43.4156 -120.5096,43.4095 -120.5073,43.4036 -120.5049,43.3975 -120.5028,43.3918 -120.5004,43.3858 -120.4981,43.3797 -120.496,43.3743 -120.4936,43.3682 -120.4913,43.3621 -120.4889,43.3561 -120.4866,43.35 -120.4842,43.3439 -120.4819,43.3379 -120.4795,43.3318 -120.4772,43.3257 -120.4748,43.3196 -120.4706,43.3143 -120.4646,43.3098 -120.4591,43.3057 -120.4531,43.3012 -120.4472,43.2968 -120.4414,43.2925 -120.4355,43.288 -120.4297,43.2837 -120.424,43.2794 -120.4182,43.2751 -120.4124,43.2707 -120.4063,43.2661 -120.4002,43.2616 -120.3942,43.2571 -120.3882,43.2526 -120.3822,43.2481 -120.3762,43.2436 -120.3701,43.239 -120.3646,43.2349 -120.3586,43.2304 -120.3526,43.2259 -120.3466,43.2214 -120.3406,43.2168 -120.3346,43.2123 -120.3285,43.2078 -120.3226,43.2033 -120.3168,43.1989 -120.3122,43.1955 -120.3068,43.1915 -120.3008,43.1869 -120.2947,43.1823 -120.2892,43.1782 -120.2833,43.1737 -120.2773,43.1692 -120.2712,43.1647 -120.269,43.1589 -120.2667,43.1528 -120.2648,43.1478 -120.2625,43.1418 -120.2601,43.1357 -120.2578,43.1296 -120.2555,43.1236 -120.2531,43.1175 -120.2508,43.1113 -120.2485,43.1053 -120.2461,43.0993 -120.244,43.0937 -120.2417,43.0876 -120.2394,43.0817 -120.2371,43.0758 -120.2348,43.0697 -120.2325,43.0636 -120.2299,43.0567 -120.2279,43.0517 -120.2256,43.0456 -120.2233,43.0396 -120.2212,43.0342 -120.2189,43.0281 -120.2166,43.022 -120.2143,43.0159 -120.2119,43.0099 -120.2096,43.0038 -120.2073,42.9977 -120.205,42.9916 -120.2027,42.9856 -120.2003,42.9795 -120.198,42.9734 -120.1957,42.9673 -120.1934,42.9613 -120.1911,42.9552 -120.1888,42.9491 -120.1864,42.943 -120.1841,42.937 -120.1818,42.9309 -120.1795,42.9248 -120.1773,42.9191 -120.175,42.9131 -120.1727,42.907 -120.1704,42.9009 -120.1681,42.8948 -120.166,42.8894 -120.1637,42.8833 -120.1614,42.8773 -120.1591,42.8712 -120.1569,42.8656 -120.1548,42.8598 -120.1525,42.8538 -120.1501,42.8477 -120.1478,42.8416 -120.1455,42.8355 -120.1432,42.8295 -120.1409,42.8234 -120.1386,42.8173 -120.136,42.8106 -120.1342,42.8058 -120.1322,42.8004 -120.1299,42.7944 -120.1288,42.7914 -120.1262,42.7845 -120.1239,42.7785 -120.1217,42.7728 -120.1199,42.768 -120.1178,42.7624 -120.1145,42.7567 -120.1111,42.7509 -120.1079,42.7453 -120.1041,42.7392 -120.1001,42.7321 -120.0958,42.7247 -120.0929,42.7196 -120.0902,42.715 -120.0875,42.7102 -120.0878,42.7039 -120.0881,42.6976 -120.0884,42.6913 -120.0888,42.685 -120.0891,42.6787 -120.0894,42.6724 -120.0898,42.6661 -120.0901,42.6598 -120.0904,42.6535 -120.0908,42.6472 -120.0911,42.6409 -120.0914,42.6346 -120.0918,42.6283 -120.0921,42.622 -120.0924,42.6157 -120.0927,42.6095 -120.0932,42.6004 -120.0936,42.5941 -120.0939,42.5878 -120.0942,42.5818 -120.0945,42.5755 -120.0949,42.5693 -120.0952,42.5631 -120.0955,42.5562 -120.0959,42.5494 -120.0962,42.5431 -120.0966,42.5368 -120.097,42.529 -120.0973,42.5231 -120.0976,42.5175 -120.0979,42.5112 -120.0982,42.5049 -120.0986,42.4985 -120.0989,42.4924 -120.0992,42.486 -120.0995,42.4807 -120.0998,42.4744 -120.1002,42.4675 -120.0995,42.4616 -120.0971,42.4555 -120.0947,42.4495 -120.0923,42.4435 -120.0911,42.4405 -120.0874,42.4312 -120.0856,42.4266 -120.0827,42.4193 -120.0809,42.4146 -120.0785,42.4085 -120.0762,42.4028 -120.0738,42.3967 -120.0714,42.3907 -120.069,42.3846 -120.067,42.3796 -120.0641,42.3722 -120.0621,42.3671 -120.0592,42.3597 -120.0569,42.3539 -120.0547,42.3482 -120.0523,42.3424 -120.0499,42.3363 -120.0478,42.3309 -120.0456,42.3253 -120.0434,42.3197 -120.0411,42.3138 -120.0388,42.308 -120.0366,42.3024 -120.0342,42.2964 -120.0321,42.291 -120.0297,42.2851 -120.0274,42.279 -120.0251,42.2732 -120.0227,42.2671 -120.0205,42.2616 -120.0181,42.2556 -120.0158,42.2497 -120.0136,42.2441 -120.0112,42.2381 -120.009,42.2325 -120.0067,42.2265 -120.0044,42.2206 -120.002,42.2145 -119.9996,42.2085 -119.9972,42.2024 -119.9943,42.195 -119.9947,42.1897 -120.0012,42.1775 -120.0007,42.1714 -120.0001,42.1638 -119.9997,42.1575 -119.9992,42.1512 -119.9987,42.145 -119.9983,42.1388 -119.9978,42.1326 -119.9973,42.1263 -119.9969,42.12 -119.9964,42.1138 -119.9959,42.1075 -119.9955,42.1012 -119.995,42.095 -119.9945,42.0887 -119.9941,42.0825 -119.9936,42.0762 -119.9931,42.0699 -119.9926,42.0631 -119.9908,42.059 -119.9877,42.0522 -119.9859,42.0483 -119.9822,42.0403 -119.9796,42.0344 -119.9778,42.0306 -119.9753,42.025 -119.9726,42.0192 -119.97,42.0136 -119.9675,42.008 -119.9649,42.0023 -119.9567,41.9855 -119.9443,41.9588 -119.9319,41.9317 -119.9168,41.8991 -119.9086,41.8815 -119.8994,41.8652 -119.8933,41.8568 -119.8849,41.8458 -119.8733,41.8306 -119.8516,41.8115 -119.8454,41.7991 -119.8441,41.7913 -119.8404,41.7682 -119.8343,41.7492 -119.8262,41.73 -119.8188,41.7122 -119.8092,41.6892 -119.7912,41.6647 -119.7812,41.6511 -119.7733,41.6315 -119.7674,41.6123 -119.7617,41.5936 -119.7563,41.5759 -119.7498,41.5545 -119.7454,41.5403 -119.7388,41.5204 -119.7297,41.4952 -119.7218,41.473 -119.7138,41.4507 -119.7052,41.4268 -119.6993,41.4105 -119.6933,41.3907 -119.688,41.3716 -119.6826,41.3524 -119.6755,41.3268 -119.6712,41.3112 -119.6714,41.2967 -119.6767,41.2852 -119.6824,41.2727 -119.6979,41.239 -119.6991,41.2147 -119.6929,41.1819 -119.6882,41.1558 -119.6831,41.1279 -119.6778,41.0992 -119.6686,41.0765 -119.6538,41.0497 -119.6353,41.0162 -119.6291,40.9966 -119.6251,40.9738 -119.5904,40.941 -119.5661,40.9073 -119.5593,40.8763 -119.52,40.8265 -119.4851,40.7856 -119.4528,40.7467 -119.4253,40.7102 -119.4045,40.6841 -119.4082,40.6458 -119.4449,40.6122 -119.4722,40.5787 -119.4807,40.5496 -119.481,40.5166 -119.4673,40.4959 -119.4259,40.4755 -119.4045,40.4356 -119.3909,40.3821 -119.3831,40.37 -119.3622,40.3619 -119.3412,40.3491 -119.3094,40.3297 -119.2958,40.3041 -119.2836,40.2811 -119.2741,40.2665 -119.2594,40.2492 -119.2474,40.233 -119.2411,40.2241 -119.2317,40.2062 -119.2271,40.1973 -119.2309,40.1562 -119.2252,40.1441 -119.2102,40.1292 -119.2067,40.1103 -119.2041,40.0785 -119.2013,40.0447 -119.2016,40.0219 -119.204,39.995 -119.2065,39.9668 -119.2087,39.9411 -119.2191,39.9153 -119.2281,39.8926 -119.2331,39.8696 -119.2409,39.8331 -119.2343,39.806 -119.2235,39.7706 -119.2116,39.7308 -119.202,39.6987 -119.1961,39.679 -119.1953,39.6502 -119.1767,39.6171 -119.1632,39.5957 -119.1527,39.5812 -119.1243,39.5687 -119.0996,39.5529 -119.0743,39.5307 -119.0524,39.5113 -119.0451,39.4863 -119.0379,39.4615 -119.0381,39.4426 -119.0443,39.4079 -119.0493,39.3809 -119.0464,39.358 -119.0323,39.3266 -119.0388,39.2766 -119.0428,39.2442 -119.0469,39.2066 -119.0515,39.1598 -119.0501,39.123 -119.0472,39.1071 -119.0348,39.07 -119.0309,39.0367 -119.0376,39.0142 -119.0497,38.9896 -119.0436,38.9718 -119.0333,38.9414 -119.0273,38.9255 -119.0178,38.9006 -119.004,38.8644 -118.992,38.8329 -118.9807,38.8028 -118.9686,38.7706 -118.9601,38.7472 -118.951,38.7223 -118.9377,38.6861 -118.9259,38.6538 -118.9198,38.6268 -118.9165,38.6119 -118.9103,38.584 -118.9039,38.5555 -118.8966,38.5226 -118.8985,38.5001 -118.9078,38.4825 -118.9122,38.464 -118.8951,38.4271 -118.8727,38.3786 -118.8613,38.354 -118.8545,38.3185 -118.8502,38.2966 -118.8468,38.279 -118.8302,38.2419 -118.8185,38.2216 -118.799,38.1918 -118.7899,38.1731 -118.7764,38.1313 -118.7708,38.1138 -118.7659,38.0983 -118.7603,38.081 -118.7551,38.0659 -118.7458,38.0486 -118.7273,38.0332 -118.7033,38.0187 -118.6765,38.0016 -118.6552,37.9896 -118.6268,37.9714 -118.6102,37.9529 -118.5937,37.9359 -118.5816,37.9236 -118.5715,37.9133 -118.5648,37.8954 -118.5568,37.8747 -118.5537,37.8479 -118.5528,37.8219 -118.5397,37.7925 -118.5324,37.7821 -118.5152,37.7605 -118.5108,37.7394 -118.5107,37.707 -118.5106,37.6755 -118.5108,37.6545 -118.5113,37.6298 -118.5112,37.6131 -118.5111,37.603 -118.5109,37.5806 -118.5108,37.5556 -118.5145,37.5241 -118.52,37.5035 -118.5234,37.49 -118.5223,37.4685 -118.5204,37.4308 -118.5147,37.3992 -118.5112,37.3894 -118.4986,37.3764 -118.4859,37.3675 -118.4573,37.3535 -118.4321,37.3342 -118.4089,37.3212 -118.3952,37.3095 -118.383,37.2871 -118.3802,37.2756 -118.3696,37.2484 -118.3587,37.2282 -118.3468,37.2058 -118.3366,37.1922 -118.3226,37.1809 -118.3163,37.1682 -118.2998,37.1519 -118.2872,37.1395 -118.2769,37.1241 -118.272,37.1032 -118.2726,37.0699 -118.2731,37.0471 -118.2629,37.0172 -118.2549,36.9939 -118.2374,36.9767 -118.2082,36.9477 -118.1921,36.9318 -118.1828,36.9019 -118.1754,36.8782 -118.1534,36.8523 -118.1408,36.8375 -118.128,36.8152 -118.1118,36.787 -118.0897,36.7486 -118.0713,36.7164 -118.0584,36.6938 -118.0481,36.6758 -118.0348,36.6526 -118.0205,36.6277 -118.0183,36.6082 -118.0169,36.5738 -118.0266,36.5462 -118.0429,36.5291 -118.0513,36.5095 -118.0487,36.479 -118.0464,36.4539 -118.0455,36.4431 -118.0384,36.4102 -118.0303,36.3726 -118.0314,36.3404 -118.0399,36.307 -118.035,36.2846 -118.0197,36.2577 -118.0073,36.2358 -118.0095,36.2073 -118.0059,36.1748 -117.9932,36.1241 -117.9713,36.1086 -117.9398,36.0804 -117.9122,36.0372 -117.8945,36.0046 -117.8954,35.9792 -117.8983,35.9465 -117.8999,35.9269 -117.8898,35.897 -117.8979,35.8791 -117.8928,35.8556 -117.8886,35.8178 -117.8833,35.7703 -117.8794,35.7352 -117.8752,35.697 -117.8733,35.6796 -117.8844,35.651 -117.8927,35.6332 -117.9112,35.5969 -117.9259,35.5646 -117.945,35.5225 -117.9664,35.4748 -117.9841,35.4355 -118.0026,35.3946 -118.0085,35.3593 -117.9992,35.3343 -118.0014,35.3281 -118.009,35.3071 -118.014,35.2934 -118.0294,35.2791 -118.0441,35.259 -118.0576,35.2339 -118.0808,35.2051 -118.1149,35.171 -118.142,35.1442 -118.1784,35.1079 -118.1987,35.0876 -118.2048,35.066 -118.2123,35.039 -118.221,35.0075 -118.2465,34.9689 -118.2685,34.9355 -118.2857,34.9095 -118.3051,34.8799 -118.3183,34.8597 -118.33,34.8419 -118.339,34.8276 -118.3434,34.7983 -118.3427,34.7616 -118.3423,34.7414 -118.346,34.7281 -118.3499,34.714 -118.3554,34.6943 -118.36,34.6778 -118.3658,34.6663 -118.3717,34.6575 -118.38,34.6451 -118.3834,34.6401 -118.3962,34.6337 -118.4081,34.6276 -118.4207,34.6214 -118.4326,34.6154 -118.4449,34.6092 -118.4489,34.6016 -118.4514,34.5951 -118.4517,34.5858 -118.4557,34.5673 -118.4659,34.5589 -118.4752,34.5535 -118.4842,34.5497 -118.4946,34.5423 -118.5006,34.5366 -118.5067,34.5303 -118.5147,34.5206 -118.5188,34.5155 -118.5181,34.5007 -118.5174,34.4883 -118.5111,34.4813 -118.5086,34.4736 -118.5072,34.4691 -118.5089,34.4611 -118.5107,34.4526 -118.5071,34.4381 -118.5036,34.4241 -118.5012,34.4083 -118.4998,34.3932 -118.4984,34.3788 -118.4971,34.3654 -118.4951,34.3522 -118.4921,34.3379 -118.4904,34.3296 -118.4892,34.3261 -118.4805,34.3148 -118.4811,34.3125</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>4</width></LineStyle></Style><name>BONNEVILLE POWER ADMINISTRATION</name><description>1000kV --- DC --- 1278.19km --- http://gis.bpa.gov/ArcGIS/rest/services/BPAPublic/Transmission_Assets/MapServer</description></Placemark>
<Placemark>
<LineString><coordinates>-122.8743,49.1586 -122.8732,49.155 -122.8733,49.1479 -122.8732,49.1403 -122.8754,49.1342 -122.8753,49.1289 -122.8759,49.1232 -122.8754,49.1171 -122.8738,49.1149 -122.8701,49.1102 -122.8687,49.1048 -122.8666,49.1013 -122.8579,49.099 -122.8505,49.0956 -122.8448,49.0915 -122.8385,49.0869 -122.8312,49.0816 -122.8241,49.0764 -122.8181,49.072 -122.8102,49.0663 -122.8066,49.0638 -122.8009,49.0599 -122.7948,49.0557 -122.7887,49.0515 -122.7817,49.0467 -122.7775,49.0433 -122.771,49.0381 -122.765,49.0333 -122.7608,49.0301 -122.7552,49.0262 -122.7485,49.0214 -122.742,49.0168 -122.7359,49.0126 -122.7295,49.0081 -122.7235,49.0038 -122.7164,48.9969 -122.7023,48.9807 -122.6355,48.9284 -122.6254,48.9043</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 40.19km --- Imagery</description></Placemark>
<Placemark>
<LineString><coordinates>-122.8743,49.1586 -122.8737,49.1553 -122.8738,49.1515 -122.8738,49.1441 -122.8737,49.1368 -122.8759,49.1313 -122.8758,49.1264 -122.8764,49.1195 -122.8756,49.1158 -122.8711,49.1124 -122.8699,49.1076 -122.8689,49.1033 -122.8631,49.1 -122.8537,49.0975 -122.8479,49.0933 -122.8422,49.0891 -122.8353,49.0841 -122.8279,49.0787 -122.8222,49.0746 -122.8152,49.0694 -122.8091,49.0651 -122.8044,49.0619 -122.7983,49.0576 -122.7917,49.0531 -122.7852,49.0486 -122.78,49.0448 -122.7747,49.0405 -122.7678,49.035 -122.7632,49.0313 -122.7581,49.0277 -122.7522,49.0235 -122.7457,49.019 -122.7397,49.0148 -122.7334,49.0103 -122.7269,49.0057 -122.724,48.9977 -122.681,48.9645 -122.6119,48.9124 -122.6252,48.9054</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 40.03km --- Imagery</description></Placemark>
<Placemark>
<LineString><coordinates>-117.7894,33.8293 -117.7875,33.8367 -117.7772,33.8401 -117.7561,33.8494 -117.7536,33.8675 -117.7482,33.8881 -117.7376,33.912 -117.7192,33.9299 -117.6879,33.9389 -117.6601,33.9484 -117.6193,33.9642 -117.5974,33.9714 -117.5824,33.9809 -117.5643,34.0083</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 31.65km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-116.5777,33.9391 -116.6065,33.9331 -116.6725,33.9139 -116.7121,33.8822 -116.7425,33.8991 -116.7934,33.9032 -116.8397,33.9124 -116.895,33.9019 -116.972,33.8986 -117.0039,33.8868 -117.0717,33.8229 -117.1543,33.7523</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 67.94km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-119.4522,35.4039 -119.5366,35.5091 -119.5961,35.5798 -119.7602,35.7815 -119.7961,35.8269 -119.9111,35.9462 -119.949,35.9907 -120.0344,36.0479 -120.0679,36.0764 -120.1288,36.1423</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 100.91km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-115.013,35.8039 -115.4086,35.613 -115.5774,35.5944 -115.7217,35.5511 -115.9121,35.4883 -115.9267,35.4827 -115.995,35.4419 -116.0417,35.417 -116.1259,35.3867 -116.223,35.3339 -116.2409,35.3187 -116.2834,35.2781 -116.305,35.2674 -116.3774,35.2329 -116.4367,35.1679 -116.5295,35.074 -116.6286,35.008 -116.7617,34.9115 -116.7708,34.892 -116.8793,34.8292 -116.9269,34.8089 -116.9707,34.7818 -117.0396,34.7307 -117.0598,34.7264 -117.1324,34.7103 -117.1934,34.6661 -117.3222,34.5635</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 268.84km --- https://www.caiso.com/Documents/TechnicalReport_cluster1_2DeliverabilityRe-Assessment.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-114.5953,35.1475 -114.9389,34.9886 -115.4653,34.9093 -115.4929,34.9072 -115.767,34.8707 -115.8586,34.8539 -116.1775,34.7468 -116.2571,34.7516 -116.3235,34.7726 -116.3995,34.7654 -116.5138,34.6732 -116.6185,34.6152 -116.6939,34.6074 -116.8112,34.5751 -116.9776,34.5171 -117.0219,34.4674 -117.0655,34.4267 -117.1792,34.3687 -117.3282,34.3477</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 300.34km --- https://www.caiso.com/Documents/TechnicalReport_cluster1_2DeliverabilityRe-Assessment.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-111.4467,35.8327 -111.364,35.9604 -111.4549,36.2568 -111.4312,36.5393 -111.3947,36.9026</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NAVAJO TRIBAL UTILITY AUTHORITY</name><description>500kV --- AC --- 112.62km --- West Connect http://westconnect.com/filestorage/wc_2013_map_4_swat</description></Placemark>
<Placemark>
<LineString><coordinates>-119.4522,35.4039 -119.3583,35.3849 -119.1583,35.2689 -118.9901,35.1251 -118.6901,35.0751 -118.5278,34.9826</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 121.0km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-121.7419,37.2248 -121.7075,37.3019 -121.6272,37.4712 -121.5913,37.5874 -121.5814,37.6554 -121.5649,37.7124</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 52.24km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-118.4354,34.8559 -118.3045,34.6856 -118.2893,34.6644 -118.2832,34.6585 -118.2584,34.632 -118.2215,34.5929 -118.2354,34.5931 -118.249,34.5754 -118.1857,34.559 -118.1224,34.4995 -118.1183,34.4877</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 55.87km --- Southern California Edison http://preview.tinyurl.com/q9vuye2</description></Placemark>
<Placemark>
<LineString><coordinates>-115.013,35.8039 -114.9651,35.8695 -114.7374,36.4361 -114.8303,36.4825</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NEVADA POWER COMPANY</name><description>500kV --- AC --- 79.58km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-115.0085,35.7973 -115.0479,35.7135 -115.0998,35.5688 -115.4919,35.2632 -115.8795,35.0691 -116.0211,35.0295 -116.3688,34.8043 -116.6151,34.6171 -116.9515,34.5425 -117.3687,34.3667</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 286.62km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-114.491,32.7461 -114.4813,32.8084 -114.5131,32.8194 -114.5377,32.8368 -114.5913,32.8365 -114.7349,32.8093 -114.8213,32.7717 -114.9032,32.7308 -115.0438,32.7014 -115.1839,32.7002 -115.275,32.7087 -115.3679,32.7093 -115.3979,32.7185 -115.4963,32.7179 -115.6455,32.7161</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>IMPERIAL IRRIGATION DISTRICT</name><description>500kV --- AC --- 135.72km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-120.1288,36.1423 -120.1938,36.145 -120.2559,36.2134 -120.268,36.2487 -120.3125,36.3107 -120.3687,36.3665 -120.4672,36.4668 -120.5673,36.5491 -120.608,36.5797 -120.64,36.6136 -120.6692,36.6486 -120.7184,36.7369 -120.7768,36.7736 -120.8353,36.8078 -120.8816,36.8602 -120.9135,36.894 -120.9454,36.9268 -120.9953,36.9856 -121.0242,37.0284</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 132.72km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-120.1288,36.1423 -120.1318,36.1525 -120.1988,36.2373 -120.2598,36.2836 -120.3432,36.3563 -120.3724,36.3834 -120.4119,36.4258 -120.5003,36.5142 -120.5908,36.5726 -120.6012,36.5819 -120.664,36.6471 -120.6945,36.7016 -120.754,36.7675 -120.8587,36.8465 -120.9311,36.9315 -120.9764,36.9881 -121.0217,37.0531</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 129.89km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-111.5976,33.3557 -111.9423,33.3522</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>SALT RIVER PROJECT</name><description>500kV --- AC --- 34.47km --- ttp://www.oasis.oati.com/SRP/SRPdocs/2015_SRP_Ten_Year_Plan_and_Technical_Study_Final_1-29-15.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-111.9953,32.9625 -111.9589,32.832 -111.6838,32.8615</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 59.16km --- http://www.oasis.oati.com/SRP/SRPdocs/2015_SRP_Ten_Year_Plan_and_Technical_Study_Final_1-29-15.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-118.3002,34.6874 -118.3018,34.6895 -118.3042,34.6924 -118.3067,34.6939 -118.3258,34.8447 -118.3173,34.94 -118.2807,35.0207</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 38.95km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-112.3222,33.7066 -112.4235,33.6802 -112.6701,33.6362 -112.6749,33.5183 -112.811,33.3896</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 72.95km --- ttp://www.oasis.oati.com/SRP/SRPdocs/2015_SRP_Ten_Year_Plan_and_Technical_Study_Final_1-29-15.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-115.7155,32.7176 -115.7541,32.733 -115.785,32.7465 -115.8385,32.7708 -115.8933,32.7915 -115.9408,32.7899 -115.9831,32.781 -116.0322,32.7556 -116.0698,32.6907 -116.0882,32.6612 -116.1173,32.6316</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>IMPERIAL IRRIGATION DISTRICT</name><description>500kV --- AC --- 50.3km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-118.3002,34.6874 -118.1202,34.4996 -118.1181,34.4863</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 27.36km --- Southern California Edison http://preview.tinyurl.com/q9vuye2</description></Placemark>
<Placemark>
<LineString><coordinates>-113.4888,32.9541 -113.4971,32.9474 -113.4973,32.9473 -113.5305,32.9327 -113.6294,32.8889 -113.7347,32.8428 -113.8323,32.8083 -113.9243,32.7889 -114.2618,32.7656 -114.3694,32.7919 -114.4122,32.7466 -114.4666,32.7466</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 107.2km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-115.3083,33.6976 -115.3384,33.6988 -115.4109,33.6949 -115.5437,33.6753 -115.5729,33.668 -115.7427,33.6475 -115.8075,33.6424 -115.8091,33.6424 -115.893,33.6472 -115.9214,33.6749 -115.9249,33.6754 -115.9678,33.6805 -116.0627,33.7015 -116.0648,33.7012 -116.1823,33.7488 -116.2203,33.7667 -116.4157,33.845 -116.5592,33.9435</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 136.24km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-117.7894,33.8293 -117.6705,33.7838 -117.6196,33.766 -117.5329,33.7601 -117.487,33.786 -117.4358,33.7859 -117.2701,33.7402 -117.1567,33.7389</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 68.54km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-121.0217,37.0531 -121.0718,37.096 -121.0823,37.1488 -121.1343,37.3091 -121.1951,37.4553 -121.2576,37.5284 -121.4311,37.6349 -121.5649,37.7124</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 90.59km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-119.4522,35.4039 -119.4831,35.3822 -119.5535,35.3627 -119.5878,35.3489 -119.6377,35.3391 -119.6853,35.3389 -119.7862,35.3113 -119.928,35.2632 -120.0137,35.237 -120.0432,35.2337 -120.1931,35.1794 -120.2726,35.1713 -120.4763,35.1623 -120.5453,35.1747 -120.6633,35.1961 -120.8327,35.2175</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 146.17km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-117.5333,34.0881 -117.5424,34.1545 -117.4703,34.1595 -117.446,34.1725 -117.4433,34.1807 -117.4498,34.2071 -117.4615,34.3017 -117.4132,34.3503</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 42.49km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-117.7894,33.8293 -117.787,33.837 -117.7632,33.8462 -117.7545,33.8656 -117.7464,33.9028 -117.7169,33.9304 -117.681,33.941 -117.6478,33.9522 -117.6151,33.9642 -117.5891,33.9737 -117.5743,33.9918 -117.5643,34.0083</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 31.56km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-117.3687,34.3667 -117.4387,34.3734 -117.7179,34.5333 -118.1181,34.4863</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 80.17km --- California Energy Commission http://www.energy.ca.gov/maps/</description></Placemark>
<Placemark>
<LineString><coordinates>-112.8521,33.3459 -112.8335,33.2628 -112.6204,33.2305</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 30.63km --- http://www.oasis.oati.com/SRP/SRPdocs/2015_SRP_Ten_Year_Plan_and_Technical_Study_Final_1-29-15.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-114.9087,36.429 -115.0161,37.2072 -114.683,37.9984 -115.2303,38.2958 -114.9739,39.2802</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>LINCOLN COUNTY POWER DISTRICT NO. 1</name><description>500kV --- AC --- 337.84km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-111.4467,35.8327 -112.3029,35.7584 -112.9944,35.6253 -113.3509,35.5694 -113.8878,35.694 -114.0681,35.7254 -114.2778,35.6979 -114.4509,35.6796 -114.6664,35.6578 -114.9999,35.6785 -115.0085,35.7973</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>UNS ELECTRIC INCORPORATED</name><description>500kV --- AC --- 374.83km --- West Connect http://westconnect.com/filestorage/wc_2013_map_4_swat</description></Placemark>
<Placemark>
<LineString><coordinates>-110.1345,34.6361 -109.6149,34.5461 -109.3682,34.5821</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 87.04km --- Open Access Technology International</description></Placemark>
<Placemark>
<LineString><coordinates>-111.9423,33.3522 -111.9803,33.2943 -112.2354,33.4038 -112.4058,33.379 -112.4429,33.3181 -112.5609,33.2677 -112.6204,33.2305</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 85.1km --- Open Access Technology International</description></Placemark>
<Placemark>
<LineString><coordinates>-111.5976,33.3557 -111.4759,33.1806 -111.5171,32.9769</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 56.75km --- Open Access Technology International</description></Placemark>
<Placemark>
<LineString><coordinates>-111.5976,33.3557 -111.5015,33.3379 -111.3867,33.275 -111.2706,33.3152 -111.1051,33.3346</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>SALT RIVER PROJECT</name><description>500kV --- AC --- 62.97km --- Open Access Technology International</description></Placemark>
<Placemark>
<LineString><coordinates>-121.0217,37.0531 -121.0726,37.0963 -121.0832,37.1492 -121.1351,37.3094 -121.1959,37.4556 -121.2584,37.5287 -121.4319,37.6353 -121.5246,37.6929 -121.5412,37.7007 -121.5492,37.7085 -121.5486,37.7314 -121.5532,37.7422 -121.5674,37.7519 -121.5815,37.7748 -121.5779,37.7953</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 99.95km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-121.9208,38.401 -121.8749,38.2436 -121.8306,38.1406 -121.784,38.094 -121.7554,38.0878 -121.7188,38.0699 -121.6818,38.031 -121.6678,38.0183 -121.6286,37.9731 -121.6269,37.9279 -121.6122,37.8814 -121.6062,37.8583 -121.6013,37.836 -121.5955,37.8224 -121.5937,37.8019 -121.5977,37.7841 -121.5688,37.7332 -121.561,37.7062</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 87.15km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-114.8172,33.5809 -115.0392,33.5947 -115.2077,33.6637 -115.3083,33.6976</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 52.55km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-115.3083,33.6976 -115.3745,33.6964 -115.4926,33.6861 -115.53,33.6768 -115.6787,33.6573 -115.7986,33.6415 -115.9079,33.6505 -115.9198,33.6743 -116.0959,33.7142 -116.2165,33.7618 -116.3332,33.8199 -116.4639,33.8659 -116.5777,33.9391</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 135.61km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-119.4522,35.4039 -119.5888,35.5688 -119.6742,35.676 -119.7416,35.7594 -119.851,35.8841 -119.8961,35.9301 -119.9957,36.0249 -120.052,36.0605 -120.0955,36.1086 -120.1593,36.1835 -120.2045,36.2412 -120.2765,36.2986 -120.4023,36.4133 -120.4309,36.4456 -120.5053,36.5202 -120.5224,36.5277 -120.5922,36.5755 -120.6674,36.6539 -120.6828,36.6809 -120.7612,36.7725 -120.8741,36.8666 -120.9126,36.9103 -120.9686,36.9724 -121.0217,37.0531</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 231.0km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-115.013,35.8039 -115.1821,35.7348 -115.3467,35.6368 -115.5352,35.5892 -115.7293,35.5492 -115.9178,35.4845 -116.0279,35.424 -116.1319,35.3874 -116.2309,35.3313 -116.367,35.2523 -116.5577,35.0542 -116.6173,35.021 -116.7611,34.9172 -116.9143,34.8144 -117.0314,34.7393 -117.0523,34.7307 -117.1599,34.684 -117.2512,34.6127 -117.3222,34.5635</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 270.19km --- https://www.caiso.com/Documents/TechnicalReport_cluster1_2DeliverabilityRe-Assessment.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-114.8172,33.5809 -114.5405,33.5376 -114.4048,33.6316 -114.3074,33.6368 -114.2187,33.649 -113.8825,33.6455 -113.4567,33.5425 -113.1217,33.3997</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 206.41km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-119.4522,35.4039 -119.4533,35.398 -119.3149,35.3334 -119.1926,35.2283 -119.0462,35.1626 -118.9865,34.9382 -118.9174,34.8503 -118.883,34.7794 -118.7589,34.7345 -118.7279,34.6564 -118.7083,34.6184 -118.7074,34.6182 -118.6909,34.6117 -118.5141,34.5943 -118.4564,34.604 -118.3146,34.5971 -118.2496,34.5751 -118.1857,34.5583 -118.1181,34.4863</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 183.9km --- Southern California Edison http://preview.tinyurl.com/q9vuye2</description></Placemark>
<Placemark>
<LineString><coordinates>-117.4378,34.5514 -117.3581,34.5451 -117.2373,34.6274 -117.1726,34.68 -117.0379,34.7323 -116.8842,34.828 -116.7747,34.8923 -116.7194,34.9444 -116.6551,34.9906 -116.5875,35.0393 -116.4854,35.1157 -116.4655,35.1321 -116.3663,35.2506 -116.2692,35.282 -116.155,35.3712 -116.0708,35.4012 -115.9308,35.4783 -115.8073,35.5283 -115.7218,35.5504 -115.5225,35.5925 -115.3348,35.641 -115.177,35.7374 -115.0113,35.8192</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 282.14km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-114.8172,33.5809 -115.0933,33.5969 -115.3012,33.6874</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 52.44km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-112.3263,33.7056 -112.6413,33.6823 -112.8738,33.7852 -113.0774,34.2285 -113.2809,34.4712 -113.5593,34.7068 -113.6521,34.9174 -113.8591,35.5705 -114.4652,35.8473 -114.6889,35.8407 -114.8347,35.9278</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>UNS ELECTRIC INCORPORATED</name><description>500kV --- AC --- 385.75km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-111.0374,33.3392 -110.9545,33.3479 -110.9365,33.4347 -110.9107,33.442 -110.8881,33.5076 -110.8902,33.5916 -110.8123,33.6551 -110.7693,33.7986 -110.757,33.9789 -110.7936,34.123 -110.8,34.1367 -110.8323,34.2345 -110.8314,34.3091 -110.8245,34.3803 -110.7018,34.5505 -110.3188,34.5573 -110.1032,34.5876 -109.9188,34.5649 -109.4372,34.5097 -109.306,34.5281</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NAVOPACHE ELECTRIC COOPERATIVE</name><description>500kV --- AC --- 297.8km --- ttp://www.oasis.oati.com/SRP/SRPdocs/2015_SRP_Ten_Year_Plan_and_Technical_Study_Final_1-29-15.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-116.1179,32.6273 -116.1432,32.6302 -116.1951,32.6269 -116.259,32.6138 -116.2975,32.6079 -116.3118,32.6065 -116.3319,32.6032 -116.3563,32.6041 -116.3983,32.6004 -116.4359,32.597 -116.4767,32.5931 -116.5568,32.5864 -116.5908,32.5876 -116.6167,32.5917 -116.6566,32.606 -116.7258,32.6057 -116.8065,32.6456 -116.8548,32.6615 -116.9703,32.6721</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>SAN DIEGO GAS & ELECTRIC</name><description>500kV --- AC --- 90.07km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-115.0085,35.7973 -114.9345,35.5346 -114.8925,35.3986 -114.6518,35.1793 -114.5953,35.1475</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NEVADA POWER COMPANY</name><description>500kV --- AC --- 92.16km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-121.5791,37.7989 -121.5727,37.8083 -121.5435,37.8291 -121.5539,37.8704 -121.5571,37.9321 -121.5913,37.9571 -121.634,37.9814 -121.6721,38.0287 -121.7102,38.0714 -121.7372,38.076 -121.6997,38.145 -121.8515,38.3021 -121.9028,38.5163 -121.9085,38.5565 -121.9422,38.6989 -122.0559,38.8704 -122.1314,38.9848 -122.1893,39.0774 -122.2438,39.1694 -122.2635,39.2003 -122.2813,39.2653 -122.2839,39.3587 -122.2845,39.4769 -122.2859,39.5164 -122.2786,39.5755 -122.2793,39.5788 -122.2734,39.6373 -122.2721,39.7003 -122.2734,39.7628 -122.274,39.8193 -122.274,39.9513 -122.2799,40.0988 -122.2832,40.1642</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 294.61km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-110.1345,34.6361 -110.1327,34.6913 -110.3042,34.9386</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 35.61km --- ttp://www.oasis.oati.com/SRP/SRPdocs/2015_SRP_Ten_Year_Plan_and_Technical_Study_Final_1-29-15.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-111.9953,32.9625 -112.1802,32.985 -112.1964,32.9973</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 20.66km --- http://www.oasis.oati.com/SRP/SRPdocs/2015_SRP_Ten_Year_Plan_and_Technical_Study_Final_1-29-15.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-111.3947,36.9026 -111.4294,36.5606 -111.4608,36.2449 -111.3722,35.9588 -111.4977,35.7871 -112.3431,35.2979 -112.1807,34.6906 -112.1493,34.5392</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 311.68km --- Open Access Technology International</description></Placemark>
<Placemark>
<LineString><coordinates>-116.5777,33.9391 -116.6081,33.9329 -116.674,33.9137 -116.7137,33.882 -116.7441,33.8988 -116.795,33.9029 -116.8413,33.9121 -116.8966,33.9017 -116.9735,33.8983 -117.0055,33.8866 -117.0733,33.8226 -117.1559,33.752</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 67.99km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-112.2291,34.7566 -112.3538,35.0807 -112.346,35.2926 -112.2141,35.4121</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 73.73km --- West Connect http://westconnect.com/filestorage/wc_2013_map_4_swat</description></Placemark>
<Placemark>
<LineString><coordinates>-117.5643,34.0083 -117.5401,34.0343 -117.5198,34.0967 -117.4435,34.172 -117.458,34.2338 -117.4192,34.3485</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 46.83km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-108.4852,36.6872 -109.1523,36.4687 -109.7861,36.1315 -110.5547,36.054</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NAVAJO TRIBAL UTILITY AUTHORITY</name><description>500kV --- AC --- 313.45km --- West Connect http://westconnect.com/filestorage/wc_2013_map_4_swat</description></Placemark>
<Placemark>
<LineString><coordinates>-112.6204,33.2305 -112.6313,33.0295 -112.6929,32.9759</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 29.5km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-116.6833,32.8084 -116.6993,32.7815 -116.7147,32.7765 -116.7103,32.7568 -116.7091,32.7464 -116.7013,32.725 -116.7091,32.6973 -116.6993,32.6843 -116.6942,32.67 -116.6508,32.6596 -116.6294,32.6486 -116.6056,32.6551 -116.5651,32.6537 -116.5178,32.6584 -116.4824,32.6551 -116.4598,32.6896 -116.4503,32.706 -116.4298,32.7309 -116.3959,32.7785 -116.3771,32.8026 -116.3526,32.7931 -116.2656,32.7253 -116.2564,32.7155 -116.2582,32.6676 -116.2028,32.628 -116.1425,32.6316 -116.1319,32.6299 -116.1084,32.6316 -116.0889,32.6578 -116.0553,32.7158 -116.0125,32.7768 -115.9479,32.7878 -115.9054,32.7928 -115.8909,32.7922 -115.845,32.7723 -115.7204,32.7176</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>SAN DIEGO GAS & ELECTRIC</name><description>500kV --- AC --- 146.71km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-111.5667,32.8708 -110.9866,33.1311 -110.3042,34.9386</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 256.79km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-121.0217,37.0531 -121.0558,37.0127 -121.0968,36.9788 -121.1369,36.9592 -121.1619,36.9485 -121.2046,36.8995 -121.2367,36.8638 -121.2679,36.8282 -121.3107,36.8059 -121.3651,36.7916 -121.4097,36.7934 -121.4694,36.8014 -121.5122,36.8032 -121.587,36.7872 -121.6298,36.7782 -121.7002,36.7836 -121.7689,36.7836</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 87.97km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-121.7797,36.8074 -121.725,36.8075 -121.6773,36.8666 -121.6502,36.9376 -121.6578,36.9946 -121.6688,37.0611 -121.7012,37.1031 -121.7158,37.1416 -121.7532,37.1817 -121.7581,37.2089 -121.7419,37.2248</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 55.32km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-112.8521,33.3459 -112.8745,33.3486 -112.8824,33.3636 -112.8877,33.3633 -112.9099,33.3635 -112.9684,33.3963 -112.9976,33.4363 -113.0131,33.4577 -113.0486,33.4784 -113.0745,33.4789 -113.0928,33.4786 -113.107,33.4786 -113.1126,33.4786</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 32.48km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-112.2626,33.8169 -111.9713,33.7108 -111.9373,33.7025</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 35.08km --- http://www.oasis.oati.com/SRP/SRPdocs/2015_SRP_Ten_Year_Plan_and_Technical_Study_Final_1-29-15.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-121.6448,39.5551 -121.7188,39.6885 -121.7875,39.8192 -121.8234,39.9108 -121.8577,39.9892 -121.8839,40.0497 -121.91,40.1232 -121.9215,40.1853 -121.928,40.2491 -121.9346,40.3128 -121.9346,40.37 -121.9427,40.4305 -121.946,40.4942 -121.9395,40.553 -121.9427,40.6184 -121.9411,40.741</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 131.89km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-111.3947,36.9026 -111.8702,37.0589 -112.0963,37.047 -112.5186,36.8566 -112.822,36.809 -113.0719,36.8685 -113.3515,36.9458 -113.4883,36.9815 -113.6251,36.9637 -113.7738,37.0708 -113.9166,36.9994 -114.1289,36.9583</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>DIXIE ESCALANTE RURAL ELECTRIC ASSOCIATION INCORPORATED</name><description>500kV --- AC --- 380.33km --- West Connect http://westconnect.com/filestorage/wc_2013_map_4_swat</description></Placemark>
<Placemark>
<LineString><coordinates>-118.3002,34.6874 -118.3039,34.6853 -118.4386,34.8527 -118.4354,34.8559</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 22.36km --- Southern California Edison http://preview.tinyurl.com/q9vuye2</description></Placemark>
<Placemark>
<LineString><coordinates>-122.3817,40.3832 -122.3918,40.4035 -122.3191,40.4068 -122.2454,40.4239 -122.159,40.5287 -122.0516,40.6887 -121.9756,40.7691 -121.9717,40.8208 -121.9811,40.8842 -121.9579,40.9427 -121.9519,41.002 -121.9536,41.0614 -121.9497,41.0868 -121.9618,41.1182 -121.9635,41.171 -121.9304,41.2013 -121.8638,41.2233 -121.7752,41.2404 -121.7746,41.2927 -121.7096,41.3219 -121.6477,41.3241 -121.5395,41.3984 -121.4806,41.4562 -121.4344,41.5223 -121.3801,41.6401 -121.3683,41.6649 -121.3364,41.759 -121.3116,41.8493 -121.3171,41.9066 -121.327,41.9688 -121.3369,42.0431 -121.39,42.0797</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 237.5km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-118.4783,34.2806 -118.4934,34.3172 -118.4867,34.3229 -118.4833,34.327 -118.4928,34.3514 -118.4867,34.3645 -118.4863,34.3738 -118.4852,34.3882 -118.4956,34.4173 -118.5036,34.4303 -118.489,34.4442 -118.4755,34.4535 -118.4511,34.4682 -118.438,34.4804 -118.3787,34.4937 -118.3323,34.5125 -118.3125,34.5262 -118.2749,34.5471 -118.1853,34.5578 -118.1031,34.4998 -118.0274,34.5085 -117.4378,34.5514</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 130.26km --- California Environmental Protection Agency http://www.swrcb.ca.gov/water_issues/programs/ocean/cwa316/docs/energy_comp/10yta_2012_5.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-118.3002,34.6874 -118.2878,34.666 -118.2409,34.6151 -118.1987,34.5721 -118.1221,34.4998 -118.1181,34.4863</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 27.95km --- Southern California Edison http://preview.tinyurl.com/q9vuye2</description></Placemark>
<Placemark>
<LineString><coordinates>-114.9216,36.3819 -115.3301,36.3345</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NEVADA POWER COMPANY</name><description>500kV --- AC --- 41.12km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-118.1181,34.4863 -118.1844,34.5565 -118.1987,34.5574 -118.25,34.5736 -118.3153,34.5958 -118.4564,34.6019 -118.5972,34.611 -118.7063,34.6172 -118.7095,34.6176 -118.7306,34.6619 -118.8347,34.7733 -118.9195,34.8302 -118.9548,34.8966 -119.0492,34.9777 -119.1714,35.2292 -119.2341,35.2613 -119.4258,35.3899 -119.4541,35.3973 -119.4522,35.4039</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 184.18km --- Southern California Edison http://preview.tinyurl.com/q9vuye2</description></Placemark>
<Placemark>
<LineString><coordinates>-114.8347,35.9278 -115.0113,35.8192</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NEVADA POWER COMPANY</name><description>500kV --- AC --- 20.73km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-115.0085,35.7973 -115.0661,35.6786 -115.1904,35.4788 -115.4968,35.261 -115.6583,35.1876 -115.7431,35.1409 -115.9495,35.0409 -116.0893,34.9975 -116.2118,34.8934 -116.2588,34.866 -116.3915,34.7697 -116.4391,34.7233 -116.6229,34.6168 -116.6948,34.6097 -116.8275,34.5716 -116.9439,34.548 -117.0482,34.4627 -117.1791,34.3658 -117.3284,34.3455</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 292.18km --- http://www.energy.ca.gov/maps/</description></Placemark>
<Placemark>
<LineString><coordinates>-120.1288,36.1423 -120.1434,36.0877 -120.1948,36.0151 -120.2346,35.9377 -120.3387,35.8556 -120.3631,35.8292 -120.4197,35.7854 -120.5514,35.6761 -120.6226,35.6115 -120.7161,35.5124 -120.7535,35.4441 -120.7708,35.3899 -120.7731,35.3411 -120.8016,35.2354 -120.8473,35.2164</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 124.13km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-112.3222,33.7066 -112.418,33.678 -112.6712,33.6329 -112.6756,33.5243 -112.8077,33.3885</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 73.32km --- ttp://www.oasis.oati.com/SRP/SRPdocs/2015_SRP_Ten_Year_Plan_and_Technical_Study_Final_1-29-15.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-112.8591,33.3847 -112.6901,33.3955 -112.3172,33.4099</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 54.25km --- http://www.oasis.oati.com/SRP/SRPdocs/2015_SRP_Ten_Year_Plan_and_Technical_Study_Final_1-29-15.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-112.8521,33.3459 -112.8396,33.3254 -112.8283,33.2586 -112.8082,33.2529 -112.6045,33.232 -112.4161,33.1676 -112.289,33.0484 -112.1988,33.0146</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 83.79km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-121.5649,37.7124 -121.5614,37.7214 -121.5792,37.7461 -121.5966,37.7842 -121.5913,37.815 -121.5964,37.8238 -121.6012,37.8427 -121.6066,37.8581 -121.6248,37.9142 -121.6287,37.9717 -121.662,38.0142 -121.6809,38.0298 -121.7095,38.0644 -121.7445,38.0751 -121.7566,38.1097 -121.7484,38.1619 -121.7432,38.1973 -121.7232,38.2558 -121.7078,38.3192 -121.6926,38.3437 -121.6772,38.402 -121.6492,38.4656 -121.6457,38.5263 -121.6709,38.6809 -121.6786,38.8302 -121.6885,38.8684 -121.6909,38.9803 -121.7261,39.054 -121.7338,39.0879 -121.7359,39.1629 -121.7475,39.2468 -121.7508,39.341 -121.7299,39.449 -121.6728,39.5285 -121.6448,39.5551</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 201.78km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-112.2141,35.4121 -112.1744,35.4451 -112.0002,35.589 -111.4467,35.8327</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 88.86km --- West Connect http://westconnect.com/filestorage/wc_2013_map_4_swat</description></Placemark>
<Placemark>
<LineString><coordinates>-121.6448,39.5551 -121.6909,39.5081 -121.7338,39.4339 -121.7499,39.3416 -121.7519,39.235 -121.8061,39.1188 -121.8137,39.0846 -121.8461,38.9932 -121.848,38.8476 -121.9013,38.7648 -121.9327,38.6258 -121.9327,38.4821</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 124.77km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-112.8521,33.3459 -112.8844,33.3167 -112.9958,33.235 -113.1245,33.0975 -113.2532,33.061 -113.4202,32.9671</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 77.49km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-112.3222,33.7066 -112.2215,33.8623 -112.1078,34.0487 -112.0612,34.1898 -112.0791,34.3652 -112.1941,34.6049 -112.2291,34.7566</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 117.01km --- ttp://www.oasis.oati.com/SRP/SRPdocs/2015_SRP_Ten_Year_Plan_and_Technical_Study_Final_1-29-15.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-117.3687,34.3667 -117.3222,34.5635</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 20.23km --- https://www.caiso.com/Documents/TechnicalReport_cluster1_2DeliverabilityRe-Assessment.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-121.6448,39.5551 -121.709,39.6738 -121.7613,39.7653 -121.8054,39.865 -121.8512,39.9663 -121.8953,40.0742 -121.9198,40.1755 -121.9346,40.2687 -121.9395,40.3912 -121.946,40.5024 -121.9444,40.6037 -121.9411,40.7377</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 131.76km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-111.2961,32.5565 -111.2082,32.6033 -110.9692,32.6096 -110.9209,32.6497 -110.8803,32.8043 -110.9527,32.9469 -111.0339,33.0302 -111.0207,33.1235 -111.0415,33.2561 -111.0209,33.3416 -110.9967,33.431 -110.9243,33.5128 -110.8824,33.686 -110.815,33.7213 -110.7949,33.8536 -110.7854,34.0173 -110.8329,34.2609 -110.7416,34.4532 -110.694,34.6531</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 312.86km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-114.8347,35.9278 -114.73,36.3664 -114.9087,36.429</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NEVADA POWER COMPANY</name><description>500kV --- AC --- 64.02km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-118.4783,34.2806 -118.4904,34.3171 -118.4837,34.3228 -118.4803,34.3268 -118.4898,34.3513 -118.4837,34.3644 -118.4833,34.3736 -118.4822,34.388 -118.4926,34.4171 -118.5006,34.4301 -118.486,34.4441 -118.4725,34.4533 -118.4481,34.4681 -118.435,34.4803 -118.3757,34.4936 -118.3293,34.5124 -118.3095,34.526 -118.2719,34.5469 -118.1823,34.5577 -118.1001,34.4996 -118.0244,34.5084 -117.9013,34.512 -117.6663,34.522 -117.4429,34.5541</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 143.73km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-112.6204,33.2305 -112.6313,33.03 -112.6929,32.9759</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 29.53km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-119.4522,35.4039 -119.5207,35.3798 -119.6106,35.3365 -119.678,35.3383 -119.7539,35.3298 -119.8314,35.2808 -119.938,35.2618 -120.0489,35.2332 -120.0975,35.218 -120.2012,35.1766 -120.3511,35.1671 -120.4042,35.163 -120.5343,35.1747 -120.6157,35.1666 -120.6719,35.1975 -120.7829,35.2126</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>PACIFIC GAS & ELECTRIC COMPANY</name><description>500kV --- AC --- 146.8km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-112.2626,33.8169 -112.1982,33.8939 -112.1133,34.0377 -112.0681,34.1912 -112.0818,34.3528</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ARIZONA PUBLIC SERVICE COMPANY</name><description>500kV --- AC --- 66.08km --- http://www.oasis.oati.com/SRP/SRPdocs/2015_SRP_Ten_Year_Plan_and_Technical_Study_Final_1-29-15.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-85.1162,31.2241 -85.1171,31.2271 -85.1419,31.2452 -85.1618,31.2617 -85.1813,31.2777 -85.1994,31.3014 -85.2094,31.3138 -85.2278,31.335 -85.2466,31.3529 -85.2681,31.3712 -85.2911,31.3911 -85.3235,31.4191 -85.3474,31.4406 -85.3772,31.4682 -85.3945,31.4844 -85.4191,31.5079 -85.435,31.5229 -85.464,31.5413 -85.4836,31.5582 -85.4985,31.5692 -85.5296,31.5951 -85.5515,31.6119 -85.5725,31.6276 -85.5955,31.6437 -85.6211,31.6617 -85.6477,31.6889 -85.6631,31.7046 -85.6864,31.724 -85.7147,31.7475 -85.7424,31.7705 -85.7717,31.7935 -85.8065,31.8188 -85.8293,31.8345 -85.862,31.8653 -85.8906,31.8912 -85.9104,31.9096 -85.946,31.9422 -85.9616,31.9545 -85.9924,31.9772 -86.0105,31.9901 -86.025,32.0026 -86.0373,32.0136 -86.0556,32.03 -86.0754,32.0476 -86.0912,32.0618 -86.104,32.0732 -86.1244,32.0933 -86.1452,32.1139 -86.165,32.1332 -86.1813,32.1479 -86.1938,32.1599 -86.2051,32.171 -86.2138,32.1794 -86.22,32.185 -86.2286,32.192 -86.2503,32.2099 -86.2604,32.2284</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 152.91km --- Imagery, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-86.2606,32.2292 -86.2674,32.2164 -86.2789,32.1929 -86.2966,32.1873 -86.3325,32.1911 -86.3745,32.2036 -86.4045,32.2151 -86.4395,32.2279 -86.4795,32.2425 -86.5079,32.2528 -86.5271,32.28 -86.5412,32.2982 -86.551,32.3276 -86.552,32.3531 -86.564,32.3618 -86.572,32.3707 -86.5822,32.3767 -86.5838,32.3778</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ALABAMA POWER CO</name><description>500kV --- AC --- 44.7km --- Imagery, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-114.9087,36.429 -114.8175,36.5211 -114.6389,36.6431 -114.4269,36.7592 -114.0351,37.0881 -113.9976,37.1223 -113.9567,37.1845 -113.9443,37.2199 -113.8669,37.2807 -113.8326,37.2935 -113.782,37.325 -113.7402,37.3672 -113.6877,37.3968 -113.6493,37.4164 -113.644,37.4222 -113.6364,37.4516 -113.621,37.4817 -113.6104,37.5112 -113.6022,37.5431 -113.6118,37.578 -113.591,37.6209 -113.5773,37.6396 -113.5437,37.6607 -113.5279,37.6779 -113.5167,37.7028 -113.5021,37.7335 -113.4742,37.7775 -113.4194,37.8165 -113.3826,37.8441 -113.3293,37.8874 -113.2542,37.9465 -113.2539,38.0661 -113.2426,38.1332 -113.2046,38.1985 -113.1716,38.2336 -113.0835,38.3484 -113.0653,38.4117 -113.0473,38.5223 -113.0473,38.6506 -113.0202,38.7241 -112.905,38.8397 -112.8809,38.8983 -112.8466,39.043 -112.8612,39.0937 -112.8864,39.165 -112.9059,39.3041 -112.8845,39.4432 -112.8088,39.5016 -112.5829,39.4952 -112.5808,39.4984</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>INTERMOUNTAIN POWER AGENCY</name><description>500kV --- AC --- 433.48km --- http://www.oasis.oati.com/PPW/PPWdocs/Transmission_Network_Diagram.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-118.3596,34.1762 -118.3887,34.202 -118.389,34.2259 -118.3518,34.2728 -118.35,34.2875 -118.3286,34.3494 -118.2872,34.3647 -118.156,34.4355 -118.1172,34.451 -118.028,34.5067 -117.7096,34.5331</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 114.77km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-117.3687,34.3667 -117.4414,34.3734 -117.5817,34.4764 -118.0432,34.5055 -118.1181,34.4863</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 80.25km --- California Energy Commission http://www.energy.ca.gov/maps/</description></Placemark>
<Placemark>
<LineString><coordinates>-117.5643,34.0083 -117.5419,34.0341 -117.5216,34.0965 -117.4639,34.1553 -117.431,34.1586 -117.4369,34.1865 -117.4598,34.2335 -117.4209,34.3483</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 49.2km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-118.2807,35.035 -118.3224,34.9855 -118.3263,34.9467</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>AZUSA LIGHT & POWER</name><description>500kV --- AC --- 25.3km --- Western Electricity Coordinating Council https://www.wecc.biz/Reliability/YEAR%202014%20OC%20MAP-1.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-86.5838,32.3778 -86.5777,32.3803 -86.5899,32.4008 -86.5987,32.4155 -86.609,32.4329 -86.6205,32.4505 -86.6312,32.4671 -86.6415,32.4829 -86.6536,32.5034 -86.6633,32.5205 -86.6789,32.5514 -86.6912,32.5742 -86.711,32.6107 -86.7283,32.6439 -86.7326,32.6513</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ALABAMA POWER CO</name><description>500kV --- AC --- 31.92km --- Imagery, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-86.7326,32.6513 -86.7356,32.6588 -86.7506,32.689 -86.7583,32.7046 -86.7693,32.7209 -86.783,32.7413 -86.7969,32.762 -86.8068,32.7767 -86.8183,32.8006 -86.8335,32.8323 -86.8419,32.8491 -86.8533,32.8718 -86.8667,32.8985 -86.8743,32.9118 -86.8926,32.9398 -86.9146,32.9736 -86.946,33.0215 -86.961,33.0415 -86.9865,33.0677 -87.0045,33.09 -87.0238,33.1175 -87.0371,33.1363 -87.0549,33.1619 -87.0678,33.1803 -87.066,33.1996 -87.0641,33.2186</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ALABAMA POWER CO</name><description>500kV --- AC --- 66.9km --- Imagery, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-87.0633,33.2198 -87.0643,33.2236 -87.0647,33.2277 -87.0482,33.244 -87.054,33.2674 -87.0571,33.286 -87.0548,33.3038 -87.0453,33.3209 -87.0428,33.3359 -87.0508,33.3557 -87.0564,33.38 -87.0577,33.403 -87.0597,33.4229 -87.0605,33.442 -87.0621,33.4638 -87.05,33.4741 -87.0427,33.4998 -87.035,33.5231 -87.0235,33.5581 -87.0171,33.5776 -87.0272,33.6123 -87.0529,33.6278 -87.0556,33.6308</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ALABAMA POWER CO</name><description>500kV --- AC --- 46.37km --- Imagery, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-87.0556,33.6308 -87.0503,33.6311 -87.0271,33.6426 -87.0076,33.6522 -86.9993,33.6563 -86.9908,33.6669 -86.9811,33.679 -86.9697,33.6931 -86.9651,33.7065 -86.9646,33.7202 -86.9641,33.7338 -86.9602,33.7408 -86.9601,33.7594 -86.9602,33.7726 -86.9619,33.7919 -86.9564,33.8075 -86.9537,33.8172 -86.954,33.8306 -86.9411,33.8495 -86.9321,33.8592 -86.9203,33.8719 -86.9141,33.8806 -86.8995,33.9012 -86.8956,33.9172 -86.8952,33.9381 -86.8911,33.955 -86.8793,33.973 -86.8742,33.99 -86.867,34.0073 -86.8586,34.0193 -86.8571,34.0345 -86.8519,34.0473 -86.842,34.0645 -86.8293,34.0802 -86.8218,34.0994 -86.811,34.1113 -86.7961,34.1209 -86.7895,34.136 -86.7751,34.1483 -86.7741,34.1689 -86.7715,34.1872 -86.7481,34.1918</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 69.52km --- Imagery, http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-78.7821,34.8782 -78.7858,34.8797 -78.7919,34.8785 -78.7981,34.8785 -78.806,34.8794 -78.8136,34.8802 -78.8211,34.8798 -78.8296,34.8784 -78.8371,34.8771 -78.8434,34.876 -78.8506,34.8748 -78.8588,34.8734 -78.8677,34.8718 -78.8742,34.8707 -78.8794,34.8693 -78.8849,34.8674 -78.8963,34.8634 -78.9047,34.862 -78.9132,34.8617 -78.9207,34.8614 -78.9299,34.8602 -78.938,34.8593 -78.9454,34.8583 -78.9538,34.8573 -78.9596,34.8565 -78.9739,34.8593 -78.9863,34.8616 -78.9931,34.8634 -78.9992,34.865 -79.0064,34.8669 -79.0133,34.8686 -79.0198,34.8702 -79.0252,34.8704 -79.032,34.8707 -79.0403,34.871 -79.0488,34.8713 -79.056,34.8716 -79.0641,34.8719 -79.0711,34.8722 -79.0788,34.8724 -79.0868,34.8727 -79.0952,34.873 -79.1054,34.8734 -79.1096,34.8706 -79.1166,34.8657 -79.1215,34.8622 -79.1279,34.8577 -79.1336,34.8538 -79.1408,34.8535 -79.1479,34.8528 -79.155,34.8516 -79.1622,34.8505 -79.1702,34.8492 -79.1825,34.8509 -79.2166,34.8554 -79.2368,34.8521 -79.2606,34.848 -79.2712,34.8486 -79.2807,34.8503 -79.2883,34.8517 -79.2964,34.8532 -79.3042,34.8546 -79.3126,34.8561 -79.3207,34.8577 -79.3293,34.8592 -79.336,34.8591 -79.3437,34.8589 -79.3517,34.8587 -79.3592,34.8585 -79.3667,34.8584 -79.3745,34.8583 -79.384,34.858 -79.3924,34.8578 -79.3993,34.8576 -79.4072,34.8568 -79.4152,34.8552 -79.4232,34.8535 -79.4325,34.8517 -79.4377,34.8531 -79.445,34.8548 -79.454,34.8568 -79.4612,34.8584 -79.4684,34.859 -79.4754,34.8586 -79.4832,34.8582 -79.4911,34.8569 -79.4987,34.8544 -79.5066,34.8518 -79.5142,34.8493 -79.522,34.8507 -79.5282,34.8502 -79.5359,34.8495 -79.5442,34.8488 -79.5516,34.8486 -79.559,34.8491 -79.5664,34.8495 -79.5749,34.85 -79.582,34.8505 -79.5904,34.8509 -79.5982,34.8514 -79.6062,34.8518 -79.6135,34.8523 -79.6201,34.8519 -79.6301,34.85 -79.6374,34.8485 -79.6421,34.8466 -79.6472,34.8424 -79.6527,34.8379 -79.6597,34.8342 -79.6679,34.8325 -79.6759,34.8308 -79.6839,34.8292 -79.6923,34.8274 -79.6997,34.8296 -79.7074,34.832 -79.7154,34.8345 -79.7229,34.8368 -79.7302,34.839 -79.7381,34.8415 -79.743,34.8428 -79.7465,34.844</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 98.99km --- Imagery, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-78.4531,35.782 -78.4524,35.786 -78.4511,35.79 -78.451,35.7941 -78.4503,35.7997 -78.4495,35.8063 -78.4488,35.812 -78.4478,35.8196 -78.447,35.8262 -78.4496,35.8305 -78.4557,35.8346 -78.4623,35.8387 -78.4636,35.8437 -78.4649,35.8486 -78.4671,35.8565 -78.4679,35.8654 -78.4679,35.8709 -78.4679,35.8762 -78.468,35.8825 -78.468,35.887 -78.468,35.8941 -78.4718,35.8961 -78.4779,35.8993 -78.4845,35.9029 -78.4911,35.9064 -78.4982,35.9103 -78.5038,35.9132 -78.5103,35.9173 -78.5163,35.9214 -78.5213,35.9248 -78.526,35.9281 -78.5329,35.9309 -78.5383,35.9331 -78.5443,35.9355 -78.5498,35.9377 -78.5562,35.9403 -78.5569,35.9438 -78.5562,35.9497 -78.5572,35.956 -78.5606,35.9619 -78.5637,35.9672 -78.5671,35.973 -78.5696,35.9774 -78.574,35.985 -78.5777,35.9846 -78.5857,35.9839 -78.5935,35.9834 -78.6003,35.9834 -78.612,35.9845 -78.6201,35.9852 -78.6268,35.9829 -78.6365,35.9794 -78.6434,35.9769 -78.6486,35.9774 -78.6561,35.9781 -78.6626,35.9789 -78.6688,35.9795 -78.6732,35.9787 -78.6811,35.9771 -78.6874,35.9758 -78.6953,35.9742 -78.7023,35.9728 -78.7104,35.9712 -78.7192,35.9695 -78.7254,35.9667 -78.7303,35.9623 -78.7351,35.9577 -78.7405,35.9525 -78.7453,35.9508 -78.7499,35.9509</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 45.88km --- OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-78.7508,35.9508 -78.7481,35.9511 -78.7493,35.9553 -78.7443,35.9692 -78.7423,35.9752 -78.7393,35.9799 -78.7364,35.986 -78.7352,35.9923 -78.7373,35.9974 -78.7426,36.0011 -78.7495,36.0038 -78.7554,36.005 -78.7612,36.0066 -78.7677,36.0084 -78.7653,36.0142 -78.763,36.0195 -78.7618,36.0251 -78.7603,36.0298 -78.7529,36.0341 -78.7431,36.0367 -78.7364,36.0385 -78.7333,36.0421 -78.7331,36.0487 -78.733,36.0543 -78.7329,36.0604 -78.7327,36.0662 -78.732,36.0723 -78.7308,36.0778 -78.7296,36.0834 -78.73,36.0891 -78.7305,36.0953 -78.7309,36.1012 -78.7295,36.106 -78.7277,36.1119 -78.7258,36.1178 -78.7239,36.1241 -78.7219,36.1304 -78.7203,36.1354 -78.7248,36.1413 -78.728,36.1456 -78.7327,36.1503 -78.7376,36.1552 -78.7419,36.1595 -78.7386,36.1642 -78.7348,36.1696 -78.7308,36.1753 -78.7336,36.1813 -78.7365,36.1874 -78.7392,36.1934 -78.7419,36.199 -78.7453,36.204 -78.7498,36.2089 -78.7519,36.2114 -78.7556,36.2155 -78.7598,36.2202 -78.7641,36.2249 -78.769,36.2302 -78.7729,36.2346 -78.778,36.2403 -78.7818,36.2444 -78.786,36.2491 -78.7897,36.2533 -78.7941,36.2581 -78.7986,36.263 -78.8024,36.2673 -78.8072,36.2725 -78.8112,36.277 -78.8154,36.2816 -78.8201,36.2868 -78.8243,36.2915 -78.8287,36.2963 -78.8331,36.3012 -78.8376,36.3061 -78.8421,36.3111 -78.8453,36.3164 -78.8485,36.3218 -78.8517,36.3271 -78.8547,36.332 -78.8582,36.3379 -78.8617,36.3436 -78.8648,36.3487 -78.8675,36.3533 -78.87,36.3571 -78.8744,36.3629 -78.8791,36.3689 -78.8751,36.3776 -78.8728,36.3827 -78.8705,36.3882 -78.8702,36.3927 -78.8701,36.3989 -78.8699,36.4045 -78.8698,36.409 -78.8696,36.4159 -78.8719,36.4215 -78.8742,36.4271 -78.8764,36.4324 -78.8789,36.4385 -78.8809,36.4434 -78.8834,36.4493 -78.8856,36.4547 -78.888,36.4606 -78.8904,36.4663 -78.8927,36.472 -78.8931,36.4766 -78.8938,36.4844 -78.8944,36.4906 -78.8948,36.4963 -78.8936,36.5027 -78.8926,36.5075 -78.8916,36.5131 -78.8904,36.5189 -78.8886,36.5236 -78.8886,36.5249</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 69.82km --- OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-78.4531,35.782 -78.4523,35.7788 -78.4526,35.7745 -78.4554,35.7704 -78.4591,35.7649 -78.4607,35.7603 -78.4626,35.7553 -78.4647,35.7495 -78.4669,35.7432 -78.469,35.7382 -78.4714,35.7323 -78.4735,35.7271 -78.4765,35.7199 -78.4787,35.7147 -78.4818,35.7105 -78.4874,35.7061 -78.4924,35.7023 -78.4969,35.6988 -78.5017,35.6955 -78.5092,35.6904 -78.5148,35.6866 -78.5174,35.6821 -78.5204,35.6768 -78.5233,35.6717 -78.5267,35.6658 -78.5297,35.6604 -78.5342,35.6551 -78.5386,35.65 -78.5424,35.6457 -78.5459,35.6395 -78.5484,35.6331 -78.5495,35.6303 -78.5516,35.6248 -78.5539,35.6189 -78.5563,35.6126 -78.5574,35.6073 -78.5577,35.6022 -78.558,35.5956 -78.5583,35.5895 -78.5599,35.5842 -78.563,35.5784 -78.5662,35.5726 -78.5695,35.5665 -78.5737,35.5589 -78.5774,35.5522 -78.5813,35.5482 -78.588,35.5437 -78.5924,35.5401 -78.5978,35.535 -78.6043,35.5288 -78.6068,35.5233 -78.6094,35.5175 -78.6117,35.5122 -78.6123,35.5061 -78.6129,35.4997 -78.6134,35.4932 -78.614,35.4862 -78.6146,35.4802 -78.6151,35.4745 -78.6157,35.4679 -78.6161,35.4625 -78.6178,35.4572 -78.6214,35.4515 -78.6252,35.4455 -78.6289,35.4396 -78.6325,35.4338 -78.6372,35.4265 -78.6408,35.4208 -78.6415,35.4142 -78.6421,35.4075 -78.6429,35.4009 -78.6434,35.3948 -78.6439,35.3882 -78.6444,35.3814 -78.6449,35.3751 -78.6453,35.3688 -78.6454,35.3627 -78.6449,35.357 -78.6419,35.3506 -78.6379,35.3449 -78.6374,35.3389 -78.6417,35.3298 -78.6426,35.3237 -78.6424,35.3181 -78.6441,35.3112 -78.6469,35.3001 -78.6482,35.2945 -78.6499,35.2875 -78.6502,35.2801 -78.6499,35.2708 -78.6515,35.2642 -78.6533,35.2576 -78.6551,35.2505 -78.6572,35.2424 -78.6582,35.2281 -78.6583,35.2234 -78.6583,35.2179 -78.6603,35.209 -78.664,35.2006 -78.6674,35.1947 -78.6726,35.186 -78.6755,35.1807 -78.6807,35.1721 -78.6838,35.1667 -78.689,35.1624 -78.6932,35.159 -78.6965,35.1555 -78.7,35.1509 -78.704,35.1455 -78.7083,35.1398 -78.7191,35.1253 -78.7271,35.1145 -78.7295,35.1092 -78.7301,35.104 -78.7309,35.0971 -78.7317,35.0903 -78.7324,35.0838 -78.7332,35.0774 -78.7344,35.0674 -78.7362,35.0511 -78.7397,35.0225 -78.7415,35.0067 -78.7426,34.9975 -78.7422,34.9875 -78.7416,34.9813 -78.7409,34.9754 -78.7403,34.9691 -78.7396,34.9626 -78.739,34.9571 -78.7383,34.9511 -78.7377,34.9451 -78.739,34.9399 -78.7426,34.9347 -78.7458,34.93 -78.7508,34.9227 -78.7554,34.916 -78.7585,34.9115 -78.7621,34.9063 -78.7656,34.901 -78.7694,34.8956 -78.7743,34.8907 -78.7796,34.8856 -78.782,34.8808</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 101.24km --- Imagery, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-88.6536,33.6355 -88.6559,33.6355 -88.6588,33.6353 -88.6663,33.6361 -88.6734,33.6368 -88.683,33.6371 -88.6894,33.6371 -88.6959,33.6364 -88.7011,33.6334 -88.7056,33.63 -88.7093,33.6263 -88.7128,33.6193 -88.7165,33.6146 -88.7205,33.6097 -88.7263,33.6025 -88.73,33.5993 -88.7349,33.5962 -88.7408,33.5926 -88.7471,33.5886 -88.7538,33.5845 -88.761,33.5825 -88.7685,33.5804 -88.7749,33.5786 -88.7815,33.5768 -88.7884,33.5748 -88.7949,33.573 -88.8016,33.5711 -88.8084,33.5692 -88.8149,33.5674 -88.8214,33.5655 -88.8285,33.5636 -88.8356,33.5615 -88.8426,33.5596 -88.8495,33.5577 -88.8562,33.5558 -88.8634,33.5522 -88.8702,33.5491 -88.8774,33.5466 -88.8849,33.5438 -88.8919,33.5412 -88.8973,33.5394 -88.9051,33.5369 -88.912,33.5347 -88.9195,33.5324 -88.9267,33.5302 -88.9336,33.5279 -88.9413,33.5256 -88.9471,33.5237 -88.9549,33.5213 -88.9607,33.5186 -88.9662,33.5151 -88.9724,33.5111 -88.978,33.5075 -88.9834,33.5035 -88.9889,33.4992 -88.9944,33.4948 -88.9991,33.4909 -89.0034,33.4876 -89.008,33.4844 -89.0132,33.4806 -89.018,33.4771 -89.0239,33.4729 -89.0298,33.4694 -89.0368,33.4661 -89.0437,33.4627 -89.0503,33.4596 -89.0559,33.457 -89.0619,33.4542 -89.0683,33.4512 -89.0743,33.4484 -89.0804,33.4456 -89.0853,33.4434 -89.0902,33.4412 -89.0966,33.4382 -89.1027,33.4354 -89.1062,33.4337 -89.1124,33.431 -89.1184,33.4281 -89.1253,33.4254 -89.1318,33.4229 -89.1377,33.4204 -89.1444,33.4177 -89.1492,33.4157 -89.1562,33.4128 -89.1646,33.4092 -89.1754,33.404 -89.1849,33.3995 -89.1921,33.3959 -89.1995,33.3923 -89.2051,33.3897 -89.2104,33.3871 -89.2097,33.3858</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 62.49km --- Imagery, http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-90.644,31.5245 -90.6444,31.5272 -90.6319,31.5738 -90.6286,31.5852 -90.6272,31.5904 -90.6254,31.5972 -90.6234,31.6041 -90.6211,31.6131 -90.6195,31.619 -90.6158,31.6344 -90.6144,31.6398 -90.6121,31.6475 -90.6099,31.6539 -90.6077,31.66 -90.6056,31.6658 -90.6038,31.6714 -90.6015,31.6776 -90.5995,31.6833 -90.5974,31.6892 -90.5952,31.6954 -90.5933,31.7009 -90.5913,31.7067 -90.5892,31.7129 -90.587,31.7191 -90.5851,31.7247 -90.5828,31.7311 -90.5809,31.7367 -90.5787,31.7427 -90.5767,31.7487 -90.5745,31.7551 -90.5723,31.7613 -90.5701,31.7677 -90.5677,31.7745 -90.5655,31.7807 -90.5631,31.7877 -90.5604,31.7945 -90.5573,31.8021 -90.5553,31.8073 -90.553,31.8128 -90.551,31.8177 -90.548,31.8252 -90.545,31.8326 -90.5424,31.8391 -90.5389,31.8478 -90.536,31.855 -90.5338,31.861 -90.5307,31.8694 -90.5271,31.8794 -90.5247,31.8859 -90.5226,31.8915 -90.5205,31.8974 -90.5183,31.9033 -90.5158,31.9098 -90.5137,31.9164 -90.5115,31.9225 -90.5092,31.9286 -90.5051,31.9396 -90.5012,31.9504 -90.4986,31.9575 -90.4962,31.9639 -90.4942,31.9693 -90.4924,31.9744 -90.4907,31.9788 -90.4869,31.9891 -90.4848,31.995 -90.4822,32.0021 -90.4806,32.0064 -90.4786,32.0118 -90.4764,32.0181 -90.4741,32.0244 -90.472,32.03 -90.4696,32.0362 -90.4672,32.0427 -90.4653,32.0483 -90.463,32.0547 -90.4607,32.0609 -90.4584,32.0661 -90.4558,32.0725 -90.4533,32.0786 -90.4507,32.0849 -90.4485,32.0902 -90.4461,32.0959 -90.4437,32.1016 -90.4414,32.1079 -90.4393,32.1139 -90.4371,32.1203 -90.4349,32.1265 -90.4082,32.1989 -90.3987,32.2255 -90.3734,32.2966 -90.3684,32.2992 -90.3624,32.3019 -90.3565,32.3048 -90.3512,32.3073 -90.3459,32.3099 -90.3406,32.3109 -90.3347,32.3108 -90.3292,32.3111</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ENTERGY MISSISSIPPI INC</name><description>500kV --- AC --- 86.66km --- Imagery, Inferred from http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-88.8585,34.3778 -88.8569,34.3765 -88.8559,34.3791 -88.8532,34.3814 -88.851,34.3858 -88.851,34.3913 -88.851,34.3967 -88.8538,34.401 -88.8583,34.4048 -88.8628,34.4087 -88.8674,34.4126 -88.8721,34.4167 -88.8767,34.4207 -88.8813,34.4246 -88.8869,34.4295 -88.8906,34.4339 -88.8931,34.4386 -88.895,34.4432 -88.897,34.4493 -88.899,34.4554 -88.9014,34.4624 -88.9032,34.4677 -88.9065,34.4725 -88.9119,34.4802 -88.9157,34.4845 -88.9199,34.4892 -88.9243,34.4941 -88.9275,34.4977 -88.9318,34.5025 -88.9341,34.5091 -88.9347,34.514 -88.9353,34.519 -88.936,34.5252 -88.9367,34.5313 -88.9367,34.5379 -88.9376,34.5409</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>TENNESSEE VALLEY AUTHORITY</name><description>500kV --- AC --- 20.15km --- Imagery, http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-90.9287,32.281 -90.9189,32.2778 -90.901,32.2769 -90.8328,32.2739 -90.7782,32.2717 -90.6682,32.2709 -90.4782,32.2708 -90.405,32.2784 -90.3741,32.2966 -90.3314,32.3111</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ENTERGY MISSISSIPPI INC</name><description>500kV --- AC --- 60.91km --- Imagery, Inferred from http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-86.7472,34.1919 -86.7427,34.1928 -86.7373,34.1938 -86.7332,34.1938 -86.7245,34.192 -86.7184,34.192 -86.7132,34.1921 -86.7058,34.1912 -86.6988,34.1899 -86.6917,34.1892 -86.6853,34.1889 -86.68,34.1889 -86.6734,34.1888 -86.668,34.189 -86.6607,34.1898 -86.6536,34.1907 -86.6471,34.1914 -86.6403,34.1918 -86.6324,34.1922 -86.6254,34.1925 -86.6171,34.193 -86.6111,34.1937 -86.6051,34.1942 -86.5987,34.1942 -86.5917,34.1942 -86.5849,34.1942 -86.5781,34.194 -86.57,34.1938 -86.5627,34.1937 -86.5576,34.1937 -86.5508,34.1939 -86.545,34.194 -86.5378,34.194 -86.5303,34.194 -86.5235,34.194 -86.518,34.194 -86.5106,34.1966 -86.5054,34.1984 -86.4984,34.2009 -86.4935,34.2026 -86.4844,34.2035 -86.4762,34.2042 -86.4686,34.205 -86.4621,34.2063 -86.455,34.2086 -86.4481,34.2109 -86.4403,34.2135 -86.4341,34.2137 -86.4265,34.214 -86.4192,34.2143 -86.4116,34.2145 -86.4051,34.2156 -86.3955,34.2196 -86.3912,34.222 -86.3862,34.2258 -86.3808,34.2289 -86.3741,34.2317 -86.3685,34.234 -86.3621,34.2366 -86.3567,34.2378 -86.3503,34.2392 -86.3436,34.2406 -86.3374,34.242 -86.332,34.2425 -86.3263,34.2426 -86.3198,34.2427 -86.3134,34.2427 -86.3075,34.2434 -86.3013,34.2461 -86.2947,34.2508 -86.2908,34.2553 -86.2868,34.2601 -86.2812,34.261 -86.2742,34.2617 -86.2694,34.264 -86.2629,34.2672 -86.2578,34.2703 -86.2544,34.2729 -86.2511,34.2762 -86.2483,34.2799 -86.2455,34.2849 -86.2432,34.2889 -86.2414,34.2918 -86.2386,34.2958 -86.2358,34.2996 -86.2348,34.3034 -86.2329,34.3068 -86.2309,34.3104 -86.2288,34.3142 -86.2253,34.3166 -86.2224,34.3188 -86.2191,34.3215 -86.2162,34.3236 -86.2115,34.3256 -86.2083,34.327 -86.2054,34.3287 -86.2004,34.3313 -86.1961,34.3333 -86.1918,34.3357 -86.1845,34.3413 -86.1809,34.3439 -86.1774,34.346 -86.1733,34.3484 -86.1691,34.351 -86.1651,34.3538 -86.1614,34.3565 -86.1587,34.3591 -86.156,34.3628 -86.1539,34.3669 -86.1528,34.3698 -86.1522,34.3727 -86.1516,34.377 -86.151,34.3809 -86.1504,34.385 -86.1498,34.3891 -86.1502,34.3933 -86.1505,34.3975 -86.1506,34.402 -86.1507,34.4053 -86.1514,34.4097 -86.1519,34.4135 -86.1525,34.417 -86.1529,34.4205 -86.1532,34.4247 -86.1536,34.4289 -86.1563,34.437 -86.1553,34.4426 -86.1549,34.4461 -86.1549,34.4504 -86.1549,34.4546 -86.1549,34.4579 -86.1548,34.4623 -86.1517,34.4635 -86.1477,34.4646 -86.143,34.466 -86.1381,34.4677 -86.133,34.4691 -86.127,34.4699 -86.1233,34.4703 -86.1195,34.4712 -86.1152,34.4722 -86.1108,34.4733 -86.107,34.4749 -86.103,34.4776 -86.0994,34.4801 -86.0941,34.4837 -86.0873,34.4884 -86.0841,34.4905 -86.0801,34.4933 -86.0777,34.4953 -86.074,34.4984 -86.0704,34.5016 -86.0668,34.5047 -86.0614,34.5094 -86.0586,34.5118 -86.0549,34.5141 -86.051,34.5165 -86.0468,34.5191 -86.0424,34.5217 -86.0392,34.5244 -86.0363,34.5279 -86.0334,34.5312 -86.0303,34.5347 -86.0271,34.5382 -86.0236,34.5412 -86.0194,34.5439 -86.0152,34.5466 -86.0113,34.5477 -86.0077,34.5491 -86.0049,34.5507 -86.0011,34.5529 -85.9955,34.554 -85.9896,34.5553 -85.9843,34.5567 -85.9773,34.5594 -85.9701,34.5627 -85.9629,34.5662 -85.9562,34.5694 -85.9499,34.5723 -85.9425,34.5743 -85.9376,34.5778 -85.9317,34.5801 -85.9276,34.5847 -85.9229,34.5885 -85.9178,34.5925 -85.9127,34.5962 -85.9082,34.5994 -85.9065,34.6038 -85.9069,34.6098 -85.9074,34.6157 -85.907,34.6212 -85.9071,34.6269 -85.9084,34.6335 -85.9103,34.6416 -85.9116,34.6479 -85.9097,34.653 -85.9058,34.6637 -85.9047,34.6704 -85.9056,34.6754 -85.9054,34.6792 -85.9054,34.6823</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 112.55km --- Imagery, OpenStreetMap, Inferred from http://www.tva.com/power/projects/hunstville_al/205817webmap_adj_pref.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-89.2097,33.3858 -89.2113,33.3866 -89.2163,33.3844 -89.2242,33.3811 -89.2308,33.3782 -89.2351,33.3764 -89.2404,33.3739 -89.2463,33.3713 -89.2533,33.3681 -89.2608,33.3647 -89.2669,33.3619 -89.2729,33.3592 -89.2771,33.3573 -89.2834,33.3544 -89.2912,33.3509 -89.2978,33.348 -89.3042,33.3451 -89.3085,33.3431 -89.3145,33.3404 -89.3219,33.3372 -89.3305,33.3335 -89.3363,33.3313 -89.3431,33.3291 -89.3546,33.3255 -89.3647,33.3223 -89.37,33.3203 -89.3765,33.3177 -89.3828,33.3151 -89.388,33.313 -89.3934,33.3101 -89.3977,33.3078 -89.4055,33.3037 -89.4124,33.3 -89.4128,33.2984</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 22.36km --- Imagery, Inferred from http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-89.4211,33.2915 -89.4222,33.2903 -89.4246,33.2887 -89.4291,33.284 -89.4336,33.2792 -89.4391,33.2734 -89.4444,33.2678 -89.4484,33.2636 -89.4522,33.2595 -89.4569,33.2546 -89.4612,33.25 -89.4677,33.2432 -89.472,33.2386 -89.4759,33.2343 -89.4805,33.2295 -89.4848,33.225 -89.4896,33.2198 -89.4937,33.2153 -89.4985,33.2101 -89.5026,33.2056 -89.5069,33.201 -89.5109,33.1966 -89.5174,33.1894 -89.5224,33.1838 -89.5265,33.1793 -89.5305,33.1749 -89.5349,33.1699 -89.5417,33.1621 -89.546,33.1573 -89.5524,33.1498 -89.5562,33.1452 -89.5643,33.1361 -89.5687,33.1308 -89.5725,33.1266 -89.5762,33.1224 -89.5813,33.1166 -89.5854,33.1118 -89.5894,33.1072 -89.5936,33.1024 -89.599,33.0963 -89.6028,33.0919 -89.607,33.087 -89.6132,33.0802 -89.6171,33.0757 -89.6216,33.0716 -89.6261,33.0675 -89.6317,33.0624 -89.6369,33.0575 -89.6421,33.0526 -89.6472,33.048 -89.6517,33.044 -89.6572,33.039 -89.662,33.0346 -89.6665,33.0305 -89.6734,33.0242 -89.6779,33.0197 -89.6802,33.0161</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 38.09km --- Imagery, Inferred from http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-89.6814,33.0148 -89.6862,33.0123 -89.6898,33.0091 -89.6942,33.0052 -89.699,33.0008 -89.704,32.9963 -89.7089,32.9918 -89.7138,32.9875 -89.7196,32.9821 -89.725,32.9769 -89.7297,32.9726 -89.735,32.9676 -89.7397,32.9633 -89.7456,32.9579 -89.7507,32.9531 -89.7555,32.9483 -89.7604,32.9433 -89.7652,32.9386 -89.7701,32.9337 -89.7739,32.9299 -89.7786,32.9252 -89.7835,32.9203 -89.7881,32.9157 -89.793,32.9108 -89.7981,32.9057 -89.803,32.9009 -89.8083,32.8956 -89.8124,32.8915 -89.8165,32.8875 -89.8214,32.8826 -89.826,32.8781 -89.8308,32.8732 -89.8353,32.8688 -89.8394,32.8646 -89.8447,32.8596 -89.8494,32.855 -89.8539,32.8506 -89.8596,32.8451 -89.8648,32.8402 -89.87,32.8351 -89.8746,32.8308 -89.8798,32.8257 -89.8856,32.8202 -89.8906,32.8153 -89.8955,32.8107 -89.8997,32.8067 -89.9047,32.8018 -89.909,32.7979 -89.9141,32.793 -89.919,32.7883 -89.9242,32.7832 -89.9289,32.7785 -89.9336,32.7739 -89.9385,32.7689 -89.9435,32.764 -89.9482,32.7593 -89.9537,32.7537 -89.9581,32.7492 -89.9626,32.7447 -89.967,32.7403 -89.9718,32.7355 -89.9768,32.7305 -89.9812,32.726 -89.985,32.7222 -89.9902,32.7169 -89.9938,32.7133 -89.9988,32.7082 -90.0034,32.7035 -90.0083,32.6984 -90.013,32.6938 -90.0179,32.6887 -90.0232,32.6834 -90.0303,32.6761 -90.0355,32.6708 -90.0408,32.6661 -90.0465,32.6611 -90.0524,32.6562 -90.0582,32.6512 -90.0635,32.6466 -90.069,32.6419 -90.074,32.6377 -90.0791,32.6333 -90.0838,32.6294 -90.0888,32.625 -90.0936,32.6208 -90.0987,32.6164 -90.1037,32.6119 -90.1092,32.6071 -90.1147,32.6022 -90.1197,32.5979 -90.1249,32.5933 -90.1307,32.5883 -90.1362,32.5833 -90.1413,32.5788 -90.1466,32.5741 -90.152,32.5695 -90.1562,32.5659 -90.162,32.5612 -90.1673,32.5568 -90.1729,32.5521 -90.1777,32.5481 -90.1827,32.544 -90.1879,32.5396 -90.1931,32.5353 -90.198,32.5312 -90.2033,32.5269 -90.2092,32.522 -90.2148,32.5171 -90.2202,32.5125 -90.2251,32.5082 -90.2298,32.5042 -90.2346,32.5001 -90.24,32.4955 -90.2453,32.4909 -90.2507,32.4862 -90.2558,32.4819 -90.2603,32.4779 -90.2575,32.4727 -90.2549,32.4675 -90.2525,32.4629 -90.2496,32.4573 -90.2469,32.4524 -90.2441,32.4471 -90.241,32.4424 -90.2371,32.4375 -90.2333,32.4327 -90.2296,32.4281 -90.2256,32.4231 -90.2216,32.4181 -90.2176,32.4132 -90.214,32.4086 -90.214,32.4025 -90.2136,32.3967 -90.2128,32.3914 -90.212,32.3856 -90.2144,32.3823</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ENTERGY MISSISSIPPI INC</name><description>500kV --- AC --- 90.46km --- Imagery, Inferred from http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-90.2144,32.3823 -90.2125,32.386 -90.2133,32.392 -90.214,32.397 -90.2144,32.4025 -90.2144,32.4085 -90.2179,32.413 -90.2223,32.4184 -90.2262,32.4233 -90.2306,32.4287 -90.2343,32.4333 -90.2373,32.4372 -90.2413,32.4422 -90.2445,32.447 -90.2473,32.4522 -90.2499,32.4572 -90.2529,32.4629 -90.2553,32.4673 -90.2579,32.4726 -90.2615,32.4769 -90.266,32.4732 -90.2711,32.4686 -90.2766,32.4639 -90.2818,32.4595 -90.2875,32.4552 -90.2937,32.451 -90.2996,32.447 -90.3057,32.4428 -90.3116,32.4388 -90.3178,32.4346 -90.3242,32.4302 -90.3306,32.4259 -90.337,32.4215 -90.3432,32.4172 -90.3493,32.4131 -90.3518,32.407 -90.3545,32.4003 -90.3571,32.3938 -90.3595,32.3877 -90.362,32.3817 -90.3645,32.3752 -90.3666,32.3702 -90.3689,32.3643 -90.3692,32.3592 -90.3695,32.3534 -90.3699,32.3481 -90.3702,32.342 -90.3704,32.3363 -90.3657,32.3314 -90.3594,32.3251 -90.3553,32.321 -90.3517,32.3179 -90.3473,32.3153 -90.3414,32.312 -90.3347,32.3119 -90.3292,32.3111</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ENTERGY MISSISSIPPI INC</name><description>500kV --- AC --- 35.07km --- Imagery, Inferred from http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-88.938,34.5412 -88.9365,34.5413 -88.9359,34.5492 -88.9355,34.5559 -88.9333,34.5609 -88.932,34.5669 -88.9308,34.5729 -88.9292,34.5806 -88.9306,34.5866 -88.9316,34.5913 -88.9329,34.5974 -88.9343,34.6011 -88.9372,34.606 -88.9396,34.6101 -88.9433,34.6165 -88.9459,34.6209 -88.9481,34.6247 -88.9514,34.6303 -88.955,34.6383 -88.9556,34.6429 -88.9561,34.6475 -88.9569,34.6536 -88.9593,34.6585 -88.9618,34.6633 -88.9657,34.6668 -88.9757,34.6756 -88.9806,34.6788 -88.9857,34.6821 -88.9917,34.6859 -88.9974,34.6895 -89.0034,34.6934 -89.0103,34.6977 -89.0149,34.7022 -89.0213,34.7085 -89.0267,34.7138 -89.0299,34.7189 -89.0335,34.7245 -89.037,34.7301 -89.0394,34.7361 -89.0401,34.7423 -89.0408,34.7486 -89.0436,34.7521 -89.049,34.7545 -89.0546,34.757 -89.0612,34.76 -89.0669,34.7625 -89.0731,34.7656 -89.0796,34.7692 -89.0854,34.7723 -89.0914,34.7754 -89.0978,34.7789 -89.1037,34.7821 -89.1085,34.7847 -89.1139,34.7876 -89.12,34.791 -89.1265,34.7939 -89.132,34.7965 -89.1379,34.7992 -89.1885,34.8203 -89.1976,34.8257 -89.1994,34.8278 -89.2004,34.829</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>TENNESSEE VALLEY AUTHORITY</name><description>500kV --- AC --- 43.36km --- Imagery, http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-90.9287,32.281 -90.9287,32.2788 -90.9333,32.2761 -90.9351,32.2707 -90.9372,32.2647 -90.9393,32.2587 -90.941,32.2538 -90.9428,32.2487 -90.944,32.2433 -90.9454,32.237 -90.947,32.23 -90.9484,32.2234 -90.9498,32.2173 -90.951,32.212 -90.95,32.206 -90.949,32.2003 -90.9479,32.1939 -90.9468,32.1875 -90.9468,32.1808 -90.9474,32.1613 -90.9454,32.1558 -90.945,32.1514 -90.9467,32.1457 -90.9481,32.1412 -90.9505,32.1357 -90.9524,32.1308 -90.9548,32.1251 -90.9552,32.1194 -90.9545,32.1133 -90.9537,32.1078 -90.9543,32.1026 -90.9564,32.0956 -90.9583,32.0895 -90.96,32.0841 -90.9619,32.0777 -90.9636,32.0722 -90.9666,32.068 -90.9717,32.0654 -90.9764,32.063 -90.9816,32.0604 -90.9865,32.0579 -90.9921,32.055 -90.9969,32.0514 -91.001,32.0472 -91.0059,32.0422 -91.0105,32.0374 -91.0153,32.0325 -91.0197,32.028 -91.024,32.0236 -91.028,32.0195 -91.0323,32.0151 -91.0354,32.012 -91.04,32.0072 -91.0441,32.0055</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ENTERGY MISSISSIPPI INC</name><description>500kV --- AC --- 32.65km --- Imagery, Inferred from http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-91.0441,32.0055 -91.042,32.0016 -91.0433,31.9971 -91.0468,31.9937 -91.0501,31.9905 -91.054,31.9867 -91.0575,31.9834 -91.0605,31.9804 -91.0642,31.9762 -91.0617,31.9711 -91.0596,31.967 -91.0569,31.9615 -91.0548,31.9575 -91.0515,31.951 -91.0483,31.9446 -91.0465,31.9411 -91.0441,31.9363 -91.0408,31.9296 -91.0379,31.9241 -91.0353,31.9189 -91.0325,31.9134 -91.0301,31.9086 -91.0269,31.9025 -91.0238,31.8964 -91.0214,31.8924 -91.0166,31.8893 -91.0116,31.8858 -91.0055,31.8811 -91.0007,31.8772 -90.9949,31.8726 -90.9899,31.8687 -90.985,31.8648 -90.9798,31.8606 -90.9732,31.8554 -90.9682,31.8515 -90.9636,31.8477 -90.9589,31.8439 -90.9534,31.8395 -90.9477,31.8349 -90.9422,31.8306 -90.9365,31.8261 -90.9304,31.8213 -90.9254,31.8173 -90.9191,31.8123 -90.9129,31.8074 -90.9076,31.8032 -90.9023,31.799 -90.8973,31.7949 -90.8927,31.7913 -90.8866,31.7877 -90.88,31.7838 -90.8735,31.7799 -90.8693,31.7774 -90.8636,31.7741 -90.8589,31.7712 -90.8531,31.7678 -90.8486,31.7651 -90.8412,31.7608 -90.8358,31.7576 -90.8294,31.7537 -90.8223,31.7495 -90.8153,31.7453 -90.8085,31.7413 -90.8017,31.7373 -90.7952,31.7334 -90.7897,31.7301 -90.7836,31.7266 -90.7779,31.7232 -90.7715,31.7194 -90.7656,31.7153 -90.7601,31.7108 -90.7552,31.7067 -90.75,31.7024 -90.744,31.6975 -90.7382,31.6928 -90.7344,31.6866 -90.7308,31.6807 -90.7264,31.6734 -90.7225,31.6685 -90.7181,31.6646 -90.7148,31.6607 -90.7105,31.655 -90.7061,31.6493 -90.7023,31.6445 -90.6987,31.6397 -90.6953,31.6351 -90.6922,31.631 -90.6883,31.6258 -90.6838,31.6195 -90.6795,31.6139 -90.6755,31.6086 -90.6721,31.6042 -90.668,31.5988 -90.6639,31.5934 -90.6596,31.5878 -90.6552,31.582 -90.6507,31.5763 -90.6485,31.5711 -90.6481,31.5653 -90.6478,31.5615 -90.6473,31.5559 -90.6469,31.5498 -90.6465,31.5457 -90.6462,31.5414 -90.6457,31.5351 -90.6454,31.5313 -90.6447,31.5259</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ENTERGY MISSISSIPPI INC</name><description>500kV --- AC --- 67.97km --- Imagery, Inferred from http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-81.6796,31.2938 -81.6808,31.2985 -81.6802,31.3047 -81.6797,31.3096 -81.679,31.3152 -81.6782,31.3213 -81.6774,31.3277 -81.6766,31.3344 -81.6757,31.3406 -81.675,31.3466 -81.6741,31.3532 -81.6732,31.3599 -81.6724,31.3664 -81.6716,31.373 -81.6715,31.3787 -81.6715,31.3843 -81.6714,31.3907 -81.6714,31.3972 -81.6714,31.4005 -81.6713,31.4071 -81.6739,31.4123 -81.6802,31.417 -81.6857,31.4215 -81.6914,31.4259 -81.6968,31.4303 -81.7027,31.4352 -81.7081,31.4398 -81.7135,31.4444 -81.7179,31.448 -81.7235,31.4524 -81.7294,31.4572 -81.735,31.4616 -81.7404,31.4662 -81.7461,31.4712 -81.7514,31.4759 -81.7568,31.4807 -81.7623,31.4856 -81.7675,31.4901 -81.7729,31.495 -81.7784,31.4999 -81.7836,31.5045 -81.7899,31.5096 -81.7961,31.5143 -81.8016,31.5185 -81.8067,31.5225 -81.8114,31.5263 -81.8169,31.531 -81.822,31.5352 -81.8272,31.5393 -81.8329,31.5437 -81.8384,31.548 -81.844,31.5524 -81.8495,31.5566 -81.8551,31.5609 -81.8616,31.5653 -81.8684,31.5693 -81.8747,31.5731 -81.8809,31.5768 -81.8865,31.5802 -81.8929,31.5839 -81.9007,31.5843 -81.9067,31.5879 -81.9105,31.5944 -81.9168,31.5981 -81.9234,31.6021 -81.9285,31.6051 -81.9346,31.6088 -81.9429,31.6129 -81.9495,31.616 -81.9561,31.619 -81.9621,31.6217 -81.9677,31.6242 -81.9743,31.6271 -81.9809,31.6301 -81.9878,31.6331 -81.994,31.6356 -82.0007,31.6376 -82.008,31.6399 -82.0146,31.642 -82.0221,31.6445 -82.0295,31.6472 -82.0478,31.6591 -82.073,31.674 -82.0843,31.6791 -82.0867,31.6847 -82.0893,31.6912 -82.0918,31.6974 -82.0944,31.7037 -82.097,31.7099 -82.0996,31.7162 -82.1021,31.7225 -82.1046,31.7287 -82.1072,31.7349 -82.1096,31.7408 -82.1121,31.7469 -82.1169,31.7498 -82.1223,31.7531 -82.1285,31.7569 -82.133,31.7597 -82.1379,31.7626 -82.144,31.7663 -82.1501,31.7701 -82.1562,31.7738 -82.1622,31.7775 -82.1684,31.7812 -82.1746,31.7851 -82.1782,31.7893 -82.1798,31.7948 -82.1817,31.8011 -82.1836,31.8075 -82.1881,31.8169 -82.1927,31.822 -82.1996,31.8296 -82.2043,31.8347 -82.2094,31.8403 -82.214,31.8454 -82.2191,31.851 -82.2236,31.8559 -82.2288,31.8617 -82.2337,31.867 -82.2384,31.8722 -82.244,31.8784 -82.2535,31.8889 -82.2607,31.8967 -82.2658,31.9023 -82.2709,31.9079 -82.2764,31.914 -82.285,31.9141 -82.2928,31.9141 -82.3002,31.9141 -82.3082,31.9141 -82.3157,31.9142 -82.323,31.9142 -82.3306,31.9142 -82.339,31.9143 -82.3436,31.9176 -82.3436,31.9257 -82.3436,31.9326</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 101.69km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-84.9224,34.1215 -84.9224,34.1188 -84.9308,34.1203 -84.9368,34.1213 -84.9463,34.1203 -84.9562,34.1193 -84.956,34.1271 -84.9559,34.1343 -84.9558,34.1415 -84.9556,34.1489 -84.9556,34.1541 -84.9555,34.1591 -84.9553,34.1686 -84.9552,34.1773 -84.9522,34.1878 -84.9504,34.1922 -84.9466,34.2022 -84.9437,34.2096 -84.9414,34.2149 -84.9374,34.2234 -84.9317,34.2359 -84.9292,34.2411 -84.9269,34.2474 -84.9244,34.2538 -84.9202,34.2662 -84.9184,34.2715 -84.9164,34.2771 -84.9144,34.2827 -84.9118,34.2911 -84.9086,34.3023 -84.9063,34.3101 -84.9026,34.3202 -84.9,34.3271 -84.898,34.3326 -84.8959,34.3383 -84.8945,34.3421 -84.8897,34.3552 -84.8876,34.361 -84.8849,34.3682 -84.8828,34.3771 -84.8828,34.3845</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 31.53km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-83.6003,32.5661 -83.5961,32.564 -83.5896,32.56 -83.5812,32.5562 -83.5748,32.5528 -83.5684,32.5499 -83.5603,32.5461 -83.5541,32.5445 -83.5437,32.5442 -83.5362,32.5439 -83.5298,32.5437 -83.5225,32.5436 -83.5137,32.5428 -83.507,32.5426 -83.5048,32.539 -83.4984,32.5288 -83.4957,32.5246 -83.49,32.5154 -83.4874,32.5114 -83.4843,32.5064 -83.4795,32.4987 -83.4759,32.4929 -83.4715,32.4861 -83.4666,32.4789 -83.4616,32.4715 -83.4596,32.4685 -83.4547,32.4615 -83.4503,32.4555 -83.446,32.4495 -83.4424,32.4445 -83.4369,32.437 -83.4314,32.4294 -83.4268,32.423 -83.4229,32.4177 -83.4172,32.4128 -83.4107,32.4072 -83.4045,32.4025 -83.3981,32.3971 -83.3825,32.3838 -83.3745,32.377 -83.3674,32.3707 -83.3617,32.3658 -83.3526,32.3581 -83.3457,32.3522 -83.339,32.3465 -83.3282,32.3371 -83.3228,32.3325 -83.3176,32.3274 -83.3126,32.3218 -83.3073,32.316 -83.3013,32.3094 -83.2971,32.3047 -83.2916,32.2988 -83.2859,32.2929 -83.2805,32.2873 -83.2747,32.2814 -83.2697,32.2762 -83.2629,32.2747 -83.2541,32.2729 -83.2461,32.2712 -83.2384,32.2695 -83.2282,32.2675 -83.2194,32.266 -83.2119,32.2646 -83.2042,32.2632 -83.1951,32.2616 -83.1876,32.2602 -83.1794,32.2588 -83.1712,32.2573 -83.1628,32.2558 -83.1547,32.2523 -83.1458,32.2497 -83.1381,32.2475 -83.1303,32.2452 -83.123,32.2431 -83.1171,32.2408 -83.1108,32.2374 -83.1043,32.234 -83.0994,32.2316 -83.0907,32.2277 -83.0839,32.2247 -83.076,32.2212 -83.0686,32.2179 -83.0609,32.2145 -83.0532,32.2111 -83.045,32.2074 -83.036,32.2034 -83.0275,32.1997 -83.0199,32.1963 -83.0137,32.1933 -83.0099,32.1913 -83.0019,32.1871 -82.9937,32.1827 -82.9861,32.1787 -82.9801,32.1755 -82.9728,32.1734 -82.9659,32.1727 -82.955,32.1716 -82.946,32.1707 -82.9418,32.1703 -82.9339,32.1696 -82.9256,32.1688 -82.9178,32.168 -82.9102,32.1673 -82.9022,32.1665 -82.8935,32.1657 -82.8896,32.1653 -82.8811,32.1643 -82.8717,32.1632 -82.8637,32.1622 -82.8569,32.1582 -82.85,32.1542 -82.843,32.15 -82.8368,32.1463 -82.8299,32.1423 -82.8224,32.1378 -82.815,32.1334 -82.8076,32.1293 -82.8011,32.1257 -82.7944,32.122 -82.7877,32.1184 -82.7819,32.1153 -82.7748,32.1113 -82.7682,32.1074 -82.7607,32.103 -82.754,32.0991 -82.7475,32.0953 -82.7406,32.0913 -82.7333,32.087 -82.7258,32.0826 -82.718,32.078 -82.7109,32.0739 -82.704,32.0698 -82.6966,32.0655 -82.6886,32.0632 -82.6801,32.0629 -82.6722,32.0626 -82.6638,32.0622 -82.6555,32.0618 -82.647,32.0615 -82.639,32.0611 -82.6311,32.0608 -82.6228,32.0604 -82.6145,32.057 -82.6094,32.0549 -82.6014,32.0515 -82.5943,32.0485 -82.5864,32.0453 -82.5805,32.0428 -82.5738,32.0398 -82.5673,32.0369 -82.5599,32.0336 -82.5524,32.0302 -82.5455,32.0271 -82.5385,32.024 -82.5316,32.0209 -82.5246,32.0177 -82.5171,32.0144 -82.5099,32.013 -82.5031,32.0118 -82.4948,32.0103 -82.4863,32.0087 -82.478,32.0072 -82.4731,32.0064 -82.464,32.0047 -82.4564,32.0031 -82.4472,32.0011 -82.4377,31.9991 -82.4311,31.9966 -82.4245,31.993 -82.4173,31.989 -82.4091,31.9844 -82.4003,31.9794 -82.3941,31.976 -82.387,31.972 -82.3794,31.9678 -82.3725,31.964 -82.3653,31.9599 -82.3576,31.9557 -82.3578,31.9494 -82.358,31.9422 -82.3581,31.9383 -82.3584,31.9337 -82.3527,31.9339 -82.3476,31.9341</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 147.21km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-83.8128,33.0606 -83.8144,33.0612 -83.8186,33.0641 -83.8232,33.0696 -83.8283,33.0702 -83.8365,33.0683 -83.8445,33.0665 -83.8503,33.0656 -83.8594,33.0662 -83.8593,33.0738 -83.8587,33.0805 -83.8588,33.0962 -83.8583,33.1066 -83.8572,33.113 -83.8542,33.1291 -83.8519,33.1418 -83.8512,33.1521 -83.8519,33.1713 -83.8519,33.1831 -83.8521,33.1963 -83.852,33.2194 -83.8519,33.2311 -83.8546,33.2431 -83.8566,33.2511 -83.8577,33.2597 -83.8576,33.2728 -83.8576,33.2856 -83.8659,33.3075 -83.8702,33.3127 -83.8827,33.3278 -83.8904,33.3372 -83.8948,33.3424 -83.9085,33.3518 -83.9154,33.3648 -83.9154,33.3805 -83.9149,33.39 -83.9148,33.4014 -83.9227,33.4191 -83.9328,33.4301 -83.9428,33.4408 -83.9482,33.4468 -83.9549,33.4536 -83.966,33.4642 -83.9697,33.469 -83.9762,33.4777 -83.9829,33.4864 -83.9871,33.4934 -83.9936,33.5042 -83.9993,33.5141 -84.0019,33.5171 -84.0146,33.5276 -84.0253,33.5338 -84.0358,33.54 -84.0433,33.5444 -84.0578,33.5632 -84.0723,33.5817 -84.0824,33.5911 -84.1123,33.6076 -84.1222,33.6112 -84.1264,33.6154 -84.1254,33.6227 -84.1243,33.6291 -84.1234,33.6353</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 74.87km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-84.8563,33.7407 -84.86,33.7374 -84.868,33.7341 -84.8717,33.73 -84.8714,33.7239 -84.8715,33.7167 -84.8728,33.7042 -84.873,33.6971 -84.8742,33.6915 -84.8767,33.6864 -84.8803,33.6797 -84.8841,33.6722 -84.8871,33.6664 -84.8906,33.6595 -84.8936,33.6537 -84.8976,33.6465 -84.9019,33.6388 -84.9045,33.6342 -84.9065,33.6296 -84.9103,33.6213 -84.9132,33.6151 -84.9162,33.6095 -84.9197,33.6041 -84.924,33.5975 -84.9286,33.5907 -84.9329,33.5841 -84.9367,33.5783 -84.9406,33.5725 -84.9469,33.5628 -84.9508,33.5568 -84.9541,33.5518 -84.9583,33.5449 -84.963,33.5373 -84.9677,33.5295 -84.9712,33.5236 -84.9749,33.5175 -84.979,33.5106 -84.9834,33.5034 -84.9864,33.498 -84.9892,33.4926 -84.9935,33.4848 -84.9972,33.4784 -85.0022,33.4702 -85.0065,33.4631 -85.0095,33.4582 -85.013,33.4523 -85.0173,33.4421 -85.0185,33.4363 -85.0199,33.4293 -85.0214,33.4225 -85.0228,33.4152 -85.0262,33.4095 -85.0296,33.4108</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 38.66km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-82.3476,31.9341 -82.3525,31.9334 -82.3525,31.9276 -82.3511,31.9207 -82.3518,31.9159 -82.3609,31.9135 -82.3673,31.9117 -82.373,31.9102 -82.3773,31.9085 -82.3845,31.9057 -82.3906,31.9033 -82.3972,31.9008 -82.404,31.8982 -82.4114,31.8954 -82.4181,31.893 -82.4255,31.8904 -82.4313,31.8882 -82.4351,31.8867 -82.441,31.8845 -82.4465,31.881 -82.4526,31.8772 -82.4587,31.8735 -82.465,31.8694 -82.4716,31.8653 -82.4778,31.8614 -82.4852,31.8567 -82.4923,31.8523 -82.4974,31.8498 -82.5035,31.8468 -82.5109,31.8433 -82.5155,31.8407 -82.5206,31.8377 -82.5273,31.8338 -82.5339,31.8299 -82.541,31.8258 -82.5474,31.822 -82.5538,31.8182 -82.5603,31.8144 -82.5678,31.8117 -82.5749,31.8092 -82.5825,31.8066 -82.5895,31.8041 -82.5962,31.8018 -82.6025,31.7975 -82.6087,31.7933 -82.6147,31.7893 -82.6208,31.7851 -82.6287,31.7797 -82.6358,31.7749 -82.6447,31.7689 -82.6505,31.7649 -82.6575,31.7619 -82.6651,31.7586 -82.6725,31.7555 -82.68,31.7522 -82.687,31.7492 -82.7055,31.7414 -82.7127,31.7384 -82.7229,31.734 -82.7297,31.7311 -82.7368,31.7282 -82.7482,31.7233 -82.7558,31.7202 -82.7635,31.7172 -82.7717,31.7141 -82.7792,31.7114 -82.7867,31.7087 -82.7938,31.7061 -82.8014,31.7034 -82.8083,31.7005 -82.8151,31.6969 -82.822,31.6933 -82.8287,31.6898 -82.8349,31.6867 -82.8378,31.6854 -82.8441,31.6826 -82.8513,31.6793 -82.8586,31.678 -82.8658,31.678 -82.8735,31.6781 -82.8804,31.6781 -82.8888,31.6781 -82.8967,31.678 -82.9035,31.6771 -82.9097,31.6755 -82.9167,31.6737 -82.9247,31.6717 -82.9324,31.6697 -82.9403,31.6677 -82.9484,31.6657 -82.9555,31.6639 -82.9622,31.6636 -82.97,31.6634 -82.9788,31.6631 -82.987,31.6629 -82.9941,31.6626 -82.9988,31.6626 -83.0067,31.6625 -83.0144,31.6624 -83.0231,31.6612 -83.0312,31.66 -83.0389,31.6589 -83.047,31.6578 -83.0538,31.6568 -83.0651,31.6552 -83.0728,31.6541 -83.0806,31.6529 -83.0876,31.6515 -83.0947,31.6493 -83.103,31.6468 -83.1077,31.6453 -83.1102,31.6448 -83.1211,31.6428 -83.129,31.6413 -83.1366,31.64 -83.1464,31.6383 -83.1639,31.6351 -83.1739,31.6331 -83.1794,31.6321 -83.1887,31.6304 -83.2045,31.6272 -83.2082,31.6265 -83.2117,31.6265 -83.2198,31.6263 -83.232,31.626 -83.2401,31.6254 -83.2447,31.6251 -83.2525,31.6246 -83.2584,31.6241 -83.262,31.6236 -83.2823,31.6223 -83.2879,31.6218 -83.2947,31.6214 -83.3063,31.6199 -83.3126,31.6173 -83.3183,31.6153 -83.3229,31.6133 -83.3321,31.6097 -83.3388,31.6068 -83.3468,31.6035 -83.3556,31.5997 -83.3655,31.5953 -83.3725,31.5924 -83.3774,31.5902 -83.3805,31.5889 -83.3845,31.5872 -83.3984,31.5811 -83.4001,31.5804 -83.4203,31.5713 -83.4238,31.5703 -83.4242,31.5702 -83.4382,31.5663 -83.4453,31.5643 -83.4488,31.5633 -83.4494,31.5631 -83.451,31.5627 -83.4544,31.5619 -83.4709,31.5577 -83.4767,31.5563 -83.4858,31.554 -83.4929,31.5523 -83.5012,31.5493 -83.509,31.5456 -83.5153,31.5428 -83.5227,31.5393 -83.5307,31.5356 -83.5379,31.5323 -83.5455,31.5288 -83.5523,31.5257 -83.556,31.5204 -83.556,31.5142 -83.5552,31.5067 -83.5536,31.5002 -83.5521,31.494 -83.5504,31.4866 -83.5492,31.4813 -83.5488,31.4765</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 135.67km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-84.5683,33.9942 -84.5724,33.9947 -84.5804,33.9943 -84.5863,33.9939 -84.5929,33.9935 -84.5998,33.9913 -84.6061,33.9927 -84.6133,33.9943 -84.6184,33.9955 -84.6265,33.9954 -84.6326,33.9954 -84.6391,33.9953 -84.6447,33.9955 -84.6535,33.9957 -84.6606,33.9959 -84.6685,33.9961 -84.6762,33.9963 -84.6811,33.9982 -84.6861,33.9992 -84.6937,33.9998 -84.701,34.0005 -84.7091,34.0011 -84.7169,34.0018 -84.7259,34.0026 -84.7352,34.0033 -84.7399,34.0038 -84.7469,34.0037 -84.7544,34.0039 -84.7615,34.0043 -84.7683,34.0045 -84.7748,34.0048 -84.7824,34.005 -84.7884,34.0079 -84.7934,34.0119 -84.7992,34.0165 -84.8046,34.0209 -84.81,34.0252 -84.8153,34.0294 -84.8226,34.0352 -84.8284,34.0399 -84.8347,34.0449 -84.8397,34.0489 -84.845,34.0533 -84.85,34.0577 -84.8551,34.0623 -84.8595,34.0663 -84.8662,34.0723 -84.8711,34.0768 -84.8747,34.0809 -84.8774,34.0832 -84.8817,34.0868 -84.8866,34.0909 -84.8919,34.0954 -84.8978,34.1004 -84.9032,34.1052 -84.9075,34.1092 -84.9124,34.1136 -84.9188,34.1182 -84.9207,34.1204 -84.9224,34.1215</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 39.91km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-84.8563,33.7407 -84.8576,33.7449 -84.8595,33.7512 -84.8618,33.7569 -84.8637,33.7616 -84.8667,33.7684 -84.8689,33.7732 -84.8705,33.7768 -84.8733,33.7831 -84.8757,33.7897 -84.8779,33.7951 -84.88,33.8002 -84.8827,33.8069 -84.885,33.8126 -84.8873,33.8182 -84.8894,33.8233 -84.8905,33.8287 -84.8912,33.8348 -84.8919,33.8415 -84.8924,33.847 -84.8931,33.8536 -84.8928,33.857 -84.8924,33.8627 -84.8926,33.8675 -84.8942,33.873 -84.896,33.8791 -84.8977,33.8849 -84.8996,33.8912 -84.9018,33.8983 -84.9039,33.9052 -84.9046,33.9119 -84.9039,33.9173 -84.9029,33.9247 -84.9024,33.9284 -84.902,33.933 -84.9015,33.9405 -84.901,33.9472 -84.9007,33.9518 -84.9002,33.9578 -84.8998,33.9633 -84.8992,33.9705 -84.8987,33.9768 -84.898,33.9853 -84.8975,33.9919 -84.8957,33.9982 -84.8939,34.0045 -84.8919,34.0118 -84.8902,34.0176 -84.8888,34.0228 -84.8867,34.0302 -84.8847,34.0371 -84.883,34.0433 -84.8804,34.0527 -84.8789,34.0583 -84.877,34.0651 -84.8752,34.0716 -84.8764,34.0798 -84.8797,34.0826 -84.883,34.0854 -84.8884,34.0898 -84.8937,34.0943 -84.8994,34.0991 -84.9048,34.104 -84.9107,34.1095 -84.9157,34.114 -84.92,34.1175 -84.9218,34.1203</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 41.53km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-83.8128,33.0606 -83.8143,33.0596 -83.8271,33.0578 -83.8336,33.0568 -83.8414,33.0557 -83.8495,33.0545 -83.8566,33.0535 -83.8588,33.0487 -83.8587,33.0421 -83.8588,33.0337 -83.8589,33.0275 -83.8587,33.0216 -83.8574,33.0162 -83.8557,33.009 -83.854,33.0018 -83.8524,32.9951 -83.8508,32.9883 -83.8509,32.9805 -83.851,32.9745 -83.851,32.969 -83.8511,32.9628 -83.8514,32.9569 -83.8515,32.9516 -83.8516,32.9437 -83.8517,32.9362 -83.8519,32.9294 -83.852,32.9228 -83.8521,32.9164 -83.8522,32.9096 -83.8524,32.902 -83.8524,32.8957 -83.8529,32.8888 -83.8538,32.881 -83.8543,32.8733 -83.8546,32.866 -83.8549,32.8601 -83.8553,32.8529 -83.8558,32.8459 -83.8563,32.8382 -83.8568,32.8295 -83.8571,32.8221 -83.8573,32.8151 -83.8577,32.8086 -83.858,32.8017 -83.8586,32.796 -83.8591,32.7918 -83.8598,32.7851 -83.8605,32.7781 -83.8609,32.7712 -83.861,32.7629 -83.8609,32.7562 -83.861,32.75 -83.861,32.744 -83.8611,32.7379 -83.8612,32.7321 -83.8615,32.724 -83.8616,32.7172 -83.8614,32.7119 -83.8609,32.7043 -83.8606,32.6975 -83.8576,32.6929 -83.8505,32.6888 -83.8437,32.6849 -83.837,32.6811 -83.8298,32.6768 -83.8235,32.6728 -83.8174,32.669 -83.8109,32.6654 -83.8079,32.6638 -83.8019,32.6606 -83.7952,32.657 -83.7884,32.6533 -83.7816,32.6496 -83.7748,32.6459 -83.7682,32.6424 -83.7622,32.6391 -83.7565,32.6361 -83.7508,32.6326 -83.7448,32.6289 -83.7387,32.6253 -83.7323,32.6214 -83.7258,32.6175 -83.7193,32.6135 -83.7158,32.6115 -83.7123,32.6093 -83.7045,32.6046 -83.698,32.6006 -83.6915,32.598 -83.6832,32.5958 -83.6747,32.5934 -83.667,32.5914 -83.6591,32.5892 -83.6517,32.5872 -83.6446,32.5853 -83.6365,32.5814 -83.6294,32.578 -83.6222,32.5746 -83.6166,32.5719 -83.6086,32.5681 -83.6038,32.5667 -83.6003,32.5661</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 69.93km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-84.3673,33.482 -84.3648,33.4786 -84.363,33.4718 -84.3631,33.4642 -84.3631,33.4567 -84.3633,33.4495 -84.3657,33.4426 -84.3696,33.4379 -84.3736,33.4331 -84.3792,33.4264 -84.3852,33.4191 -84.3906,33.4126 -84.3907,33.408 -84.391,33.4015 -84.3913,33.3935 -84.3915,33.3863 -84.3918,33.38 -84.3916,33.3725 -84.3886,33.3699 -84.3821,33.3698 -84.3731,33.3696 -84.3652,33.3696 -84.3569,33.3673 -84.3465,33.3645 -84.3381,33.3623 -84.3288,33.3611 -84.3221,33.3611 -84.3122,33.3611 -84.3038,33.3611 -84.2971,33.3611 -84.2913,33.361 -84.2848,33.3609 -84.2782,33.3609 -84.268,33.3609 -84.2598,33.3609 -84.253,33.3601 -84.2461,33.358 -84.2373,33.3552 -84.2286,33.3524 -84.2187,33.3492 -84.2087,33.3462 -84.1984,33.3432 -84.1908,33.3408 -84.182,33.3381 -84.176,33.3362 -84.1702,33.3306 -84.1652,33.326 -84.1602,33.3212 -84.1548,33.3161 -84.1489,33.3105 -84.1424,33.3043 -84.1409,33.2971 -84.1396,33.2906 -84.138,33.2822 -84.1368,33.2757 -84.1356,33.2698 -84.1344,33.264 -84.131,33.259 -84.1261,33.2552 -84.1211,33.2512 -84.1147,33.2461 -84.1089,33.2416 -84.1032,33.2371 -84.0977,33.232 -84.0933,33.2269 -84.088,33.2212 -84.084,33.2166 -84.0794,33.2115 -84.074,33.2056 -84.0701,33.1988 -84.067,33.1934 -84.0637,33.1877 -84.0602,33.1818 -84.0567,33.1756 -84.053,33.1692 -84.0492,33.1628 -84.0458,33.1583 -84.0417,33.1543 -84.0368,33.1493 -84.0311,33.1435 -84.0269,33.1393 -84.0192,33.1401 -84.0105,33.1403 -84.002,33.1392 -83.9929,33.1379 -83.985,33.1369 -83.9767,33.1358 -83.9703,33.1349 -83.9637,33.13 -83.9577,33.1256 -83.9509,33.1207 -83.9443,33.1158 -83.9384,33.1114 -83.9332,33.1077 -83.9269,33.103 -83.9209,33.0986 -83.9155,33.0947 -83.91,33.0906 -83.9041,33.0862 -83.8987,33.0819 -83.8918,33.0765 -83.8854,33.0715 -83.8805,33.0676 -83.8764,33.0643 -83.8744,33.0583 -83.8684,33.0562 -83.861,33.0536 -83.8533,33.0547 -83.8453,33.0558 -83.8364,33.0571 -83.8271,33.0584 -83.8138,33.0601</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 84.21km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-84.1071,31.3683 -84.0997,31.369 -84.0909,31.3716 -84.0833,31.3738 -84.0757,31.3761 -84.0677,31.3784 -84.0598,31.3807 -84.0523,31.3829 -84.0463,31.3847 -84.0385,31.3848 -84.0298,31.385 -84.0211,31.3851 -84.0138,31.3853 -84.0064,31.3854 -83.9986,31.3855 -83.9949,31.3856 -83.9872,31.3864 -83.9784,31.3886 -83.9693,31.3908 -83.9609,31.3928 -83.9521,31.3937 -83.9432,31.3946 -83.934,31.3955 -83.927,31.3961 -83.9191,31.3968 -83.9121,31.3975 -83.9046,31.398 -83.8967,31.3983 -83.8886,31.3987 -83.881,31.3991 -83.8718,31.3996 -83.8643,31.4007 -83.8567,31.4027 -83.849,31.4046 -83.8412,31.4065 -83.8336,31.4084 -83.8254,31.4104 -83.8174,31.4123 -83.8102,31.4141 -83.8023,31.4161 -83.7947,31.418 -83.788,31.4196 -83.781,31.4214 -83.7724,31.4235 -83.7652,31.4255 -83.7577,31.4278 -83.7504,31.4302 -83.7433,31.4326 -83.7358,31.4351 -83.7278,31.4384 -83.7228,31.441 -83.7153,31.4406 -83.7063,31.4403 -83.6983,31.4399 -83.6908,31.4395 -83.6831,31.439 -83.6748,31.4396 -83.6666,31.4415 -83.6626,31.4424 -83.6539,31.4441 -83.6443,31.4461 -83.6358,31.4478 -83.6272,31.4494 -83.6197,31.4509 -83.6127,31.4522 -83.6045,31.4539 -83.5961,31.4556 -83.5897,31.4595 -83.5833,31.4633 -83.5755,31.4681 -83.5685,31.4723 -83.5619,31.4764 -83.557,31.4794 -83.5505,31.4793</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 57.78km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-84.9082,34.7031 -84.9041,34.7021 -84.9011,34.7008 -84.8987,34.6987 -84.8987,34.6907 -84.8987,34.6834 -84.8987,34.6787 -84.8987,34.6711 -84.8988,34.665 -84.899,34.6496 -84.8995,34.6199 -84.8987,34.6125 -84.8984,34.608 -84.8983,34.5998 -84.8982,34.5951 -84.898,34.5826 -84.8978,34.5733 -84.8977,34.5649 -84.8959,34.5577 -84.8924,34.5503 -84.8891,34.5435 -84.8863,34.5375 -84.8848,34.5343 -84.8826,34.5268 -84.8822,34.5205 -84.8817,34.5113 -84.8813,34.5044 -84.8813,34.4991 -84.8818,34.4919 -84.8823,34.4843 -84.8824,34.477 -84.8826,34.4673 -84.8827,34.4591 -84.882,34.454 -84.8819,34.4485 -84.882,34.4434 -84.8821,34.4385 -84.8823,34.4309 -84.8823,34.4269 -84.8825,34.4228 -84.8825,34.416 -84.8827,34.4083 -84.8827,34.4037 -84.8829,34.3966 -84.8829,34.394 -84.883,34.3896 -84.8828,34.3845</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 32.92km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-81.7627,33.1455 -81.7687,33.1471 -81.7774,33.1471 -81.7848,33.1471 -81.7829,33.1401 -81.78,33.1343 -81.7799,33.1294 -81.7758,33.1276 -81.7715,33.1264 -81.7636,33.1267 -81.7546,33.127 -81.7498,33.1233 -81.7435,33.1184 -81.7371,33.1134 -81.7307,33.1084 -81.7245,33.1036 -81.718,33.0986 -81.7116,33.0936 -81.7048,33.0873 -81.6989,33.081 -81.6937,33.0756 -81.689,33.0707 -81.6853,33.0652 -81.6828,33.0596 -81.6798,33.053 -81.6767,33.0459 -81.6737,33.0392 -81.6712,33.0335 -81.6695,33.028 -81.6689,33.0218 -81.6681,33.0141 -81.6674,33.0077 -81.6686,33.0012 -81.6698,32.9941 -81.6656,32.9895 -81.66,32.9834 -81.6553,32.9783 -81.6526,32.9754 -81.647,32.9693 -81.6414,32.9633 -81.6362,32.9576 -81.6305,32.9515 -81.624,32.9444 -81.6234,32.9368 -81.623,32.9298 -81.6225,32.9226 -81.622,32.9152 -81.6215,32.9079 -81.621,32.9005 -81.6206,32.894 -81.6171,32.8885 -81.6104,32.8835 -81.6043,32.8791 -81.5975,32.874 -81.5921,32.87 -81.5883,32.8643 -81.5866,32.8565 -81.585,32.8491 -81.581,32.8451 -81.573,32.8414 -81.5659,32.8381 -81.5585,32.8347 -81.5507,32.831 -81.5439,32.8279 -81.5364,32.8244 -81.5296,32.8212 -81.5228,32.818 -81.5163,32.8179 -81.5076,32.8178 -81.4993,32.8177 -81.4904,32.8176 -81.4852,32.8132 -81.4795,32.808 -81.4739,32.8027 -81.4688,32.7979 -81.4693,32.7914 -81.4685,32.7856 -81.4664,32.7786 -81.4643,32.7725 -81.4609,32.7606 -81.4586,32.753 -81.4562,32.7435 -81.4511,32.726 -81.4491,32.7191 -81.447,32.7118 -81.4452,32.7056 -81.4432,32.6987 -81.4413,32.6924 -81.4394,32.6852 -81.4375,32.6777 -81.4355,32.6701 -81.4335,32.6628 -81.4318,32.6564 -81.4301,32.6496 -81.4286,32.644 -81.4268,32.6373 -81.4253,32.6314 -81.4231,32.6231 -81.4212,32.6162 -81.4188,32.6086 -81.4159,32.6016 -81.4135,32.5956 -81.4109,32.5892 -81.4104,32.5832 -81.4101,32.5797 -81.4095,32.5727 -81.4039,32.5687 -81.3971,32.5633 -81.3909,32.5579 -81.3861,32.5513 -81.3821,32.5457 -81.3772,32.5406 -81.3716,32.5366 -81.3652,32.532 -81.3585,32.5273 -81.3517,32.5224 -81.345,32.5175 -81.3387,32.5132 -81.3322,32.5085 -81.326,32.5041 -81.3197,32.4996 -81.3131,32.4949 -81.307,32.4905 -81.3011,32.4863 -81.2957,32.4821 -81.2902,32.4778 -81.2848,32.4737 -81.2796,32.4697 -81.2733,32.4648 -81.2671,32.46 -81.2602,32.4544 -81.2537,32.4494 -81.2475,32.4445 -81.2425,32.44 -81.2362,32.4324 -81.2312,32.428 -81.2255,32.4228 -81.218,32.4154 -81.2117,32.4096 -81.2048,32.4038 -81.1989,32.3986 -81.1929,32.3933 -81.1923,32.3882 -81.1914,32.3808 -81.1907,32.3744 -81.1899,32.3677 -81.1892,32.3606 -81.1811,32.3542</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 110.93km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-84.8828,34.3845 -84.882,34.3817 -84.879,34.3801 -84.8693,34.38 -84.862,34.3799 -84.8525,34.3798 -84.8473,34.3829 -84.8402,34.3867 -84.833,34.3875 -84.8261,34.3884 -84.8163,34.3896 -84.8097,34.3904 -84.8038,34.3912 -84.7951,34.3923 -84.7856,34.3934 -84.7754,34.3946 -84.769,34.3954 -84.7626,34.3954 -84.7545,34.3954 -84.7495,34.3954 -84.7425,34.3954 -84.735,34.3954 -84.7267,34.3954 -84.7189,34.3938 -84.7113,34.3922 -84.705,34.3922 -84.6987,34.3921 -84.6928,34.3905 -84.687,34.3889 -84.6801,34.387 -84.6729,34.3851 -84.6624,34.3834 -84.654,34.3831 -84.6476,34.3808 -84.6403,34.3831 -84.6314,34.3834 -84.6224,34.3835 -84.6154,34.3834 -84.6095,34.383 -84.5999,34.3829 -84.5968,34.3825 -84.5872,34.378 -84.5816,34.3754 -84.5751,34.3719 -84.5688,34.3689 -84.5629,34.3674 -84.5527,34.3667 -84.5434,34.3642 -84.5356,34.3621 -84.5298,34.3605 -84.5297,34.3575 -84.5298,34.3503 -84.5297,34.3444 -84.5248,34.3393 -84.5191,34.3334 -84.514,34.3259 -84.5068,34.3259 -84.5014,34.3227 -84.4948,34.3214 -84.4899,34.3194 -84.4829,34.3183 -84.4759,34.3191 -84.4696,34.319 -84.4619,34.32 -84.4532,34.3218 -84.4459,34.3234 -84.4356,34.3253 -84.4269,34.3267 -84.4225,34.3288 -84.4162,34.3288 -84.4081,34.3288 -84.4032,34.3289 -84.4019,34.3234 -84.3951,34.3227 -84.3856,34.3224 -84.3793,34.3223 -84.3745,34.3203 -84.3694,34.3203 -84.3632,34.3202 -84.3556,34.3202 -84.3504,34.3242 -84.3467,34.3267 -84.3393,34.3277 -84.3374,34.327</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 59.71km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-84.9224,34.1215 -84.9215,34.1203 -84.9195,34.1177 -84.9154,34.1142 -84.9104,34.1097 -84.9045,34.1043 -84.8991,34.0994 -84.8934,34.0946 -84.888,34.0901 -84.8827,34.0856 -84.8791,34.0826 -84.8758,34.0799 -84.8741,34.0742 -84.8755,34.0688 -84.8777,34.061 -84.8793,34.0553 -84.8813,34.0478 -84.884,34.0382 -84.8857,34.0321 -84.8876,34.0254 -84.8891,34.02 -84.8904,34.0154 -84.8928,34.0069 -84.8944,34.0013 -84.8963,33.9946 -84.8974,33.9881 -84.8979,33.9814 -84.8985,33.9742 -84.8991,33.9672 -84.8996,33.9607 -84.9,33.955 -84.9004,33.9494 -84.9009,33.9434 -84.9013,33.9372 -84.9017,33.9324 -84.9023,33.9263 -84.9025,33.9247 -84.9034,33.9173 -84.9041,33.9121 -84.9033,33.9048 -84.9003,33.895 -84.8982,33.8882 -84.8961,33.8809 -84.8944,33.8752 -84.8928,33.8696 -84.8917,33.8662 -84.8922,33.8597 -84.8926,33.8551 -84.8925,33.8517 -84.8917,33.8439 -84.8912,33.8387 -84.8905,33.8325 -84.8897,33.8251 -84.8869,33.8183 -84.8847,33.8127 -84.8822,33.8068 -84.8799,33.8011 -84.8775,33.7954 -84.875,33.7888 -84.873,33.7832 -84.87,33.7767 -84.8685,33.7734 -84.8662,33.7684 -84.8633,33.7617 -84.8614,33.757 -84.8582,33.7491 -84.8568,33.7433 -84.8563,33.7407</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 41.55km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-84.3673,33.482 -84.3632,33.4854 -84.356,33.4853 -84.3483,33.485 -84.3426,33.4847 -84.3356,33.4846 -84.3268,33.4845 -84.3214,33.48 -84.3134,33.4772 -84.3033,33.4771 -84.2962,33.4769 -84.2868,33.4778 -84.2793,33.4791 -84.2711,33.482 -84.2589,33.4863 -84.2514,33.489 -84.2445,33.4912 -84.2373,33.4919 -84.2288,33.4918 -84.2206,33.4917 -84.216,33.4922 -84.2082,33.4922 -84.2018,33.4921 -84.1902,33.4917 -84.1831,33.4917 -84.1797,33.4937 -84.1772,33.5006 -84.177,33.5057 -84.1769,33.5118 -84.1704,33.5159 -84.1624,33.5158 -84.153,33.5157 -84.153,33.5208 -84.1485,33.5237 -84.1403,33.5237 -84.1315,33.5236 -84.1278,33.527 -84.1278,33.5327 -84.1278,33.5387 -84.1276,33.5446 -84.1275,33.5506 -84.1274,33.5572 -84.1274,33.5648 -84.1274,33.5707 -84.1278,33.5769 -84.1272,33.5836 -84.1271,33.5896 -84.1272,33.5972 -84.1274,33.6038 -84.1273,33.6094 -84.1267,33.6158 -84.126,33.6216 -84.1247,33.6292 -84.124,33.6353</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 38.75km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-84.8563,33.7407 -84.8549,33.736 -84.8527,33.7267 -84.8507,33.7202 -84.8488,33.7138 -84.8484,33.708 -84.8492,33.7029 -84.842,33.7024 -84.8322,33.7017 -84.8244,33.7011 -84.8137,33.7004 -84.8078,33.6999 -84.8026,33.7002 -84.7938,33.7003 -84.7861,33.7005 -84.7799,33.7004 -84.7711,33.7001 -84.763,33.6998 -84.7554,33.6996 -84.7479,33.6993 -84.7412,33.6992 -84.7328,33.6989 -84.7246,33.6987 -84.7167,33.6985 -84.7112,33.6984 -84.7025,33.6971 -84.6957,33.6961 -84.6862,33.6946 -84.6725,33.692 -84.6669,33.6917 -84.6593,33.6911 -84.6498,33.6902 -84.642,33.6895 -84.6336,33.6887 -84.6306,33.6884 -84.6227,33.6877 -84.6156,33.6871 -84.6064,33.6862 -84.5989,33.6855 -84.592,33.6849 -84.5865,33.6849 -84.5845,33.6833 -84.5846,33.6768 -84.5846,33.6699 -84.5844,33.6623 -84.5843,33.658 -84.5783,33.6579 -84.5737,33.6553 -84.5738,33.6492 -84.5738,33.6439 -84.5692,33.6408 -84.5607,33.6407 -84.5552,33.6403 -84.5552,33.6355 -84.555,33.6326 -84.555,33.6268 -84.5551,33.6196 -84.553,33.6148 -84.5456,33.6103 -84.5412,33.6059 -84.5374,33.6009 -84.5322,33.5942 -84.527,33.5874 -84.5235,33.5828 -84.5186,33.5765 -84.5132,33.5727 -84.5089,33.5688 -84.509,33.561 -84.5092,33.5549</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 48.59km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-84.8563,33.7407 -84.8555,33.7365 -84.8539,33.7301 -84.8521,33.7233 -84.8505,33.718 -84.8491,33.7134 -84.8488,33.708 -84.8496,33.7026 -84.8418,33.7021 -84.8324,33.7014 -84.8245,33.7008 -84.8154,33.7002 -84.8078,33.6996 -84.8026,33.6998 -84.794,33.7 -84.7869,33.7001 -84.7795,33.7 -84.7711,33.6997 -84.7631,33.6994 -84.7553,33.6992 -84.7479,33.699 -84.7375,33.6987 -84.7281,33.6985 -84.7228,33.6983 -84.7168,33.6982 -84.7112,33.698 -84.7034,33.6969 -84.6958,33.6957 -84.6863,33.6943 -84.6726,33.6916 -84.6669,33.6914 -84.659,33.6907 -84.6527,33.6901 -84.6424,33.6892 -84.6338,33.6884 -84.6262,33.6877 -84.6185,33.687 -84.6106,33.6862 -84.6021,33.6855 -84.595,33.6849 -84.5899,33.6846 -84.5849,33.6845 -84.5849,33.6794 -84.585,33.6737 -84.585,33.6657 -84.5847,33.6597 -84.5807,33.6576 -84.5741,33.6576 -84.5741,33.653 -84.5742,33.6493 -84.5742,33.6439 -84.5697,33.6405 -84.5617,33.6404 -84.5556,33.64 -84.5557,33.6355 -84.5554,33.6327 -84.5554,33.6268 -84.5555,33.6192 -84.5534,33.6146 -84.5463,33.6103 -84.5413,33.6053 -84.5378,33.6007 -84.5336,33.5953 -84.5297,33.5904 -84.5257,33.5851 -84.5213,33.5793 -84.5167,33.5734 -84.5093,33.5712 -84.5093,33.5644 -84.5094,33.5577 -84.5088,33.554</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 48.65km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-84.2138,33.9325 -84.208,33.9333 -84.2016,33.9346 -84.1944,33.9361 -84.19,33.9297 -84.1854,33.9231 -84.1815,33.9177 -84.1729,33.918 -84.1697,33.9134 -84.1653,33.907 -84.1613,33.9012 -84.1591,33.8961 -84.1541,33.8888 -84.1505,33.8834 -84.1472,33.8785 -84.1446,33.8748 -84.1392,33.8726 -84.1318,33.8696 -84.1247,33.8667 -84.1164,33.8638 -84.108,33.8611 -84.1017,33.8591 -84.0927,33.8561 -84.0891,33.8496 -84.0837,33.8439 -84.0815,33.8367 -84.0788,33.8302 -84.0782,33.8254 -84.0774,33.8193 -84.0724,33.8122 -84.067,33.8045 -84.0624,33.7978 -84.0603,33.7927 -84.0584,33.7855 -84.0566,33.7792 -84.0549,33.773 -84.0529,33.7654 -84.051,33.7576 -84.0544,33.749 -84.0573,33.7415 -84.0591,33.7367 -84.0615,33.7307 -84.0661,33.7244 -84.0704,33.7185 -84.0755,33.7108 -84.0791,33.7052 -84.0794,33.7012 -84.0794,33.6943 -84.0795,33.6872 -84.0796,33.6802 -84.0829,33.6745 -84.0879,33.6698 -84.0864,33.6634 -84.0848,33.6568 -84.0893,33.6524 -84.0954,33.646 -84.0995,33.642 -84.1071,33.6411 -84.1148,33.6403 -84.1233,33.6394 -84.1256,33.6378</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 42.98km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-84.3673,33.482 -84.3647,33.4777 -84.3634,33.4721 -84.3635,33.4643 -84.3635,33.4574 -84.3637,33.4498 -84.3661,33.4427 -84.3692,33.439 -84.375,33.4321 -84.3795,33.4265 -84.3854,33.4194 -84.391,33.4127 -84.3911,33.408 -84.3914,33.4015 -84.3917,33.3935 -84.392,33.3864 -84.3922,33.3801 -84.392,33.3725 -84.3923,33.3636 -84.3926,33.3577 -84.3927,33.3514 -84.3928,33.3445 -84.3935,33.3386 -84.397,33.3364 -84.403,33.3364 -84.4081,33.3369 -84.4169,33.335 -84.4197,33.329 -84.4259,33.3225 -84.4318,33.3219 -84.4392,33.3212 -84.447,33.3205 -84.4545,33.3197 -84.4623,33.319 -84.4715,33.3189 -84.4774,33.3194 -84.4866,33.321 -84.495,33.3209 -84.5039,33.3192 -84.5112,33.3184 -84.5172,33.3182 -84.5274,33.3177 -84.5363,33.3172 -84.546,33.3167 -84.552,33.3164 -84.5592,33.3161 -84.5679,33.3159 -84.5779,33.3157 -84.5861,33.3156 -84.5947,33.3154 -84.601,33.3129 -84.6073,33.3104 -84.6162,33.3105 -84.6249,33.3106 -84.6329,33.3107 -84.6428,33.3109 -84.6521,33.311 -84.6592,33.3096 -84.6695,33.3077 -84.6773,33.3061 -84.6846,33.3046 -84.6927,33.3032 -84.7003,33.3022 -84.7082,33.3009 -84.7158,33.2996 -84.7224,33.2986 -84.7289,33.2987 -84.7383,33.2989 -84.7472,33.2989 -84.7553,33.2989 -84.7632,33.2983 -84.7699,33.2967 -84.7769,33.2953 -84.7868,33.2932 -84.7966,33.2911 -84.803,33.291 -84.8101,33.2909 -84.8184,33.2908 -84.8282,33.2909 -84.8349,33.2936 -84.8415,33.2989 -84.8484,33.3043 -84.8547,33.3093 -84.862,33.3151 -84.8696,33.3212 -84.8739,33.3246 -84.8798,33.3293 -84.8876,33.3346 -84.8948,33.3394 -84.9023,33.3448 -84.9081,33.349 -84.9137,33.3533 -84.9208,33.3583 -84.9306,33.3634 -84.9387,33.3669 -84.947,33.3706 -84.9541,33.3737 -84.9611,33.3767 -84.9694,33.3803 -84.9769,33.3832 -84.9863,33.3869 -84.993,33.3895 -85.0029,33.3934 -85.011,33.3966 -85.0158,33.399 -85.0212,33.4031 -85.0286,33.4091 -85.0306,33.4112</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 84.04km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-84.5088,33.554 -84.5072,33.5527 -84.5073,33.5464 -84.5026,33.5435 -84.4942,33.5433 -84.4885,33.5433 -84.4884,33.5374 -84.4885,33.5301 -84.4886,33.5251 -84.4881,33.5182 -84.4879,33.5106 -84.4881,33.5035 -84.4883,33.4977 -84.483,33.4925 -84.479,33.4884 -84.4735,33.4861 -84.4666,33.4855 -84.4578,33.4841 -84.4511,33.4831 -84.445,33.483 -84.4391,33.4834 -84.4329,33.4837 -84.4257,33.4836 -84.417,33.4836 -84.4105,33.4836 -84.4038,33.4838 -84.3972,33.4845 -84.3891,33.4853 -84.3815,33.4856 -84.3733,33.4855 -84.3668,33.4839</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 20.54km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-84.2138,33.9325 -84.2081,33.9336 -84.1992,33.9355 -84.1924,33.9372 -84.184,33.939 -84.1758,33.9408 -84.1671,33.9419 -84.1623,33.9441 -84.1552,33.9459 -84.146,33.9481 -84.1399,33.9505 -84.1313,33.9546 -84.1246,33.9541 -84.1166,33.9522 -84.1091,33.9533 -84.104,33.9557 -84.0956,33.9598 -84.0897,33.9626 -84.08,33.9661 -84.0719,33.9684 -84.0653,33.9732 -84.0614,33.9801 -84.0567,33.9857 -84.0524,33.9909 -84.0504,33.9974 -84.0478,34.0046 -84.0418,34.0082 -84.0344,34.0117 -84.027,34.0161 -84.0216,34.0207 -84.0153,34.0261 -84.0097,34.0314 -84.0035,34.037 -83.9971,34.0416 -83.9918,34.0456 -83.9857,34.0506 -83.9793,34.0558 -83.9719,34.0616 -83.9662,34.066 -83.9598,34.0709 -83.952,34.0767 -83.9449,34.0812 -83.9374,34.085 -83.9301,34.0887 -83.924,34.092 -83.9175,34.0955 -83.9098,34.0997 -83.9019,34.1041 -83.8946,34.1077 -83.8903,34.1099 -83.8821,34.1144 -83.8764,34.1187 -83.8701,34.1267 -83.865,34.1332 -83.8598,34.1386 -83.8539,34.1438 -83.8477,34.1491 -83.8428,34.1556 -83.8363,34.1617 -83.8306,34.1654 -83.8283,34.1682 -83.8259,34.1733 -83.8228,34.1796 -83.818,34.1881 -83.8135,34.1961 -83.8095,34.2031 -83.8051,34.2108 -83.8028,34.218</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 52.92km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-81.7627,33.1455 -81.7643,33.1484 -81.7688,33.1475 -81.7775,33.1474 -81.7858,33.1474 -81.792,33.1457 -81.7982,33.1423 -81.8065,33.1376 -81.8129,33.134 -81.8198,33.1301 -81.828,33.1278 -81.8364,33.1254 -81.844,33.1232 -81.8507,33.1201 -81.8573,33.1172 -81.8636,33.1142 -81.8706,33.111 -81.8788,33.1104 -81.8875,33.1097 -81.8969,33.109 -81.9016,33.1045 -81.9066,33.1 -81.9121,33.095 -81.9176,33.09 -81.9222,33.0859 -81.9275,33.0811 -81.9327,33.0764 -81.9378,33.0718 -81.9428,33.0673 -81.9478,33.0628 -81.953,33.0581 -81.957,33.0543 -81.9617,33.0497 -81.9666,33.045 -81.9714,33.0403 -81.9765,33.0353 -81.9815,33.0305 -81.9858,33.0263 -81.9906,33.0216 -81.9967,33.0189 -82.0056,33.0178 -82.0117,33.0171 -82.0184,33.0152 -82.0257,33.0131 -82.0328,33.011 -82.0404,33.0088 -82.0485,33.0065 -82.0553,33.0045 -82.0628,33.0024 -82.0692,33.0005 -82.0766,32.9984 -82.0823,32.995 -82.0867,32.9907 -82.0939,32.9874 -82.1023,32.9836 -82.114,32.9781 -82.1219,32.9784 -82.1299,32.9787 -82.1376,32.979 -82.1444,32.9783 -82.1516,32.9767 -82.1602,32.9748 -82.1692,32.9729 -82.1783,32.9708 -82.1863,32.9709 -82.1943,32.9731 -82.2026,32.9755 -82.2107,32.9779 -82.216,32.9794 -82.2214,32.9766 -82.2282,32.9732 -82.2356,32.9693 -82.2415,32.9663 -82.2476,32.9632 -82.2544,32.9597 -82.2598,32.9569 -82.2657,32.9537 -82.2725,32.9502 -82.2759,32.9484 -82.2821,32.9451 -82.2886,32.9417 -82.295,32.9383 -82.3005,32.9356 -82.3058,32.933 -82.3124,32.9298 -82.3187,32.9267 -82.3243,32.924 -82.3307,32.9201 -82.3372,32.9162 -82.3441,32.912 -82.3495,32.909 -82.3571,32.9053 -82.3637,32.902 -82.3703,32.8987 -82.3758,32.896 -82.3826,32.8933 -82.3888,32.8915 -82.3951,32.8897 -82.4015,32.8877 -82.4089,32.8854 -82.4135,32.8869 -82.4176,32.8861 -82.4218,32.8843 -82.4279,32.8849 -82.4326,32.8874 -82.4395,32.8911 -82.4459,32.8946 -82.4528,32.8983 -82.4592,32.9018 -82.4669,32.9059 -82.474,32.9098 -82.4799,32.9118 -82.4878,32.9135 -82.4961,32.9154 -82.5041,32.9171 -82.5118,32.9188 -82.5166,32.9199 -82.5248,32.9217 -82.5309,32.9231 -82.5365,32.9244 -82.5441,32.9262 -82.5516,32.9279 -82.5584,32.9295 -82.5676,32.9316 -82.5747,32.9331 -82.5831,32.9346 -82.5913,32.9361 -82.5991,32.9376 -82.6084,32.9399 -82.6147,32.9415 -82.6218,32.9433 -82.6297,32.9453 -82.6374,32.9469 -82.6453,32.9484 -82.6523,32.9497 -82.6551,32.9557 -82.6582,32.962 -82.6611,32.9681 -82.6641,32.9743 -82.6669,32.9802 -82.6702,32.987 -82.674,32.9919 -82.6792,32.9962 -82.6857,33.0016 -82.6918,33.0067 -82.6983,33.0121 -82.704,33.017 -82.7104,33.0226 -82.717,33.0284 -82.7233,33.034 -82.7293,33.0392 -82.7346,33.044 -82.7404,33.0491 -82.7456,33.0536 -82.7506,33.0576 -82.7552,33.061 -82.7617,33.0655 -82.7679,33.0703 -82.774,33.0754 -82.7811,33.0813 -82.7861,33.0864 -82.7925,33.0915 -82.7996,33.0938 -82.8079,33.0945 -82.8149,33.0968 -82.8205,33.1007 -82.8269,33.1051 -82.8334,33.1096 -82.8378,33.1123 -82.846,33.1173 -82.8531,33.1215 -82.8568,33.1214</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 125.9km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-82.8594,33.1199 -82.8552,33.1232 -82.8532,33.1292 -82.8501,33.137 -82.8461,33.1454 -82.8428,33.1518 -82.8392,33.1585 -82.8357,33.165 -82.8321,33.1719 -82.8281,33.1793 -82.8229,33.183 -82.8146,33.1826 -82.8071,33.1823 -82.7977,33.1818 -82.7894,33.1799 -82.7831,33.1807 -82.7757,33.186 -82.7695,33.1904 -82.7622,33.1952 -82.7559,33.1994 -82.7487,33.2041 -82.7421,33.2085 -82.7376,33.2112 -82.7299,33.2158 -82.7241,33.2205 -82.7189,33.2275 -82.7148,33.2329 -82.7088,33.2373 -82.7,33.2396 -82.6911,33.2419 -82.6831,33.244 -82.6744,33.2463 -82.6671,33.2491 -82.66,33.2527 -82.6553,33.2575 -82.6521,33.2644 -82.6493,33.2705 -82.6459,33.2745 -82.6376,33.2797 -82.6298,33.2845 -82.6215,33.2879 -82.6155,33.2934 -82.6087,33.2976 -82.6016,33.2985 -82.5927,33.2996 -82.5872,33.3063 -82.5832,33.3121 -82.5803,33.3175 -82.5775,33.3226 -82.5735,33.3265 -82.5673,33.3306 -82.561,33.3346 -82.5526,33.3381 -82.5453,33.3417 -82.5389,33.3451 -82.5311,33.3492 -82.5253,33.351 -82.5181,33.3518 -82.5085,33.3528 -82.4998,33.3553 -82.4913,33.3592 -82.4849,33.3622 -82.4773,33.3658 -82.4712,33.3687 -82.4638,33.3739 -82.4581,33.3777 -82.4515,33.3816 -82.4444,33.386 -82.4441,33.3902 -82.4465,33.3974 -82.4439,33.4024 -82.4415,33.4108 -82.4366,33.4163 -82.4281,33.4171 -82.4208,33.4177 -82.4177,33.4227 -82.4174,33.4284 -82.416,33.4366 -82.4147,33.4433 -82.4151,33.4485 -82.4183,33.4544 -82.4128,33.4526</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 62.67km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-83.5488,31.4765 -83.5502,31.4812 -83.5517,31.4879 -83.5569,31.4912 -83.5633,31.4953 -83.5706,31.5003 -83.5774,31.5044 -83.5828,31.509 -83.5882,31.5142 -83.5935,31.5196 -83.5987,31.525 -83.6037,31.5302 -83.6091,31.5358 -83.6136,31.5405 -83.6181,31.5451 -83.6228,31.5498 -83.628,31.555 -83.6327,31.5596 -83.6404,31.5673 -83.6463,31.5732 -83.6493,31.5762 -83.6551,31.5822 -83.6597,31.5869 -83.6644,31.5917 -83.6705,31.598 -83.6757,31.6033 -83.6812,31.6089 -83.6868,31.6139 -83.693,31.6188 -83.6989,31.6234 -83.7054,31.6285 -83.7108,31.6328 -83.7167,31.6376 -83.7224,31.6423 -83.728,31.6468 -83.7333,31.6511 -83.7391,31.6557 -83.7456,31.6609 -83.7507,31.665 -83.7561,31.6693 -83.7619,31.6739 -83.7679,31.6787 -83.7739,31.6836 -83.7799,31.6883 -83.7858,31.693 -83.7925,31.6984 -83.797,31.7019 -83.8006,31.7049 -83.8054,31.7087 -83.8111,31.7134 -83.8168,31.718 -83.8231,31.7231 -83.8282,31.7272 -83.8341,31.732 -83.8404,31.7375 -83.8464,31.7429 -83.8521,31.7479 -83.858,31.753 -83.8636,31.758 -83.8691,31.7626 -83.8734,31.766 -83.879,31.7705 -83.8833,31.7741 -83.8893,31.7793 -83.8954,31.7846 -83.9009,31.7895 -83.9067,31.7946 -83.9115,31.7988 -83.9164,31.803 -83.9216,31.8074 -83.9271,31.8121 -83.9326,31.8167 -83.9381,31.8195 -83.9438,31.824 -83.95,31.8288 -83.9561,31.8338 -83.9593,31.8363 -83.9641,31.8401 -83.9703,31.8449 -83.9757,31.8493 -83.9816,31.8542 -83.9873,31.8588 -83.993,31.8636 -83.9983,31.8679 -84.0033,31.8719 -84.0083,31.8756 -84.0151,31.8809 -84.0214,31.8858 -84.0271,31.8902 -84.0323,31.8946 -84.0383,31.8995 -84.0446,31.9047 -84.0501,31.9093 -84.0555,31.9138 -84.0591,31.9168 -84.0655,31.922 -84.0718,31.9271 -84.0787,31.9321 -84.0847,31.9373 -84.0902,31.9432 -84.0955,31.9489 -84.1015,31.955 -84.1076,31.961 -84.1135,31.9666 -84.1197,31.9726 -84.1269,31.9784 -84.133,31.9833 -84.139,31.9879 -84.1436,31.9933 -84.149,31.9995 -84.1537,32.0048 -84.1585,32.0098 -84.1634,32.015 -84.1684,32.02 -84.1734,32.0247 -84.1786,32.0315 -84.1833,32.0378 -84.186,32.0428 -84.1862,32.0499 -84.1864,32.0554 -84.1867,32.0634 -84.1867,32.0704 -84.1867,32.0772 -84.1867,32.084 -84.1867,32.0899 -84.1867,32.0958 -84.1961,32.0957 -84.2037,32.0956 -84.2104,32.0977 -84.215,32.1016 -84.2186,32.1046 -84.2235,32.1086 -84.2296,32.1136 -84.2346,32.1179 -84.24,32.1224 -84.2455,32.1271 -84.2503,32.1314 -84.257,32.1372 -84.2629,32.1423 -84.2685,32.1472 -84.2733,32.1514 -84.2785,32.1561 -84.2836,32.1607 -84.2863,32.1641 -84.2888,32.1673 -84.2936,32.1733 -84.2967,32.1773 -84.3008,32.1823 -84.3047,32.1873 -84.3098,32.1937 -84.3145,32.1999 -84.3191,32.2061 -84.3233,32.212 -84.327,32.2172 -84.3307,32.2224 -84.335,32.2286 -84.3387,32.2337 -84.3429,32.239 -84.3478,32.2444 -84.3532,32.2497 -84.3592,32.2546 -84.3639,32.2585 -84.3696,32.2632 -84.3754,32.268 -84.382,32.2734 -84.3889,32.2792 -84.3938,32.2831 -84.3986,32.2888 -84.403,32.2939 -84.4062,32.2976 -84.4108,32.303 -84.4156,32.3086 -84.4206,32.3144 -84.4251,32.3196 -84.4302,32.3256 -84.436,32.3314 -84.4423,32.3365 -84.4489,32.3418 -84.4558,32.3473 -84.4614,32.3517 -84.4665,32.3559 -84.471,32.3595 -84.4739,32.3618 -84.4793,32.3655 -84.4851,32.3695 -84.4921,32.3742 -84.4972,32.3777 -84.5035,32.3821 -84.5089,32.3872 -84.5143,32.3926 -84.5195,32.3976 -84.5243,32.4021 -84.5308,32.4085 -84.5364,32.4139 -84.5411,32.4184 -84.5456,32.4228 -84.551,32.428 -84.5573,32.4342 -84.5625,32.4392 -84.568,32.4445 -84.5731,32.4506 -84.5776,32.4562 -84.5828,32.4624 -84.5875,32.4681 -84.5936,32.4755 -84.5984,32.4816 -84.6021,32.4864 -84.6065,32.4921 -84.611,32.498 -84.615,32.5036 -84.6192,32.5101 -84.6232,32.5162 -84.6283,32.524 -84.6324,32.5302 -84.6354,32.5348 -84.6379,32.5386 -84.6435,32.544 -84.6492,32.5494 -84.6548,32.5542 -84.661,32.5589 -84.6695,32.5653 -84.675,32.5696 -84.6815,32.5745 -84.6874,32.579 -84.693,32.5834 -84.6969,32.5865 -84.7017,32.5904 -84.708,32.591 -84.717,32.5917 -84.7255,32.5925 -84.736,32.5934 -84.7431,32.594 -84.7524,32.5948 -84.7596,32.5956 -84.7685,32.5967 -84.7745,32.5974 -84.7814,32.5983 -84.7904,32.5998 -84.7968,32.6009 -84.8019,32.6014 -84.8083,32.6016 -84.8165,32.6018 -84.8246,32.6021 -84.833,32.6025 -84.8408,32.6028 -84.8483,32.6031 -84.8574,32.6034 -84.864,32.6036 -84.8706,32.6039 -84.8792,32.6044 -84.8878,32.6048 -84.8946,32.6064 -84.9043,32.6086 -84.9121,32.6104</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 185.08km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-83.8128,33.0606 -83.8154,33.0616 -83.812,33.0668 -83.8041,33.0701 -83.7954,33.0682 -83.7902,33.0671 -83.7873,33.0583 -83.7803,33.0563 -83.7718,33.0539 -83.7645,33.0518 -83.7558,33.0494 -83.7502,33.0428 -83.742,33.0331 -83.7388,33.0225 -83.7362,33.0166 -83.7312,33.0091 -83.727,33.004 -83.7219,33.0018 -83.7152,33.0006 -83.7077,32.9992 -83.702,32.9951 -83.6994,32.9887 -83.6964,32.981 -83.69,32.9784 -83.6838,32.9802 -83.6775,32.9821 -83.6681,32.9849 -83.6599,32.9873 -83.65,32.9902 -83.6415,32.9927 -83.6346,32.9948 -83.6283,32.9966 -83.6192,32.9993 -83.6122,33.0016 -83.6029,33.0048 -83.595,33.0074 -83.5859,33.0104 -83.5783,33.0124 -83.5692,33.0156 -83.5616,33.0193 -83.5539,33.023 -83.547,33.0262 -83.5389,33.0301 -83.5331,33.0348 -83.529,33.0382 -83.5242,33.0421 -83.5201,33.0463 -83.5147,33.0532 -83.5096,33.0598 -83.5054,33.0653 -83.5009,33.0711 -83.4968,33.0763 -83.4931,33.0811 -83.4873,33.0842 -83.4805,33.0852 -83.4765,33.0885 -83.4711,33.093 -83.4659,33.0973 -83.4602,33.1019 -83.4533,33.1078 -83.4488,33.1117 -83.4434,33.1162 -83.4389,33.1197 -83.434,33.1235 -83.4303,33.1282 -83.427,33.1362 -83.4246,33.1421 -83.4237,33.148 -83.4251,33.1556 -83.4265,33.1639 -83.4276,33.1698 -83.429,33.1783 -83.4301,33.1842 -83.4308,33.1886 -83.4322,33.1965 -83.4296,33.2036 -83.4252,33.2073 -83.4198,33.2118 -83.4148,33.216 -83.4133,33.2208 -83.4127,33.2269 -83.4081,33.2356 -83.399,33.2345 -83.3905,33.2336 -83.3829,33.2327 -83.3745,33.2317 -83.3642,33.2305 -83.3575,33.2297 -83.3515,33.2346 -83.3456,33.2395 -83.3407,33.2435 -83.3364,33.247 -83.3301,33.2522 -83.3241,33.2573 -83.3179,33.2626 -83.312,33.2676 -83.3061,33.2728 -83.2996,33.2784 -83.2942,33.283 -83.2885,33.2879 -83.2828,33.2927 -83.2758,33.2985 -83.2704,33.303 -83.2635,33.3089 -83.2585,33.3131 -83.2535,33.3173 -83.2442,33.3191 -83.2361,33.3206 -83.2279,33.322 -83.2178,33.3237 -83.2103,33.325 -83.2024,33.3266 -83.1942,33.3283 -83.1866,33.3246 -83.1822,33.3225 -83.1735,33.3183 -83.1654,33.3144 -83.1575,33.3107 -83.1537,33.3082 -83.1498,33.3058 -83.1435,33.3018 -83.1374,33.298 -83.1297,33.2931 -83.1212,33.2878 -83.1135,33.2829 -83.1067,33.2787 -83.1,33.2744 -83.0941,33.2707 -83.0875,33.2665 -83.0806,33.2622 -83.0741,33.2582 -83.0664,33.2533 -83.059,33.2486 -83.0518,33.2441 -83.045,33.24 -83.0363,33.2346 -83.0288,33.23 -83.0205,33.2248 -83.0138,33.2207 -83.0075,33.2166 -83.0019,33.2128 -82.9943,33.2076 -82.9873,33.2033 -82.9798,33.199 -82.974,33.1957 -82.968,33.1923 -82.961,33.1882 -82.9546,33.1844 -82.9463,33.1795 -82.9387,33.1748 -82.9316,33.1705 -82.9243,33.1661 -82.9197,33.1631 -82.912,33.1581 -82.9027,33.1522 -82.8952,33.1475 -82.8877,33.1429 -82.8851,33.1413 -82.8781,33.137 -82.8706,33.1323 -82.8611,33.1265 -82.8559,33.1232 -82.8594,33.1199</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>GEORGIA POWER CO</name><description>500kV --- AC --- 126.44km --- Imagery, OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-87.0556,33.6308 -87.0531,33.6346 -87.0573,33.6369 -87.0639,33.6392 -87.0715,33.6417 -87.0794,33.6443 -87.0869,33.6467 -87.0907,33.648 -87.0964,33.6498 -87.1013,33.6489 -87.1074,33.6416 -87.1111,33.6372 -87.1159,33.6315 -87.1201,33.6265 -87.1315,33.6283 -87.1422,33.63 -87.1521,33.6316 -87.1603,33.6346 -87.1689,33.639 -87.1766,33.6429 -87.1823,33.6484 -87.1917,33.6502 -87.206,33.6522 -87.2107,33.653 -87.2185,33.6518 -87.2271,33.6506 -87.2336,33.6496 -87.2418,33.6485 -87.2484,33.6476 -87.2547,33.6471 -87.2653,33.647 -87.2727,33.647 -87.2818,33.6469 -87.2911,33.6468 -87.3035,33.6468 -87.3123,33.6459 -87.3198,33.6451 -87.3274,33.6444 -87.3352,33.6444 -87.3501,33.6444 -87.3577,33.6444 -87.3645,33.6444 -87.375,33.6444 -87.3838,33.6438 -87.3926,33.643 -87.4015,33.6421 -87.4123,33.641 -87.4214,33.6401 -87.4302,33.6393 -87.4415,33.6382 -87.4472,33.6376 -87.4585,33.6365 -87.468,33.6356 -87.477,33.6347 -87.4865,33.6338 -87.498,33.633 -87.5087,33.6327 -87.5143,33.6325 -87.5213,33.6323 -87.5292,33.6321 -87.5363,33.6319 -87.5459,33.6316 -87.5544,33.6314 -87.5665,33.631 -87.5759,33.6307 -87.5851,33.6304 -87.5957,33.6301 -87.6073,33.6298 -87.615,33.6295 -87.6219,33.6287 -87.6313,33.6276 -87.6398,33.627 -87.6477,33.6268 -87.6572,33.6266 -87.6672,33.6263 -87.6731,33.6262 -87.682,33.626 -87.6881,33.6258 -87.6977,33.6256 -87.7077,33.6253 -87.717,33.625 -87.7279,33.6248 -87.7358,33.6242 -87.7455,33.6234 -87.7525,33.6228 -87.7623,33.6219 -87.769,33.6214 -87.778,33.6206 -87.7849,33.62 -87.7924,33.6193 -87.7999,33.6199 -87.8088,33.6205 -87.8202,33.6213 -87.8308,33.6221 -87.8411,33.6231 -87.8502,33.6244 -87.8592,33.6256 -87.8721,33.6274 -87.8773,33.6281 -87.8866,33.6294 -87.8958,33.6307 -87.9062,33.6321 -87.917,33.6336 -87.927,33.6349 -87.9349,33.6358 -87.9454,33.6367 -87.9549,33.6376 -87.9653,33.6385 -87.9773,33.6396 -87.9835,33.6402 -87.9926,33.641 -88.0031,33.642 -88.0125,33.6429 -88.0214,33.6437 -88.0284,33.6441 -88.0403,33.6444 -88.0492,33.6446 -88.0581,33.6448 -88.0666,33.6449 -88.0753,33.6451 -88.0821,33.6453 -88.0898,33.6452 -88.0957,33.6448 -88.1049,33.6443 -88.1117,33.644 -88.1221,33.6434 -88.1309,33.6429 -88.1378,33.6425 -88.145,33.6429 -88.152,33.6432 -88.1593,33.6436 -88.1653,33.6439 -88.1716,33.6442 -88.1819,33.6438 -88.1897,33.6434 -88.199,33.643 -88.2082,33.6426 -88.2159,33.6422 -88.2235,33.6427 -88.2282,33.644 -88.2368,33.6464 -88.2443,33.6485 -88.2518,33.6506 -88.2578,33.6516</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ALABAMA POWER CO</name><description>500kV --- AC --- 123.47km --- OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-81.0364,36.1762 -81.034,36.1767 -81.0356,36.1723 -81.0366,36.1652 -81.0357,36.159 -81.0347,36.1516 -81.0339,36.1458 -81.033,36.1396 -81.032,36.1323 -81.0309,36.1244 -81.03,36.1163 -81.0289,36.1089 -81.0281,36.1035 -81.0273,36.0978 -81.026,36.0884 -81.0248,36.0797 -81.0235,36.0706 -81.0224,36.0624 -81.0218,36.0583 -81.0204,36.0485 -81.0193,36.0407 -81.0179,36.0309 -81.0168,36.0231 -81.0163,36.0189 -81.0151,36.0107 -81.0141,36.0034 -81.0132,35.9948 -81.0125,35.9881 -81.0118,35.9805 -81.0111,35.9726 -81.0105,35.9672 -81.0097,35.959 -81.009,35.9529 -81.0087,35.9444 -81.0086,35.9365 -81.0085,35.9304 -81.0085,35.9244 -81.0084,35.9169 -81.0083,35.9074 -81.0082,35.9 -81.0082,35.8934 -81.0081,35.8854 -81.008,35.8754 -81.008,35.8722 -81.0088,35.8665 -81.0104,35.861 -81.0124,35.854 -81.0145,35.8464 -81.0162,35.8404 -81.0174,35.8326 -81.0175,35.8252 -81.0176,35.8198 -81.0177,35.8128 -81.0178,35.8058 -81.018,35.7987 -81.019,35.7914 -81.0207,35.7846 -81.0222,35.7789 -81.024,35.7717 -81.0259,35.7644 -81.0276,35.7579 -81.0289,35.7527 -81.0307,35.7457 -81.0305,35.7398 -81.0288,35.7335 -81.0273,35.728 -81.0251,35.72 -81.0238,35.7151 -81.0226,35.7064 -81.0227,35.6989 -81.0227,35.6925 -81.0228,35.6844 -81.0229,35.677 -81.023,35.6662 -81.0231,35.6592 -81.0232,35.648 -81.0233,35.6414 -81.024,35.6357 -81.0255,35.6291 -81.027,35.6224 -81.0287,35.6148 -81.0296,35.6111 -81.0314,35.603 -81.0327,35.5973 -81.0316,35.586 -81.0308,35.5788 -81.0301,35.5717 -81.0291,35.5617 -81.0252,35.5544 -81.0204,35.5453 -81.016,35.537 -81.0121,35.5296 -81.0103,35.5219 -81.0087,35.5146 -81.0072,35.508 -81.0054,35.5002 -81.0042,35.4951 -81.0024,35.4871 -81.0009,35.4805 -80.9993,35.4735 -80.9975,35.4658 -80.9959,35.4589 -80.9944,35.452 -80.9884,35.4483 -80.9816,35.444 -80.974,35.4392 -80.9669,35.4347 -80.9642,35.4285 -80.9615,35.4229 -80.9524,35.4235 -80.9475,35.4238 -80.9459,35.4233</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 80.43km --- Imagery, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-92.4071,30.4303 -92.4174,30.4299 -92.4239,30.4297 -92.43,30.4294 -92.4367,30.4292 -92.4387,30.4279 -92.4439,30.4247 -92.4499,30.421 -92.4552,30.4178 -92.461,30.4142 -92.4659,30.4112 -92.4701,30.4086 -92.4744,30.4059 -92.4784,30.4034 -92.4824,30.4009 -92.4862,30.3999 -92.4926,30.3999 -92.5791,30.4 -92.6297,30.4013 -92.7071,30.4016 -92.767,30.4015 -92.81,30.4007 -92.8597,30.4021 -92.8954,30.4019 -92.9904,30.402 -93.0134,30.3922 -93.1709,30.3305 -93.2058,30.3306 -93.2281,30.3307 -93.2834,30.3302 -93.2837,30.2891 -93.3026,30.2884 -93.2995,30.2827 -93.2963,30.2819</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 97.94km --- Imagery, Inferred from http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-82.8949,34.7928 -82.8933,34.7908 -82.8869,34.7933 -82.8852,34.794 -82.8816,34.7982 -82.881,34.8 -82.8785,34.8074 -82.876,34.8141 -82.8727,34.8225 -82.8691,34.83 -82.8659,34.8366 -82.8634,34.8419 -82.8601,34.8488 -82.8573,34.8546 -82.8537,34.8621 -82.8506,34.8684 -82.8467,34.8745 -82.8411,34.8801 -82.8348,34.8864 -82.8311,34.89 -82.8259,34.8952 -82.8213,34.8997 -82.8175,34.9036 -82.8128,34.9082 -82.8072,34.9138 -82.8031,34.9179 -82.7977,34.9233 -82.7939,34.927 -82.788,34.933 -82.782,34.9387 -82.782,34.9417 -82.7876,34.9463 -82.7916,34.9495 -82.7986,34.9523 -82.8054,34.955 -82.8155,34.959 -82.8216,34.9614 -82.8263,34.965 -82.8292,34.9679 -82.8364,34.9677 -82.8406,34.9674 -82.8481,34.9662 -82.8556,34.9651 -82.8636,34.9639 -82.8758,34.962 -82.8882,34.9602 -82.8976,34.9588 -82.9074,34.9573 -82.9132,34.9542 -82.9157,34.954</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>DUKE ENERGY CAROLINAS, LLC</name><description>500kV --- AC --- 34.0km --- Imagery, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-90.8794,30.7497 -90.8834,30.7498 -90.8899,30.7491 -90.897,30.7473 -90.904,30.7456 -90.9108,30.7439 -90.9175,30.7431 -90.9248,30.7431 -90.9321,30.7431 -90.9394,30.7431 -90.947,30.7431 -90.9546,30.7431 -90.9623,30.7431 -90.9699,30.7431 -90.977,30.7431 -90.9844,30.7431 -90.9919,30.7431 -90.9978,30.7431 -91.0051,30.7431 -91.0125,30.7431 -91.0197,30.7431 -91.027,30.7431 -91.0343,30.7431 -91.0405,30.7435 -91.0478,30.7437 -91.0554,30.7435 -91.0621,30.744 -91.0695,30.7433 -91.076,30.7438 -91.0827,30.7443 -91.0883,30.7447 -91.095,30.7454 -91.1013,30.7443 -91.108,30.7431 -91.1149,30.7418 -91.1212,30.7425 -91.1263,30.7453 -91.1328,30.7453 -91.1395,30.7453 -91.1463,30.7453 -91.1531,30.7453 -91.1605,30.7453 -91.1679,30.7453 -91.1753,30.7454 -91.1827,30.7455 -91.1901,30.7456 -91.1975,30.7456 -91.2049,30.7457 -91.2123,30.7458 -91.2198,30.7459 -91.2272,30.7459 -91.2347,30.746 -91.2422,30.7461 -91.2496,30.7462 -91.2567,30.7463 -91.2623,30.7438 -91.2677,30.7428 -91.2778,30.7396 -91.296,30.733 -91.3259,30.7436 -91.3304,30.7453</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 46.2km --- Imagery, OpenStreetMap, Inferred from http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-90.4786,29.9859 -90.4783,29.9865 -90.4779,29.9871 -90.4778,29.9874 -90.476,29.9913 -90.4664,30.0059 -90.4625,30.0108 -90.4596,30.0091 -90.4575,30.0144 -90.4572,30.0159 -90.455,30.021 -90.4526,30.0252 -90.4515,30.0266 -90.4486,30.0299 -90.4454,30.0337 -90.4425,30.037 -90.4396,30.0404 -90.4383,30.042 -90.435,30.0457 -90.4316,30.0497 -90.4282,30.0537 -90.4249,30.0576 -90.4293,30.0629 -90.4326,30.067 -90.436,30.071 -90.4393,30.075 -90.4426,30.079 -90.446,30.0832 -90.449,30.0867 -90.4521,30.0905 -90.4556,30.0948 -90.4587,30.0985 -90.462,30.1024 -90.4652,30.1063 -90.4685,30.1104 -90.4718,30.1143 -90.4775,30.1159 -90.4832,30.1176 -90.4888,30.1192 -90.4946,30.1208 -90.5003,30.1224 -90.506,30.1241 -90.5117,30.1257 -90.5171,30.127 -90.5228,30.1279 -90.5287,30.1288 -90.5347,30.1297 -90.5406,30.1307 -90.5464,30.1316 -90.5524,30.1325 -90.5583,30.1335 -90.5642,30.1344 -90.57,30.1353 -90.5758,30.1363 -90.5816,30.1372 -90.5872,30.1381 -90.5932,30.139 -90.5992,30.14 -90.6052,30.1409 -90.6112,30.1419 -90.617,30.1428 -90.6229,30.1437 -90.6287,30.1446 -90.6347,30.1456 -90.6405,30.1465 -90.6463,30.1474 -90.6522,30.1484 -90.6581,30.1494 -90.6641,30.1504 -90.6701,30.1514 -90.6759,30.1524 -90.6819,30.1534 -90.6867,30.1542 -90.6909,30.1549 -90.697,30.1559 -90.7025,30.157 -90.7083,30.1582 -90.7126,30.1589 -90.7169,30.1592 -90.7222,30.1594 -90.7283,30.1595 -90.7344,30.1597 -90.7405,30.1599 -90.7465,30.1601 -90.7523,30.1602 -90.7584,30.1604 -90.7644,30.1606 -90.7703,30.1608 -90.7763,30.1609 -90.7823,30.1611 -90.7871,30.1613 -90.7921,30.1618 -90.7972,30.1625 -90.8026,30.1633 -90.808,30.164 -90.8132,30.1647 -90.8198,30.1651 -90.8252,30.1655 -90.8317,30.1659 -90.838,30.1664 -90.8444,30.1668 -90.8508,30.1672 -90.8537,30.1673 -90.8595,30.1674 -90.8666,30.1675 -90.8723,30.1676 -90.8739,30.1684 -90.8785,30.1704 -90.8832,30.1727 -90.8878,30.1748 -90.8922,30.1768 -90.8969,30.1791 -90.9014,30.1812 -90.906,30.1834 -90.9107,30.1857 -90.9149,30.1878 -90.9205,30.1905 -90.9251,30.1927 -90.9298,30.195 -90.9343,30.1972 -90.9386,30.1992 -90.9434,30.2015 -90.9475,30.2037 -90.9513,30.206 -90.9558,30.2086 -90.9597,30.2109 -90.9642,30.2135 -90.9687,30.2162 -90.9731,30.2188 -90.9773,30.2212 -90.9815,30.2237 -90.9855,30.2261 -90.9898,30.2286 -90.9942,30.2312 -90.999,30.2339 -91.0051,30.2352 -91.0089,30.2372 -91.0136,30.2396 -91.0179,30.2419 -91.0224,30.2442 -91.027,30.2466 -91.0314,30.2489 -91.036,30.2513 -91.0405,30.2536 -91.0426,30.2547 -91.0468,30.2569 -91.0515,30.2593 -91.0561,30.2617 -91.0607,30.2641 -91.0653,30.2665 -91.0699,30.2689 -91.0741,30.271 -91.0787,30.2734 -91.0832,30.2757 -91.0876,30.2781 -91.0922,30.2804 -91.099,30.2839 -91.1059,30.2875 -91.1114,30.2802</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 84.75km --- Imagery, OpenStreetMap, Inferred from http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-78.1296,38.9156 -78.1128,38.9043 -78.0944,38.8815 -78.0781,38.8367 -78.0649,38.7864 -78.043,38.7655 -78.0394,38.7249 -78.011,38.7162 -77.9982,38.7 -77.9676,38.6879 -77.954,38.6774 -77.9518,38.6748 -77.9402,38.6639 -77.9383,38.6624 -77.9261,38.6529 -77.862,38.6069 -77.831,38.5759 -77.8256,38.5691 -77.8217,38.5649 -77.8112,38.5521 -77.8058,38.545 -77.7992,38.5421 -77.788,38.5366 -77.7652,38.5434 -77.721,38.5541 -77.7136,38.5559 -77.6695,38.5656 -77.6597,38.5694 -77.6276,38.579 -77.6186,38.5805 -77.608,38.5824 -77.604,38.5838 -77.5946,38.5864 -77.5914,38.6067 -77.5873,38.6469 -77.5937,38.7135 -77.5655,38.7912</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 97.16km --- Imagery, OpenStreetMap, http://www.pjm.com/system-map/default.html</description></Placemark>
<Placemark>
<LineString><coordinates>-80.8232,36.8792 -80.8041,36.8876 -80.7783,36.8942 -80.7128,36.9136 -80.5901,36.9504 -80.5152,36.9894 -80.433,37.0408 -80.3831,37.0632 -80.3428,37.0808 -80.278,37.1246 -80.2455,37.147 -80.2204,37.1659 -80.1955,37.187 -80.1813,37.2091 -80.1704,37.2311 -80.1686,37.2363 -80.1587,37.2551 -80.1692,37.2752 -80.165,37.2884 -80.1578,37.2954 -80.1432,37.3038 -80.0853,37.3252 -80.052,37.334 -80.0373,37.3347 -79.9807,37.3613 -79.9459,37.3741 -79.9116,37.3744 -79.9021,37.3744</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>765kV --- AC --- 110.88km --- Imagery, OpenStreetMap, http://www.pjm.com/system-map/default.html</description></Placemark>
<Placemark>
<LineString><coordinates>-77.9173,39.5156 -77.9246,39.5207 -77.9504,39.5301 -77.9718,39.5366 -77.9985,39.535 -78.0473,39.5374 -78.084,39.5392 -78.1394,39.5447 -78.1668,39.5463 -78.1811,39.5434 -78.2137,39.5233 -78.2441,39.4999 -78.265,39.4868 -78.2878,39.4631 -78.294,39.4559 -78.3116,39.4563 -78.3238,39.4552 -78.3359,39.4562 -78.3444,39.4569 -78.3532,39.4576 -78.4161,39.4629 -78.4455,39.465 -78.4581,39.4636 -78.503,39.4264 -78.5401,39.4147 -78.5573,39.4093 -78.5643,39.4112 -78.5695,39.4204 -78.5929,39.4415 -78.6037,39.4488 -78.6419,39.4654 -78.6572,39.4716 -78.6655,39.4735 -78.7321,39.487 -78.7471,39.4901 -78.7577,39.4864 -78.7987,39.4851 -78.8828,39.4826 -78.9055,39.4956 -78.9135,39.4988 -78.9151,39.4994 -78.9161,39.4998</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 107.99km --- Imagery, OpenStreetMap, http://www.pjm.com/pub/account/trans-fac/aepsct.xls</description></Placemark>
<Placemark>
<LineString><coordinates>-78.8491,38.107 -78.8366,38.1027 -78.821,38.0974 -78.7795,38.089 -78.7512,38.0632 -78.7266,38.0428 -78.7075,38.0214 -78.6422,37.9773 -78.6123,37.9542 -78.5093,37.9175 -78.4592,37.8975 -78.3826,37.8773 -78.3644,37.8741 -78.3679,37.8726</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 56.39km --- Imagery, OpenStreetMap, http://www.pjm.com/system-map/default.html</description></Placemark>
<Placemark>
<LineString><coordinates>-79.8002,38.2091 -79.7565,38.1785 -79.6761,38.1076 -79.6418,38.0941 -79.632,38.0399 -79.6095,38.0168 -79.576,37.966 -79.5376,37.9506 -79.5295,37.9325 -79.4996,37.9287 -79.4541,37.9125 -79.4284,37.8907 -79.4204,37.8677</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>VIRGINIA ELECTRIC & POWER CO</name><description>500kV --- AC --- 56.48km --- Imagery, OpenStreetMap, http://www.pjm.com/system-map/default.html, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-77.5682,38.895 -77.5665,38.8938 -77.4461,38.8187 -77.4374,38.8135 -77.401,38.7833 -77.3988,38.7812</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>VIRGINIA ELECTRIC & POWER CO</name><description>500kV --- AC --- 20.56km --- Imagery, OpenStreetMap, http://www.pjm.com/system-map/default.html, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-79.8002,38.2091 -79.7966,38.2071 -79.7745,38.1991 -79.7485,38.223 -79.6969,38.2493 -79.6464,38.2631 -79.6173,38.2633 -79.5428,38.3088 -79.5186,38.2933 -79.5015,38.2841 -79.4584,38.2973 -79.4384,38.2866 -79.3757,38.2639 -79.3453,38.2555 -79.2989,38.2598 -79.248,38.2796 -79.2193,38.2782 -79.2127,38.2818 -79.1839,38.2799 -79.1664,38.2725 -79.0953,38.2912 -79.0584,38.2965 -79.0437,38.3013 -79.0201,38.3007 -78.9738,38.3169 -78.9708,38.3143</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 91.12km --- Imagery, OpenStreetMap, http://www.pjm.com/system-map/default.html</description></Placemark>
<Placemark>
<LineString><coordinates>-79.8977,37.3813 -79.8975,37.3803 -79.8948,37.3802 -79.8966,37.401 -79.8919,37.4258 -79.8664,37.4539 -79.8245,37.4914 -79.7415,37.567 -79.6791,37.622 -79.6426,37.6518 -79.5632,37.7292 -79.5189,37.7808 -79.4842,37.8086 -79.4395,37.84 -79.4204,37.8677</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 70.13km --- Imagery, OpenStreetMap, http://www.pjm.com/system-map/default.html</description></Placemark>
<Placemark>
<LineString><coordinates>-78.8491,38.107 -78.8462,38.119 -78.8924,38.1283 -78.9701,38.0875 -79.0343,38.073 -79.1044,38.0625 -79.1551,38.0399 -79.2495,37.9926 -79.2934,37.9756 -79.3798,37.9071 -79.42,37.8693</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>VIRGINIA ELECTRIC & POWER CO</name><description>500kV --- AC --- 66.98km --- Imagery, OpenStreetMap, http://www.pjm.com/system-map/default.html, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-79.9006,37.3745 -79.8968,37.3753 -79.8877,37.381 -79.8666,37.3856 -79.7864,37.4004 -79.7537,37.3995 -79.7187,37.3936 -79.6832,37.3756 -79.6338,37.3539 -79.5935,37.3164 -79.5437,37.2919 -79.4965,37.2787 -79.4249,37.2813 -79.3835,37.2839 -79.3054,37.2822 -79.2557,37.2757 -79.2155,37.2898 -79.1999,37.3002 -79.1871,37.3036 -79.1721,37.3108 -79.1396,37.3205 -79.1285,37.3262 -79.1153,37.3356 -79.0656,37.3519 -79.0335,37.368 -79.0277,37.385 -79.0362,37.4254</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>765kV --- AC --- 98.61km --- Imagery, OpenStreetMap, http://www.pjm.com/system-map/default.html</description></Placemark>
<Placemark>
<LineString><coordinates>-77.2885,38.7238 -77.2879,38.7222 -77.2966,38.6771 -77.313,38.6648 -77.4597,38.631 -77.5648,38.5932 -77.5937,38.5635 -77.5955,38.5631</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>VIRGINIA ELECTRIC & POWER CO</name><description>500kV --- AC --- 39.25km --- Imagery, OpenStreetMap, http://www.pjm.com/system-map/default.html, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-78.8491,38.107 -78.8782,38.1199 -78.9134,38.1473 -78.924,38.1997 -78.9562,38.2777 -78.971,38.3135</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>VIRGINIA ELECTRIC & POWER CO</name><description>500kV --- AC --- 27.68km --- Imagery, OpenStreetMap, http://www.pjm.com/system-map/default.html, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-91.4756,30.4421 -91.4761,30.4428 -91.481,30.4473 -91.4774,30.4498 -91.4735,30.4525 -91.4692,30.4555 -91.467,30.4591 -91.464,30.4639 -91.4641,30.4695 -91.4642,30.475 -91.4643,30.4805 -91.4644,30.486 -91.4644,30.4916 -91.4645,30.4971 -91.4646,30.5026 -91.4647,30.5081 -91.4648,30.5137 -91.4649,30.5195 -91.465,30.5252 -91.465,30.5309 -91.4651,30.5365 -91.4652,30.5422 -91.4639,30.5456 -91.4598,30.5475 -91.4535,30.5501 -91.4467,30.553 -91.4401,30.5559 -91.4333,30.5589 -91.4273,30.5615 -91.422,30.5638 -91.4154,30.5665 -91.4094,30.569 -91.4024,30.5691 -91.3957,30.5693 -91.39,30.5693 -91.3836,30.5694 -91.3763,30.5695 -91.369,30.5696 -91.3654,30.5723 -91.3654,30.5782 -91.3655,30.5848 -91.363,30.5902 -91.3577,30.5948 -91.3543,30.598 -91.351,30.6021 -91.3472,30.6059 -91.3426,30.6099 -91.3466,30.6147 -91.3504,30.6196 -91.3543,30.6244 -91.3584,30.6294 -91.3625,30.6346 -91.3662,30.6395 -91.3696,30.6443 -91.3718,30.6494 -91.3728,30.6562 -91.3739,30.6632 -91.375,30.6702 -91.376,30.6769 -91.3747,30.6829 -91.3758,30.6895 -91.377,30.6959 -91.3785,30.7026 -91.3798,30.7088 -91.3812,30.7153 -91.3783,30.7196 -91.3711,30.7218 -91.368,30.7247</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 40.66km --- Imagery, OpenStreetMap, Inferred from http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-90.8962,30.4877 -90.8955,30.4897 -90.8951,30.4953 -90.8947,30.5017 -90.8943,30.5082 -90.8939,30.5144 -90.8937,30.5204 -90.8934,30.5264 -90.8932,30.5322 -90.8928,30.5378 -90.8926,30.5436 -90.8925,30.5494 -90.8922,30.5554 -90.892,30.5614 -90.8917,30.5675 -90.8914,30.5735 -90.891,30.5795 -90.8906,30.5856 -90.8901,30.5923 -90.8897,30.5989 -90.8894,30.6055 -90.8891,30.6116 -90.8888,30.6177 -90.8885,30.6239 -90.888,30.6294 -90.8874,30.6357 -90.8868,30.642 -90.8862,30.6484 -90.8855,30.6552 -90.8849,30.6609 -90.8844,30.6664 -90.8838,30.6725 -90.8832,30.6786 -90.8826,30.6847 -90.882,30.691 -90.8816,30.6979 -90.8811,30.7042 -90.8806,30.711 -90.8802,30.7173 -90.8797,30.7239 -90.8793,30.7306 -90.8788,30.7372 -90.8783,30.7439 -90.878,30.749 -90.8794,30.7497</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 26.42km --- Imagery, OpenStreetMap, Inferred from http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-91.1129,30.2784 -91.1109,30.2814 -91.1055,30.2885 -91.1036,30.2911 -91.0206,30.3459 -91.0014,30.3589 -90.9947,30.3623 -90.9834,30.368 -90.9759,30.3711 -90.9712,30.3728 -90.9,30.4167 -90.8962,30.4877</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 32.75km --- Imagery, OpenStreetMap, Inferred from http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-81.7469,35.2271 -81.7474,35.2295 -81.7395,35.2324 -81.7313,35.2354 -81.7254,35.2375 -81.7203,35.2408 -81.7146,35.2461 -81.7087,35.2516 -81.7045,35.2554 -81.6987,35.2615 -81.6923,35.2678 -81.6859,35.2742 -81.6804,35.2796 -81.6755,35.2845 -81.6692,35.2907 -81.664,35.2958 -81.6578,35.2986 -81.6492,35.2996 -81.6401,35.3007 -81.6309,35.3017 -81.6238,35.3026 -81.6153,35.3049 -81.6077,35.3084 -81.6006,35.3118 -81.5919,35.316 -81.5819,35.3207 -81.5736,35.3247 -81.5648,35.3289 -81.5592,35.3316 -81.5524,35.3348 -81.5444,35.3387 -81.5371,35.3421 -81.5309,35.3451 -81.5225,35.3452 -81.5174,35.3452 -81.5089,35.3453 -81.5009,35.3453 -81.4931,35.3454 -81.4853,35.3455 -81.4743,35.3455 -81.4635,35.3456 -81.4542,35.3457 -81.4465,35.346 -81.4377,35.3462 -81.4307,35.3465 -81.4237,35.3467 -81.4151,35.347 -81.4072,35.3472 -81.398,35.3475 -81.3909,35.3477 -81.3827,35.348 -81.3737,35.3482 -81.3649,35.3485 -81.3531,35.3506 -81.3463,35.3518 -81.3388,35.3531 -81.3298,35.3553 -81.3213,35.3578 -81.3143,35.3599 -81.3057,35.3624 -81.2975,35.3628 -81.2891,35.3632 -81.2827,35.3635 -81.2733,35.364 -81.2658,35.3643 -81.2588,35.365 -81.2491,35.3664 -81.242,35.3674 -81.2326,35.3687 -81.224,35.3699 -81.2144,35.3713 -81.205,35.3726 -81.1939,35.3741 -81.1863,35.3752 -81.1769,35.3765 -81.1701,35.3775 -81.163,35.3784 -81.1551,35.3796 -81.1481,35.3805 -81.1399,35.3823 -81.131,35.3842 -81.1226,35.386 -81.1147,35.3877 -81.1045,35.3898 -81.095,35.3919 -81.0863,35.3937 -81.0807,35.3949 -81.0741,35.3963 -81.0648,35.3983 -81.0566,35.3998 -81.0483,35.4013 -81.0407,35.4026 -81.033,35.404 -81.0265,35.4051 -81.0186,35.4065 -81.0126,35.4076 -81.0072,35.4083 -80.9991,35.409 -80.9898,35.4098 -80.9803,35.4106 -80.9717,35.4113 -80.9656,35.4118 -80.9564,35.4126 -80.9496,35.4174 -80.9453,35.4205 -80.9464,35.4218</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 85.06km --- OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-80.6012,35.7232 -80.5984,35.7216 -80.5926,35.7184 -80.5852,35.7235 -80.5796,35.7273 -80.5722,35.7324 -80.5644,35.7378 -80.5546,35.7412 -80.5453,35.7415 -80.5364,35.7418 -80.5295,35.742 -80.5204,35.7423 -80.512,35.7425 -80.5038,35.7428 -80.4952,35.7431 -80.4869,35.7433 -80.4785,35.7436 -80.4695,35.7427 -80.461,35.7407 -80.4513,35.7385 -80.4423,35.7365 -80.4332,35.7345 -80.4239,35.7324 -80.4161,35.7306 -80.4085,35.7289 -80.4021,35.7302 -80.3944,35.7318 -80.3872,35.7332 -80.3797,35.7348 -80.3716,35.7364 -80.3657,35.7364 -80.3563,35.7356 -80.348,35.7356 -80.3416,35.736 -80.333,35.7365 -80.3276,35.7373 -80.3188,35.7393 -80.311,35.7411 -80.3023,35.7431 -80.2934,35.7451 -80.2815,35.7458 -80.2728,35.7456 -80.2637,35.7457 -80.2563,35.7463 -80.2481,35.747 -80.2374,35.7479 -80.2308,35.7485 -80.2234,35.7491 -80.2139,35.7499 -80.2082,35.753 -80.2029,35.7559 -80.1966,35.7593 -80.1904,35.7619 -80.1853,35.7637 -80.1804,35.7655 -80.1719,35.7684 -80.1662,35.7704 -80.1582,35.7732 -80.1497,35.7757 -80.1406,35.7778 -80.1318,35.7798 -80.1258,35.7807 -80.1173,35.7811 -80.1091,35.7814 -80.1019,35.7826 -80.0929,35.7862 -80.0855,35.7892 -80.0787,35.7919 -80.0717,35.7943 -80.0646,35.7963 -80.0579,35.7981 -80.0491,35.8005 -80.0412,35.8027 -80.0338,35.8048 -80.0251,35.8072 -80.0164,35.8096 -80.0073,35.8121 -80.0003,35.814 -79.9912,35.8165 -79.985,35.8182 -79.9757,35.8208 -79.9682,35.8229 -79.9607,35.8264 -79.9549,35.8302 -79.9497,35.8336 -79.9426,35.8383 -79.9356,35.8416 -79.9297,35.8443 -79.921,35.8483 -79.914,35.8509 -79.9048,35.8537 -79.8966,35.8562 -79.8886,35.8587 -79.8815,35.8609 -79.8737,35.8633 -79.8665,35.8655 -79.8587,35.8691 -79.853,35.8737 -79.8469,35.8786 -79.8407,35.8835 -79.8342,35.8887 -79.8245,35.8912 -79.816,35.8925 -79.8078,35.8938 -79.7989,35.8951 -79.7929,35.8961 -79.7831,35.8983 -79.7758,35.9 -79.7691,35.9015 -79.7624,35.903 -79.7597,35.9098 -79.7571,35.9166 -79.7558,35.9233 -79.7556,35.9306 -79.7554,35.9377 -79.7554,35.9401</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 92.01km --- OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-79.7554,35.9401 -79.7542,35.9377 -79.7489,35.9335 -79.7493,35.926 -79.7497,35.9194 -79.75,35.9132 -79.7467,35.9095 -79.7378,35.9069 -79.7291,35.9042 -79.7205,35.9016 -79.7121,35.8991 -79.7055,35.8972 -79.6964,35.8967 -79.6869,35.8963 -79.6797,35.896 -79.6726,35.8956 -79.6642,35.895 -79.6572,35.8942 -79.6486,35.8932 -79.6415,35.8924 -79.6344,35.8916 -79.6262,35.8914 -79.6178,35.8911 -79.6092,35.8909 -79.6014,35.8907 -79.5923,35.8904 -79.5852,35.8902 -79.5766,35.89 -79.5687,35.8897 -79.5592,35.8889 -79.5496,35.888 -79.5402,35.8871 -79.5314,35.8863 -79.5236,35.8855 -79.5161,35.8848 -79.5074,35.8834 -79.4988,35.8819 -79.4906,35.8805 -79.4834,35.8793 -79.4746,35.8778 -79.4667,35.8778 -79.4581,35.8778 -79.4494,35.8778 -79.4414,35.8778 -79.4332,35.8771 -79.4247,35.8759 -79.4156,35.8747 -79.4082,35.8736 -79.3987,35.8723 -79.3893,35.871 -79.3814,35.8699 -79.3736,35.8689 -79.3652,35.8677 -79.3564,35.8666 -79.3483,35.8656 -79.3389,35.8644 -79.331,35.8635 -79.3254,35.8632 -79.3155,35.863 -79.3073,35.8625 -79.299,35.8615 -79.2908,35.8606 -79.2809,35.8594 -79.2721,35.8583 -79.2629,35.8572 -79.2569,35.8553 -79.2491,35.8527 -79.2418,35.8503 -79.2349,35.848 -79.2294,35.8461 -79.2207,35.844 -79.2129,35.8421 -79.2043,35.8401 -79.1959,35.838 -79.1884,35.8362 -79.1811,35.8345 -79.1737,35.8327 -79.1643,35.8304 -79.1585,35.8292 -79.1499,35.8282 -79.141,35.8271 -79.1326,35.8261 -79.1228,35.8249 -79.1152,35.824 -79.1058,35.8229 -79.0969,35.8218 -79.0881,35.8224 -79.0809,35.8251 -79.0721,35.8283 -79.0666,35.8303 -79.0593,35.8329 -79.0535,35.835 -79.0455,35.8376 -79.038,35.8402 -79.0293,35.8432 -79.0219,35.8457 -79.0141,35.8483 -79.0058,35.8527 -78.9974,35.8571 -78.9898,35.8593 -78.9798,35.8606 -78.9705,35.8617 -78.9622,35.8628 -78.9567,35.8661 -78.9492,35.8666 -78.9409,35.8681 -78.9332,35.8703 -78.9303,35.871</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 87.24km --- Imagery, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-80.9464,35.4218 -80.9434,35.4201 -80.9362,35.4228 -80.9301,35.4251 -80.9214,35.4234 -80.9145,35.4235 -80.9056,35.426 -80.8972,35.4297 -80.8909,35.4334 -80.8848,35.4371 -80.8786,35.4408 -80.8646,35.4492 -80.8568,35.4538 -80.8496,35.4581 -80.8435,35.4618 -80.8357,35.4664 -80.8254,35.4726 -80.8194,35.4761 -80.815,35.4816 -80.8106,35.487 -80.8068,35.4916 -80.8022,35.4974 -80.797,35.5037 -80.7918,35.5102 -80.7866,35.5165 -80.7826,35.5215 -80.7771,35.5282 -80.772,35.5345 -80.767,35.5409 -80.7619,35.5466 -80.7577,35.5513 -80.7523,35.5574 -80.7469,35.5635 -80.7428,35.5689 -80.7382,35.5761 -80.7318,35.5859 -80.7279,35.5919 -80.724,35.598 -80.7198,35.6045 -80.7136,35.6108 -80.7082,35.6162 -80.7018,35.6228 -80.6958,35.6289 -80.6917,35.6331 -80.6862,35.6378 -80.6795,35.6422 -80.674,35.6461 -80.6675,35.6511 -80.6372,35.6741 -80.5958,35.7162 -80.5968,35.7203 -80.6,35.7215</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 48.69km --- OpenStreetMap, Inferred from http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-91.1719,30.2479 -91.2112,30.2356 -91.2293,30.2354 -91.2352,30.2353 -91.2406,30.2387 -91.246,30.242 -91.2511,30.2451 -91.2563,30.2483 -91.261,30.2513 -91.2657,30.2541 -91.2704,30.257 -91.2748,30.2597 -91.2799,30.2629 -91.2853,30.2662 -91.2906,30.2695 -91.2959,30.2727 -91.3011,30.2759 -91.3061,30.279 -91.311,30.282 -91.3156,30.2849 -91.3212,30.2886 -91.3267,30.2933 -91.331,30.2973 -91.335,30.301 -91.339,30.3047 -91.3431,30.3084 -91.3481,30.3131 -91.3526,30.3173 -91.3571,30.3213 -91.3613,30.3253 -91.3656,30.3293 -91.37,30.3333 -91.3741,30.3372 -91.3787,30.3414 -91.3831,30.3454 -91.3875,30.3495 -91.3917,30.3534 -91.3962,30.3576 -91.4007,30.3617 -91.4048,30.3655 -91.4089,30.3692 -91.4128,30.3729 -91.417,30.3768 -91.4218,30.3815 -91.4261,30.387 -91.4288,30.3917 -91.4318,30.3964 -91.4345,30.4011 -91.4379,30.4065 -91.4426,30.4117 -91.4471,30.4159 -91.4502,30.4187 -91.4548,30.4229 -91.4586,30.4263 -91.4628,30.4301 -91.4674,30.4342 -91.4715,30.438 -91.4756,30.4421</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 38.5km --- Imagery, Inferred from http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-91.4756,30.4421 -91.4791,30.442 -91.4865,30.4426 -91.4941,30.4431 -91.5019,30.4437 -91.5098,30.4442 -91.5174,30.4448 -91.5253,30.4454 -91.5334,30.4459 -91.5415,30.4465 -91.5503,30.4472 -91.5582,30.4477 -91.5662,30.4483 -91.574,30.4488 -91.5819,30.4494 -91.5895,30.45 -91.597,30.4505 -91.6046,30.451 -91.6121,30.4516 -91.6193,30.4521 -91.6269,30.4526 -91.6343,30.4532 -91.6419,30.4537 -91.6494,30.4542 -91.6569,30.4548 -91.6645,30.4553 -91.672,30.4559 -91.6797,30.4564 -91.6873,30.457 -91.6949,30.4575 -91.7024,30.458 -91.71,30.4586 -91.717,30.4591 -91.7238,30.4596 -91.7312,30.4601 -91.7375,30.4606 -91.7492,30.4614 -91.7559,30.4619 -91.7622,30.4623 -91.769,30.4623 -91.7764,30.4616 -91.7842,30.4607 -91.7915,30.4597 -91.7992,30.4588 -91.8065,30.4578 -91.814,30.4569 -91.8215,30.4559 -91.8291,30.455 -91.8362,30.4541 -91.8437,30.4531 -91.8511,30.4522 -91.859,30.4512 -91.8653,30.4504 -91.8717,30.4496 -91.8793,30.4487 -91.8867,30.4478 -91.8942,30.4469 -91.9019,30.4459 -91.9094,30.4449 -91.9169,30.444 -91.9245,30.443 -91.9319,30.442 -91.9395,30.441 -91.9473,30.4407 -91.9553,30.4403 -91.9632,30.4399 -91.9707,30.4395 -91.9775,30.4392 -91.9846,30.4388 -91.9924,30.4384 -92.0003,30.438 -92.0083,30.4376 -92.0162,30.4372 -92.024,30.4368 -92.0312,30.4365 -92.0385,30.4361 -92.0454,30.4365 -92.0518,30.4374 -92.0584,30.4383 -92.065,30.4393 -92.0712,30.4402 -92.079,30.4413 -92.083,30.4419 -92.09,30.4429 -92.0961,30.4438 -92.1028,30.4448 -92.11,30.4458 -92.1172,30.4469 -92.125,30.448 -92.1319,30.449 -92.1361,30.4496 -92.1363,30.4492</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 66.59km --- Imagery, OpenStreetMap, Inferred from http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-92.1366,30.4481 -92.1397,30.4501 -92.1473,30.4483 -92.1539,30.4467 -92.1604,30.4451 -92.1678,30.4433 -92.1746,30.4416 -92.182,30.4398 -92.1892,30.4381 -92.1961,30.4364 -92.203,30.435 -92.2103,30.4344 -92.2173,30.4341 -92.2249,30.4338 -92.232,30.4335 -92.2392,30.4332 -92.246,30.4329 -92.2531,30.4326 -92.2603,30.4323 -92.2668,30.432 -92.2742,30.432 -92.281,30.432 -92.2882,30.432 -92.296,30.432 -92.3037,30.432 -92.3081,30.432 -92.3159,30.4319 -92.3232,30.4319 -92.3308,30.4319 -92.3383,30.4319 -92.346,30.4319 -92.3538,30.4319 -92.3614,30.4319 -92.3689,30.4319 -92.3731,30.4319 -92.3807,30.4315 -92.4071,30.4303</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 27.32km --- Imagery, OpenStreetMap, Inferred from http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-92.4263,34.3467 -92.4255,34.3435 -92.4255,34.3392 -92.4259,34.3334 -92.4261,34.3273 -92.4263,34.321 -92.4265,34.3147 -92.4265,34.3095 -92.4263,34.3042 -92.4262,34.2973 -92.4262,34.2902 -92.4261,34.284 -92.4261,34.2774 -92.426,34.2718 -92.426,34.2623 -92.426,34.2557 -92.4259,34.2489 -92.4259,34.2387 -92.4258,34.2318 -92.4258,34.2249 -92.4258,34.2184 -92.4258,34.2117 -92.4258,34.2048 -92.4257,34.1982 -92.4257,34.1915 -92.4257,34.1852 -92.4257,34.1793 -92.4257,34.1724 -92.4256,34.1665 -92.4255,34.1599 -92.4254,34.1539 -92.4253,34.1473 -92.4252,34.1409 -92.4252,34.1343 -92.4251,34.1281 -92.425,34.1222 -92.4249,34.1169 -92.4261,34.11 -92.4272,34.1035 -92.4282,34.0974 -92.4284,34.0913 -92.429,34.0851 -92.4301,34.0789 -92.4311,34.0727 -92.4321,34.0668 -92.4332,34.06 -92.4342,34.0532 -92.435,34.0472 -92.4359,34.0406 -92.4368,34.0343 -92.4377,34.028 -92.4386,34.0218 -92.4392,34.0154 -92.4399,34.0087 -92.4406,34.0022 -92.4413,33.9955 -92.4419,33.989 -92.4426,33.9823 -92.4433,33.9759 -92.4439,33.9695 -92.4447,33.9626 -92.4454,33.9557 -92.4461,33.9488 -92.4468,33.942 -92.4482,33.9355 -92.4496,33.9292 -92.451,33.923 -92.4524,33.9164 -92.4539,33.9096 -92.4554,33.9028 -92.4566,33.8962 -92.4576,33.8896 -92.4585,33.883 -92.4594,33.8763 -92.4604,33.8693 -92.4613,33.863 -92.4622,33.8564 -92.4631,33.8498 -92.4638,33.843 -92.4644,33.8361 -92.4651,33.8292 -92.4657,33.8224 -92.4663,33.8157 -92.467,33.8091 -92.4676,33.8022 -92.4682,33.7953 -92.4689,33.7884 -92.4695,33.7815 -92.4701,33.7748 -92.471,33.768 -92.4722,33.7619 -92.4735,33.7554 -92.4747,33.7488 -92.4759,33.7426 -92.4769,33.736 -92.4779,33.7294 -92.4787,33.723 -92.4796,33.7166 -92.4806,33.7104 -92.4811,33.704 -92.4813,33.6971 -92.4815,33.6903 -92.4816,33.6835 -92.4818,33.677 -92.4821,33.6706 -92.4823,33.6641 -92.4825,33.6576 -92.4827,33.6509 -92.4829,33.6443 -92.4831,33.6377 -92.4834,33.6314 -92.4836,33.6251 -92.4834,33.6188 -92.4833,33.6126 -92.4831,33.6064 -92.483,33.5996 -92.4829,33.593 -92.4831,33.5863 -92.4832,33.5795 -92.4842,33.5736 -92.4852,33.5674 -92.4861,33.5616 -92.486,33.555 -92.4858,33.5481 -92.4857,33.5414 -92.4856,33.5352 -92.4859,33.5283 -92.4866,33.5217 -92.4872,33.515 -92.4878,33.5084 -92.4885,33.5019 -92.4891,33.4951 -92.4897,33.4885 -92.4903,33.4822 -92.4904,33.4756 -92.4905,33.4691 -92.4907,33.4622 -92.4908,33.4553 -92.4909,33.4487 -92.4911,33.4421 -92.4912,33.4353 -92.4913,33.4285 -92.4914,33.4216 -92.4916,33.4152 -92.4919,33.4088 -92.4921,33.4024 -92.4923,33.3959 -92.4964,33.3909 -92.5011,33.3853 -92.5056,33.3797 -92.5099,33.3745 -92.5141,33.3693 -92.5185,33.364 -92.5226,33.3591 -92.5267,33.354 -92.5311,33.3495 -92.5355,33.3455 -92.5417,33.34 -92.5483,33.3364 -92.5551,33.3327 -92.5618,33.329 -92.5687,33.3253 -92.575,33.3217 -92.5814,33.318 -92.5878,33.3143 -92.5908,33.3099 -92.591,33.3046 -92.5912,33.2993 -92.5915,33.2931 -92.5918,33.2887</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 111.06km --- Imagery, OpenStreetMap, http://sppoasis.spp.org/documents/swpp/transmission/OEPTTF%20FINAL%20Report%20updated.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-90.0203,35.8613 -90.0239,35.8596 -90.0288,35.8571 -90.0349,35.8535 -90.0411,35.85 -90.0479,35.8463 -90.0548,35.8429 -90.0623,35.8392 -90.0693,35.8355 -90.0759,35.8321 -90.0827,35.8303 -90.09,35.8301 -90.0972,35.8297 -90.1041,35.8294 -90.112,35.8293 -90.1197,35.8293 -90.1281,35.8294 -90.1353,35.8294 -90.1433,35.8286 -90.1516,35.8271 -90.1596,35.8257 -90.1677,35.8241 -90.176,35.8226 -90.1837,35.8211 -90.1918,35.8196 -90.1998,35.8189 -90.2081,35.819 -90.2165,35.8191 -90.2243,35.8192 -90.2321,35.8192 -90.2403,35.8193 -90.2487,35.8194 -90.2563,35.8195 -90.2638,35.8197 -90.2718,35.8198 -90.2804,35.8196 -90.2891,35.8194 -90.2971,35.8197 -90.305,35.82 -90.313,35.8202 -90.321,35.8203 -90.3286,35.8203 -90.3366,35.8205 -90.3445,35.8207 -90.3522,35.8209 -90.3594,35.821 -90.363,35.8159 -90.3668,35.8107 -90.3707,35.8052 -90.3748,35.7996 -90.3793,35.7951 -90.3851,35.7911 -90.3911,35.7905 -90.3984,35.7898 -90.4057,35.7896 -90.4129,35.7899 -90.4203,35.7902 -90.4286,35.7905 -90.4368,35.7885 -90.4443,35.7866 -90.451,35.7848 -90.4587,35.7827 -90.4666,35.7806 -90.4745,35.7787 -90.4824,35.7767 -90.4904,35.7748 -90.498,35.7729 -90.5061,35.7718 -90.5139,35.7717 -90.5218,35.7713 -90.5297,35.7713 -90.5369,35.7712 -90.5448,35.7709 -90.5528,35.7707 -90.5602,35.7705 -90.568,35.77 -90.576,35.7699 -90.5839,35.7699 -90.5919,35.7697 -90.5994,35.7696 -90.6046,35.7646 -90.6102,35.7624 -90.6178,35.7627 -90.6254,35.7631 -90.6337,35.7632 -90.6422,35.7634 -90.6488,35.7634 -90.6553,35.7635 -90.6613,35.7636 -90.669,35.7613 -90.6767,35.7591 -90.6835,35.7558 -90.6886,35.7534 -90.6951,35.7503 -90.7016,35.7488 -90.709,35.7489 -90.7166,35.7489 -90.7243,35.7489 -90.7322,35.749 -90.7401,35.7491 -90.7474,35.7492 -90.7555,35.7492 -90.7634,35.7492 -90.7714,35.7492 -90.7794,35.7492 -90.7875,35.7492 -90.7954,35.7491 -90.8037,35.7492 -90.8117,35.7492 -90.8196,35.7491 -90.8273,35.7492 -90.8349,35.7492 -90.8429,35.7493 -90.8491,35.7467 -90.8538,35.7414 -90.8588,35.7359 -90.8636,35.7306 -90.8684,35.7252 -90.8732,35.7198 -90.8779,35.7145 -90.8827,35.7092 -90.8881,35.7067 -90.8954,35.7068 -90.9029,35.707 -90.9113,35.7067 -90.9201,35.7068 -90.9284,35.7068 -90.9361,35.7068 -90.9441,35.7068 -90.9519,35.7069 -90.9602,35.7071 -90.9678,35.7068 -90.9757,35.7069 -90.9831,35.7072 -90.9908,35.7072 -90.998,35.7054 -91.0053,35.7036 -91.0133,35.7035 -91.0209,35.7035 -91.0283,35.7028 -91.0343,35.7012 -91.0406,35.6996 -91.047,35.6979 -91.0551,35.6982 -91.0634,35.6984 -91.0718,35.6987 -91.0792,35.6993 -91.0872,35.6997 -91.0954,35.7 -91.1012,35.6989 -91.1068,35.696 -91.1135,35.6928 -91.1207,35.6894 -91.1284,35.6867 -91.136,35.6841 -91.1437,35.6814 -91.1516,35.6787 -91.158,35.6787 -91.1663,35.6787 -91.1745,35.6787 -91.183,35.6788 -91.1911,35.6789 -91.1987,35.6791 -91.2065,35.6792 -91.2149,35.679 -91.222,35.6811 -91.2283,35.6859 -91.2346,35.6859 -91.2416,35.6858 -91.2493,35.6857 -91.2572,35.6858 -91.2651,35.6859 -91.2731,35.686 -91.2807,35.6861 -91.2886,35.6861 -91.2965,35.6862 -91.3043,35.6862 -91.3119,35.6863 -91.3201,35.6863 -91.3284,35.6863 -91.3365,35.6865 -91.3451,35.687 -91.354,35.6875 -91.362,35.6879 -91.3702,35.6879 -91.3787,35.6878 -91.3871,35.6878 -91.3954,35.6879 -91.4038,35.688 -91.4084,35.6857 -91.4103,35.6808 -91.4127,35.68</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ENTERGY ARKANSAS INC</name><description>500kV --- AC --- 145.63km --- Imagery, OpenStreetMap, http://sppoasis.spp.org/documents/swpp/transmission/OEPTTF%20FINAL%20Report%20updated.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-90.0203,35.8613 -90.0225,35.8598 -90.0271,35.8575 -90.027,35.851 -90.0271,35.8446 -90.0271,35.8381 -90.0271,35.8316 -90.027,35.8252 -90.0269,35.8187 -90.0267,35.8126 -90.0266,35.8061 -90.0265,35.7995 -90.0264,35.7931 -90.0179,35.7932 -90.0179,35.7866 -90.018,35.7805 -90.018,35.7739 -90.0181,35.7672 -90.0181,35.7604 -90.0181,35.7537 -90.0181,35.747 -90.0198,35.7413 -90.0232,35.7362 -90.0266,35.7311 -90.0267,35.7237 -90.0268,35.7165 -90.0269,35.7093 -90.027,35.7021 -90.027,35.6948 -90.0271,35.6874 -90.0272,35.6798 -90.0273,35.6721 -90.0237,35.6668 -90.0199,35.6621 -90.0153,35.6563 -90.0113,35.6506 -90.0044,35.6456 -89.997,35.6409 -89.99,35.6366 -89.9844,35.633</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ENTERGY ARKANSAS INC</name><description>500kV --- AC --- 26.35km --- Imagery, OpenStreetMap, http://sppoasis.spp.org/documents/swpp/transmission/OEPTTF%20FINAL%20Report%20updated.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-92.5918,33.2887 -92.592,33.2932 -92.5917,33.2993 -92.5995,33.2992 -92.6075,33.2991 -92.6154,33.299 -92.6221,33.2989 -92.6295,33.2987 -92.6371,33.2985 -92.6453,33.2982 -92.6532,33.2978 -92.6599,33.2976 -92.668,33.2973 -92.675,33.297 -92.6818,33.2968 -92.6901,33.297 -92.6979,33.2972 -92.7054,33.2973 -92.7112,33.2975 -92.7184,33.2976 -92.7247,33.2977 -92.7306,33.2976 -92.7376,33.2971 -92.7454,33.2965 -92.7534,33.2962 -92.7616,33.2962 -92.7698,33.2963 -92.7776,33.2964 -92.7852,33.2965 -92.7926,33.2967 -92.8003,33.2968 -92.8077,33.297 -92.8158,33.2974 -92.8231,33.2978 -92.8308,33.2983 -92.8388,33.2988 -92.8459,33.2991 -92.8534,33.2994 -92.8614,33.2998 -92.8695,33.3003 -92.8768,33.3008 -92.8845,33.3012 -92.892,33.3016 -92.8991,33.3017 -92.9063,33.3018 -92.9145,33.3019 -92.9226,33.302 -92.9297,33.3034 -92.9359,33.3064 -92.9431,33.3099 -92.9495,33.313 -92.9561,33.3147 -92.963,33.3151 -92.9699,33.3153 -92.9772,33.3155 -92.9847,33.3157 -92.9919,33.316 -92.999,33.3162 -93.0068,33.3164 -93.0143,33.3166 -93.0221,33.3168 -93.0293,33.317 -93.0363,33.3174 -93.0429,33.3178 -93.0498,33.3183 -93.0564,33.3199 -93.0636,33.3203 -93.0713,33.3207 -93.0793,33.3212 -93.0874,33.3216 -93.0952,33.322 -93.1024,33.3225 -93.1096,33.3229 -93.1172,33.3233 -93.1249,33.3237 -93.133,33.3239 -93.1401,33.3242 -93.1479,33.3245 -93.1554,33.3247 -93.163,33.325 -93.171,33.3252 -93.177,33.328 -93.183,33.3308 -93.19,33.3324 -93.197,33.3325 -93.2035,33.3326 -93.2102,33.3328 -93.2167,33.3329 -93.2228,33.333 -93.2255,33.3348 -93.2244,33.3367</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 65.42km --- Imagery, OpenStreetMap, http://sppoasis.spp.org/documents/swpp/transmission/OEPTTF%20FINAL%20Report%20updated.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-92.4263,34.3467 -92.4269,34.3494 -92.4326,34.3496 -92.4391,34.3497 -92.4463,34.3515 -92.4541,34.3535 -92.4619,34.3556 -92.4689,34.3574 -92.4762,34.3594 -92.4833,34.3612 -92.4897,34.3644 -92.4963,34.3676 -92.5022,34.3705 -92.5095,34.3741 -92.5163,34.3774 -92.5234,34.3809 -92.5306,34.3835 -92.5378,34.386 -92.545,34.3886 -92.5514,34.3909 -92.5586,34.3935 -92.5657,34.396 -92.5731,34.3986 -92.5792,34.4008 -92.5869,34.4024 -92.5946,34.4036 -92.6022,34.4047 -92.6133,34.4064 -92.6208,34.4075 -92.6273,34.4089 -92.6338,34.4107 -92.6411,34.4128 -92.6485,34.4148 -92.6557,34.4168 -92.6623,34.4187 -92.669,34.4205 -92.6758,34.4224 -92.6827,34.4244 -92.6892,34.4255 -92.6965,34.4257 -92.7037,34.4259 -92.7105,34.426 -92.7182,34.4262 -92.7255,34.4263 -92.7324,34.4263 -92.7397,34.4264 -92.7475,34.4264 -92.7547,34.4274 -92.7613,34.4291 -92.7678,34.43 -92.7752,34.4299 -92.782,34.4299 -92.7889,34.4298 -92.7939,34.4298 -92.8206,34.4313 -92.8272,34.4316</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 41.83km --- Imagery, OpenStreetMap, http://sppoasis.spp.org/documents/swpp/transmission/OEPTTF%20FINAL%20Report%20updated.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-92.4107,34.6342 -92.4096,34.6302 -92.4099,34.6244 -92.4102,34.6181 -92.4092,34.6124 -92.4088,34.6013 -92.4097,34.5832 -92.4096,34.578 -92.411,34.5718 -92.4141,34.566 -92.4179,34.5588 -92.4208,34.5534 -92.4233,34.5485 -92.4235,34.5421 -92.4236,34.5361 -92.4237,34.5299 -92.4238,34.5229 -92.4239,34.5164 -92.424,34.51 -92.4245,34.506 -92.4249,34.5006 -92.4248,34.4941 -92.4247,34.4872 -92.4246,34.4804 -92.4245,34.4738 -92.4244,34.4673 -92.4243,34.4608 -92.4243,34.4549 -92.4241,34.4486 -92.424,34.4419 -92.424,34.436 -92.4239,34.4305 -92.4238,34.4242 -92.4237,34.4178 -92.4236,34.4116 -92.4235,34.405 -92.4235,34.3991 -92.4237,34.3922 -92.4238,34.3865 -92.4239,34.3798 -92.4241,34.3732 -92.4243,34.3671 -92.4244,34.3608 -92.425,34.3549 -92.4259,34.3497 -92.4263,34.3467</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 29.19km --- Imagery, OpenStreetMap, http://sppoasis.spp.org/documents/swpp/transmission/OEPTTF%20FINAL%20Report%20updated.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-92.4263,34.3467 -92.4252,34.35 -92.4246,34.3549 -92.4204,34.3578 -92.4131,34.3576 -92.4052,34.3574 -92.3985,34.3572 -92.3907,34.357 -92.3839,34.357 -92.3758,34.3571 -92.3678,34.3571 -92.3601,34.357 -92.3526,34.357 -92.3475,34.3607 -92.3417,34.3649 -92.3364,34.3688 -92.3306,34.373 -92.3253,34.3769 -92.3189,34.3815 -92.3135,34.3855 -92.3082,34.3893 -92.3028,34.3933 -92.2974,34.3973 -92.2911,34.3993 -92.2831,34.3992 -92.2763,34.3992 -92.2695,34.3991 -92.2617,34.3991 -92.2536,34.3989 -92.2464,34.3985 -92.239,34.3984 -92.2312,34.3984 -92.2233,34.3982 -92.2155,34.3984 -92.2078,34.3985 -92.2007,34.3983 -92.1932,34.3981 -92.1863,34.3992 -92.1787,34.4015 -92.1715,34.4037 -92.1669,34.4077 -92.1635,34.4132 -92.1605,34.4181 -92.157,34.4245 -92.1492,34.4244 -92.1442,34.4241</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ENTERGY ARKANSAS INC</name><description>500kV --- AC --- 31.81km --- Imagery, OpenStreetMap, http://sppoasis.spp.org/documents/swpp/transmission/OEPTTF%20FINAL%20Report%20updated.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-92.4107,34.6342 -92.4091,34.6302 -92.4094,34.6243 -92.4097,34.6181 -92.4087,34.6124 -92.4081,34.6041 -92.4085,34.5982 -92.4092,34.5831 -92.4036,34.5831 -92.3982,34.583 -92.392,34.5829 -92.3842,34.5829 -92.3769,34.5828 -92.3694,34.5828 -92.3629,34.5827 -92.3318,34.5824 -92.3248,34.5824 -92.3179,34.5824 -92.3114,34.5823 -92.3051,34.5822 -92.3004,34.5821 -92.296,34.5821 -92.2888,34.582 -92.2811,34.5818 -92.2737,34.5817 -92.2638,34.5826 -92.2583,34.5861 -92.252,34.5885 -92.2447,34.5903 -92.2376,34.592 -92.2305,34.5937 -92.2227,34.5945 -92.2173,34.5936</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 24.69km --- Imagery, OpenStreetMap, http://sppoasis.spp.org/documents/swpp/transmission/OEPTTF%20FINAL%20Report%20updated.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-92.1442,34.4241 -92.1481,34.4249 -92.1518,34.4283 -92.1531,34.4329 -92.1505,34.4383 -92.1478,34.4439 -92.1453,34.4483 -92.1431,34.4534 -92.1419,34.4593 -92.1418,34.465 -92.1377,34.4698 -92.1331,34.4751 -92.1246,34.4852 -92.1193,34.4909 -92.1143,34.4951 -92.1085,34.5 -92.1034,34.5044 -92.0983,34.5088 -92.0933,34.5131 -92.0828,34.5215 -92.075,34.5277 -92.0699,34.5317 -92.0652,34.5355 -92.0652,34.5411 -92.0652,34.5472 -92.0652,34.5532 -92.0652,34.5591 -92.0652,34.5651 -92.065,34.5714 -92.0649,34.5785 -92.0649,34.5843 -92.0648,34.5899 -92.0627,34.5949 -92.0584,34.5994 -92.0541,34.6039 -92.0492,34.6091 -92.0471,34.6141 -92.0471,34.6198 -92.0475,34.6367 -92.0483,34.6406</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 26.66km --- Imagery, OpenStreetMap, http://sppoasis.spp.org/documents/swpp/transmission/OEPTTF%20FINAL%20Report%20updated.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-92.0489,34.9569 -92.047,34.9589 -92.0483,34.9633 -92.0499,34.969 -92.0489,34.9759 -92.0459,34.994 -92.0448,35.0006 -92.0367,35.0228 -92.0346,35.0284 -92.0326,35.0334 -92.0308,35.0408 -92.0293,35.0467 -92.0278,35.0527 -92.026,35.0585 -92.024,35.0643 -92.0219,35.0703 -92.0197,35.0765 -92.0178,35.0819 -92.0158,35.0877 -92.0159,35.0937 -92.0159,35.0994 -92.0156,35.1059 -92.011,35.1113 -92.0062,35.1169 -92.0016,35.1224 -91.997,35.1277 -91.9934,35.1319 -91.9881,35.1381 -91.9831,35.144 -91.9791,35.1487 -91.9743,35.1543 -91.9689,35.1588 -91.9627,35.1628 -91.9568,35.1665 -91.9504,35.1707 -91.9443,35.1748 -91.9386,35.1791 -91.9327,35.1835 -91.9278,35.1867 -91.923,35.1897 -91.9186,35.1934 -91.9138,35.1979 -91.9088,35.2025 -91.9044,35.2065 -91.8991,35.2111 -91.893,35.2163 -91.8876,35.2212 -91.8825,35.2264 -91.8776,35.2313 -91.8727,35.2362 -91.8679,35.2411 -91.8632,35.2458 -91.858,35.251 -91.8531,35.256 -91.8477,35.2612 -91.8422,35.2664 -91.8368,35.2717 -91.832,35.2752 -91.8266,35.279 -91.821,35.2829 -91.8158,35.2867 -91.8117,35.291 -91.8071,35.2959 -91.802,35.3012 -91.7973,35.3061 -91.7931,35.3114 -91.7892,35.3171 -91.7853,35.3222 -91.7807,35.327 -91.7756,35.3321 -91.7705,35.3366 -91.7651,35.3414 -91.7597,35.3462 -91.7539,35.3513 -91.749,35.3558 -91.7457,35.3612 -91.742,35.3671 -91.738,35.3722 -91.7332,35.3769 -91.7286,35.3814 -91.724,35.3858 -91.7171,35.3884 -91.71,35.3897 -91.7028,35.391 -91.6974,35.3959 -91.693,35.3999 -91.687,35.4054 -91.6814,35.4106 -91.6781,35.4152 -91.6753,35.4213 -91.6722,35.4248 -91.666,35.4277 -91.6594,35.4308 -91.6563,35.4364 -91.6534,35.4414 -91.6505,35.4465 -91.6421,35.4486 -91.6359,35.4533 -91.6288,35.4587 -91.6232,35.463 -91.6177,35.467 -91.6124,35.4706 -91.6058,35.475 -91.5998,35.4791 -91.5935,35.4833 -91.5873,35.4875 -91.5836,35.4927 -91.579,35.499 -91.5747,35.5042 -91.5703,35.5092 -91.5658,35.5141 -91.5596,35.5192 -91.5542,35.5236 -91.5475,35.5289 -91.5424,35.5334 -91.5375,35.5382 -91.5327,35.5428 -91.5278,35.5461 -91.5222,35.55 -91.517,35.5541 -91.5117,35.5584 -91.5062,35.5628 -91.501,35.567 -91.4951,35.5717 -91.489,35.577 -91.4833,35.5819 -91.4774,35.5869 -91.4724,35.5913 -91.4664,35.5964 -91.4606,35.6014 -91.4549,35.6063 -91.4492,35.6112 -91.444,35.6158 -91.4387,35.6209 -91.4335,35.6258 -91.4283,35.6308 -91.423,35.6358 -91.4184,35.6403 -91.4174,35.6476 -91.4165,35.654 -91.4165,35.6607 -91.4167,35.6663 -91.4168,35.6719 -91.4169,35.6779 -91.4157,35.6811 -91.4126,35.6803</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ENTERGY ARKANSAS INC</name><description>500kV --- AC --- 101.23km --- Imagery, OpenStreetMap, http://sppoasis.spp.org/documents/swpp/transmission/OEPTTF%20FINAL%20Report%20updated.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-93.2244,33.3367 -93.2236,33.3401 -93.2227,33.3456 -93.2225,33.3514 -93.2212,33.3577 -93.219,33.364 -93.217,33.37 -93.2151,33.376 -93.2147,33.3821 -93.2146,33.388 -93.2141,33.394 -93.2132,33.4003 -93.2123,33.4063 -93.2114,33.4124 -93.2106,33.4185 -93.209,33.4233 -93.2069,33.4297 -93.2049,33.4361 -93.2027,33.4427 -93.2008,33.4487 -93.199,33.4546 -93.1971,33.4606 -93.1954,33.4659 -93.1939,33.4707 -93.192,33.4768 -93.1901,33.4828 -93.1884,33.4884 -93.1865,33.4943 -93.1848,33.5 -93.1826,33.5069 -93.1807,33.5132 -93.1786,33.5197 -93.1768,33.5255 -93.1764,33.5313 -93.176,33.5375 -93.1756,33.5437 -93.1753,33.551 -93.1752,33.5571 -93.1752,33.564 -93.1751,33.57 -93.175,33.5747 -93.1755,33.581 -93.1764,33.5864 -93.1774,33.593 -93.1781,33.5983 -93.179,33.6042 -93.1799,33.6098 -93.1807,33.6152 -93.1806,33.6209 -93.1805,33.6263 -93.1802,33.6322 -93.1798,33.6383 -93.1794,33.6446 -93.1788,33.6511 -93.1787,33.6565 -93.1787,33.6624 -93.1786,33.668 -93.1785,33.6733 -93.1782,33.6782 -93.178,33.6844 -93.1777,33.6905 -93.1775,33.6966 -93.1772,33.7024 -93.177,33.7085 -93.1768,33.7143 -93.1766,33.7209 -93.1763,33.7295 -93.176,33.7355 -93.1757,33.7423 -93.1754,33.7489 -93.1752,33.7548 -93.1749,33.7607 -93.1721,33.766 -93.1668,33.7711 -93.1614,33.7761 -93.1563,33.7809 -93.152,33.786 -93.1479,33.7911 -93.1436,33.7962 -93.1392,33.8015 -93.1348,33.8069 -93.1301,33.8126 -93.1258,33.8179 -93.1217,33.8228 -93.1177,33.8277 -93.1133,33.8329 -93.1093,33.8379 -93.1051,33.843 -93.1006,33.8485 -93.1007,33.8539 -93.1008,33.8595 -93.1007,33.865 -93.1005,33.8706 -93.1003,33.8758 -93.1001,33.8816 -93.0999,33.8875 -93.0997,33.8932 -93.0995,33.8993 -93.0992,33.9052 -93.099,33.9112 -93.0989,33.9165 -93.0987,33.9222 -93.0986,33.9279 -93.0984,33.9335 -93.0983,33.9389 -93.0981,33.9445 -93.098,33.9504 -93.0979,33.956 -93.0978,33.9617 -93.0977,33.9674 -93.0975,33.973 -93.0974,33.9787 -93.0973,33.9845 -93.0972,33.9903 -93.0961,33.9963 -93.0945,34.0016 -93.0928,34.0069 -93.091,34.0125 -93.0892,34.0182 -93.0874,34.024 -93.0856,34.029 -93.0837,34.034 -93.0835,34.0389 -93.0842,34.0446 -93.0857,34.0502 -93.0872,34.0558 -93.0871,34.061 -93.087,34.0659 -93.0869,34.071 -93.0804,34.0708 -93.0729,34.0706 -93.065,34.0705 -93.0569,34.0703 -93.0506,34.0728 -93.045,34.0776 -93.0392,34.0824 -93.0336,34.087 -93.0278,34.0915 -93.0222,34.0961 -93.0171,34.1008 -93.012,34.1051 -93.0066,34.1097 -93.0013,34.1143 -92.9959,34.1189 -92.991,34.1235 -92.9862,34.1281 -92.9814,34.1327 -92.9767,34.1373 -92.9742,34.1428 -92.974,34.149 -92.9737,34.1549 -92.9734,34.1609 -92.9731,34.167 -92.973,34.1734 -92.9728,34.1794 -92.9726,34.1856 -92.9724,34.1912 -92.9701,34.1967 -92.9655,34.2022 -92.9609,34.2077 -92.9564,34.2129 -92.9521,34.2182 -92.9478,34.2233 -92.9435,34.2283 -92.9391,34.2334 -92.9351,34.2383 -92.9308,34.2434 -92.9263,34.2487 -92.9217,34.2542 -92.9173,34.2595 -92.9128,34.2649 -92.9084,34.2701 -92.904,34.2755 -92.8995,34.2809 -92.8951,34.2862 -92.8908,34.2914 -92.8863,34.2969 -92.8806,34.2989 -92.8736,34.2981 -92.8706,34.2981</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 111.68km --- Imagery, OpenStreetMap, http://sppoasis.spp.org/documents/swpp/transmission/OEPTTF%20FINAL%20Report%20updated.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-94.4304,35.3 -94.4294,35.2979 -94.4312,35.2916 -94.4324,35.2872 -94.4332,35.2811 -94.4333,35.2763 -94.4335,35.2705 -94.4337,35.2645 -94.4309,35.2608 -94.4226,35.2569 -94.4166,35.254 -94.4094,35.2506 -94.403,35.2475 -94.3963,35.2443 -94.3895,35.2411 -94.3827,35.2378 -94.3761,35.2347 -94.3696,35.2315 -94.3628,35.228 -94.357,35.225 -94.35,35.2214 -94.343,35.2177 -94.336,35.2141 -94.3292,35.2106 -94.3222,35.207 -94.3151,35.2048 -94.3058,35.2019 -94.299,35.1998 -94.2918,35.1976 -94.2849,35.1955 -94.277,35.1931 -94.2694,35.1907 -94.2619,35.1884 -94.255,35.1862 -94.2468,35.1823 -94.2409,35.1795 -94.2324,35.1754 -94.2251,35.172 -94.2184,35.1687 -94.2111,35.1652 -94.2063,35.1629 -94.1998,35.1596 -94.1937,35.1565 -94.1877,35.1536 -94.1808,35.1502 -94.1714,35.1478 -94.1635,35.1459 -94.157,35.1443 -94.1495,35.1424 -94.1402,35.1402 -94.1314,35.138 -94.1234,35.136 -94.117,35.1344 -94.1096,35.1326 -94.1022,35.1309 -94.0949,35.1291 -94.0871,35.1272 -94.0804,35.1256 -94.0749,35.1242 -94.0679,35.1225 -94.061,35.1209 -94.055,35.1194 -94.0468,35.1174 -94.0372,35.1151 -94.0307,35.1136 -94.0229,35.112 -94.0165,35.1106 -94.0083,35.1088 -94.0001,35.107 -93.992,35.1053 -93.9834,35.1034 -93.9743,35.1015 -93.9665,35.0996 -93.9591,35.0978 -93.951,35.0958 -93.9429,35.0938 -93.933,35.0914 -93.9253,35.0896 -93.9185,35.0879 -93.9125,35.0864 -93.9037,35.084 -93.8965,35.0821 -93.8893,35.0801 -93.8834,35.0786 -93.8746,35.0762 -93.867,35.0741 -93.859,35.072 -93.8512,35.0699 -93.8439,35.068 -93.8363,35.0659 -93.8279,35.0636 -93.8188,35.0637 -93.8094,35.0642 -93.8015,35.065 -93.794,35.0658 -93.7874,35.0664 -93.7813,35.0669 -93.7746,35.0671 -93.7662,35.0674 -93.7569,35.0677 -93.7493,35.0679 -93.74,35.0682 -93.732,35.0685 -93.7253,35.0699 -93.7191,35.0732 -93.712,35.0769 -93.705,35.0768 -93.6983,35.0766 -93.6912,35.0763 -93.6847,35.0762 -93.6775,35.0759 -93.6701,35.0757 -93.6624,35.0754 -93.6546,35.0751 -93.6471,35.0749 -93.6409,35.0748 -93.6324,35.075 -93.625,35.0752 -93.6178,35.0753 -93.6097,35.0755 -93.6023,35.0757 -93.5954,35.0758 -93.5901,35.0758 -93.5822,35.0758 -93.5749,35.0758 -93.5675,35.0757 -93.5603,35.0756 -93.5534,35.0755 -93.5457,35.0755 -93.5385,35.0755 -93.5307,35.0755 -93.5235,35.0755 -93.5161,35.0755 -93.5089,35.0755 -93.5016,35.0755 -93.4937,35.0757 -93.4856,35.0761 -93.4774,35.0765 -93.4697,35.0769 -93.4622,35.0772 -93.4535,35.0777 -93.4461,35.078 -93.4378,35.0782 -93.4309,35.0784 -93.4227,35.0787 -93.4152,35.0783 -93.4081,35.0779 -93.4008,35.0776 -93.3934,35.0772 -93.3871,35.077 -93.3787,35.0766 -93.3707,35.0761 -93.3626,35.0756 -93.3545,35.075 -93.3464,35.0745 -93.3388,35.074 -93.3309,35.0735 -93.3227,35.0729 -93.3145,35.0724 -93.3096,35.0786 -93.3085,35.0843 -93.3076,35.0894 -93.3065,35.0945 -93.3053,35.1001 -93.304,35.1061 -93.3028,35.112 -93.3016,35.1176 -93.3001,35.124 -93.2984,35.1315 -93.297,35.1376 -93.2958,35.1432 -93.2945,35.1496 -93.2933,35.1561 -93.2921,35.1621 -93.291,35.168 -93.2899,35.174 -93.2886,35.1805 -93.2876,35.1861 -93.2865,35.1919 -93.2853,35.1983 -93.2856,35.2043 -93.2874,35.2104 -93.2892,35.2167 -93.2911,35.2231 -93.2927,35.2283 -93.2938,35.2322 -93.2951,35.2367 -93.2966,35.2418 -93.2985,35.2482 -93.3004,35.2543 -93.3018,35.259 -93.3033,35.2641 -93.3048,35.2691 -93.3064,35.2747 -93.3071,35.2797 -93.3072,35.2863 -93.3073,35.2928 -93.3073,35.299 -93.3076,35.3059 -93.3078,35.3116 -93.308,35.3178 -93.3083,35.324 -93.302,35.3323 -93.2987,35.3361 -93.2944,35.34 -93.2868,35.34 -93.2787,35.3399 -93.2708,35.3399 -93.2642,35.3399 -93.257,35.3399 -93.2497,35.3399 -93.2447,35.3382 -93.2373,35.3359 -93.2312,35.334 -93.2303,35.3292 -93.2287,35.3212 -93.2276,35.3155 -93.2275,35.3115</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 156.6km --- Imagery, OpenStreetMap, http://sppoasis.spp.org/documents/swpp/transmission/OEPTTF%20FINAL%20Report%20updated.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-93.2275,35.3115 -93.2282,35.3155 -93.2292,35.3211 -93.2301,35.3257 -93.2313,35.3318 -93.2344,35.3346 -93.2411,35.3367 -93.2474,35.3387 -93.253,35.3395 -93.2604,35.3395 -93.2673,35.3395 -93.2749,35.3395 -93.2826,35.3396 -93.2906,35.3396 -93.2962,35.3377 -93.2995,35.3345 -93.3059,35.3261 -93.3076,35.3211 -93.3074,35.3151 -93.3072,35.3087 -93.307,35.3028 -93.3069,35.2959 -93.3068,35.2897 -93.3067,35.2832 -93.3066,35.277 -93.3052,35.2721 -93.3033,35.2657 -93.3024,35.2629 -93.3008,35.2575 -93.2991,35.2516 -93.2973,35.2458 -93.2955,35.2397 -93.2938,35.234 -93.2923,35.2289 -93.2909,35.2239 -93.2889,35.2171 -93.287,35.2107 -93.2851,35.2044 -93.2848,35.1982 -93.286,35.1918 -93.2871,35.186 -93.2882,35.1804 -93.2894,35.174 -93.2905,35.1682 -93.2916,35.1625 -93.2928,35.1559 -93.294,35.1496 -93.2952,35.1435 -93.2965,35.1376 -93.2979,35.1314 -93.2997,35.1239 -93.3011,35.1175 -93.3023,35.1119 -93.3036,35.106 -93.3048,35.1 -93.306,35.0944 -93.3072,35.0891 -93.308,35.0844 -93.3091,35.0786 -93.3061,35.0718 -93.2984,35.0713 -93.2899,35.0709 -93.2819,35.0704 -93.2742,35.07 -93.267,35.0696 -93.2601,35.0681 -93.2518,35.0662 -93.2436,35.0643 -93.2358,35.0625 -93.2277,35.0607 -93.2196,35.0588 -93.2115,35.057 -93.2043,35.0553 -93.198,35.053 -93.1908,35.0504 -93.1832,35.0476 -93.1756,35.0448 -93.168,35.042 -93.1607,35.0398 -93.1526,35.038 -93.1448,35.0361 -93.1367,35.0342 -93.1286,35.0323 -93.1204,35.0304 -93.1124,35.0286 -93.1045,35.0267 -93.0967,35.0246 -93.0889,35.0224 -93.0812,35.0203 -93.0733,35.0181 -93.0658,35.0161 -93.058,35.0139 -93.0502,35.0118 -93.0435,35.01 -93.0362,35.0081 -93.03,35.0064 -93.0234,35.0047 -93.0132,35.002 -93.0041,35.0005 -92.9973,34.9994 -92.9902,34.9983 -92.9849,34.9966 -92.9775,34.9931 -92.9696,34.9893 -92.9611,34.9851 -92.9562,34.9827 -92.9514,34.9819 -92.9447,34.9809 -92.9365,34.9795 -92.929,34.9783 -92.9207,34.977 -92.9124,34.9756 -92.9047,34.9744 -92.8972,34.9733 -92.8889,34.972 -92.8811,34.9708 -92.8737,34.9697 -92.8658,34.9686 -92.8579,34.9675 -92.8498,34.9663 -92.8414,34.9652 -92.8333,34.964 -92.8255,34.9629 -92.8191,34.962 -92.8129,34.9609 -92.8048,34.9594 -92.7971,34.958 -92.7931,34.9544 -92.7883,34.9501 -92.7839,34.9461 -92.777,34.9397 -92.7707,34.9338 -92.7653,34.9288 -92.7601,34.924 -92.7546,34.9189 -92.7491,34.9137 -92.7449,34.9098 -92.7386,34.904 -92.7341,34.8997 -92.7291,34.8951 -92.725,34.8913 -92.7209,34.8874 -92.7155,34.8824 -92.7102,34.8775 -92.7046,34.8723 -92.7003,34.8686 -92.6944,34.8641 -92.6885,34.8597 -92.6831,34.8556 -92.6792,34.8527 -92.6708,34.8464 -92.6671,34.8436 -92.6629,34.8405 -92.6575,34.8364 -92.6538,34.8336 -92.6489,34.8299 -92.6425,34.8252 -92.6373,34.8212 -92.6295,34.8146 -92.6242,34.8101 -92.6187,34.8053 -92.6129,34.8005 -92.6079,34.7962 -92.6034,34.7923 -92.5986,34.7882 -92.5935,34.7829 -92.5872,34.7764 -92.5816,34.7705 -92.5761,34.7648 -92.5713,34.7598 -92.5661,34.7544 -92.5624,34.7493 -92.5587,34.7442 -92.5546,34.7385 -92.5496,34.7356 -92.5434,34.7319 -92.5376,34.7285 -92.5319,34.7251 -92.5267,34.7204 -92.5216,34.7159 -92.5176,34.7123 -92.5128,34.7079 -92.5092,34.7047 -92.5052,34.7013 -92.4987,34.6964 -92.494,34.6928 -92.4892,34.6892 -92.4843,34.6855 -92.4788,34.6814 -92.473,34.6771 -92.4671,34.6726 -92.4611,34.6681 -92.4547,34.6633 -92.4485,34.6586 -92.4423,34.654 -92.4368,34.6497 -92.4317,34.649 -92.4247,34.6505 -92.4177,34.6521 -92.4149,34.6473 -92.4124,34.6431 -92.4129,34.6384 -92.4133,34.6347 -92.4115,34.6325</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 141.34km --- Imagery, OpenStreetMap, http://sppoasis.spp.org/documents/swpp/transmission/OEPTTF%20FINAL%20Report%20updated.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-92.0483,34.6406 -92.0472,34.6464 -92.0466,34.6512 -92.0466,34.6613 -92.0462,34.6738 -92.046,34.6799 -92.0458,34.6862 -92.0456,34.6917 -92.0453,34.6982 -92.045,34.7101 -92.0449,34.723 -92.0455,34.7295 -92.0465,34.7429 -92.0468,34.7498 -92.0467,34.7567 -92.0467,34.7624 -92.0468,34.7691 -92.0467,34.7762 -92.0464,34.7832 -92.0454,34.7885 -92.042,34.7951 -92.0407,34.8041 -92.0406,34.8201 -92.0415,34.8263 -92.0412,34.8346 -92.0362,34.8383 -92.0373,34.8592 -92.0387,34.8698 -92.0379,34.8874 -92.0376,34.8949 -92.0371,34.9183 -92.04,34.9275 -92.0423,34.9347 -92.0442,34.9453 -92.0454,34.9521 -92.0466,34.9573 -92.048,34.9576</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>ENTERGY ARKANSAS INC</name><description>500kV --- AC --- 32.63km --- Imagery, OpenStreetMap, http://sppoasis.spp.org/documents/swpp/transmission/OEPTTF%20FINAL%20Report%20updated.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-81.953,30.2724 -81.9552,30.2717 -81.9537,30.2649 -81.9558,30.2584 -81.958,30.2514 -81.9602,30.2445 -81.9624,30.2375 -81.9646,30.2308 -81.9668,30.2239 -81.969,30.2169 -81.9694,30.213 -81.9635,30.2091 -81.957,30.2048 -81.9502,30.2002 -81.9436,30.196 -81.9369,30.1915 -81.9302,30.1871 -81.9239,30.1829 -81.9172,30.1785 -81.911,30.1743 -81.9047,30.17 -81.8982,30.1655 -81.8917,30.1611 -81.8852,30.1566 -81.8789,30.1521 -81.8722,30.1485 -81.8642,30.1441 -81.8581,30.1393 -81.8531,30.1335 -81.8483,30.1281 -81.8433,30.1222 -81.8401,30.0842 -81.8398,30.077 -81.8397,30.0704 -81.8395,30.0631 -81.8394,30.0563 -81.8394,30.0491 -81.8394,30.0431 -81.8394,30.0368 -81.8394,30.0307 -81.8473,30.0309 -81.8556,30.0311 -81.8618,30.0281 -81.8676,30.0253 -81.8739,30.0223 -81.8737,30.0156 -81.8735,30.009 -81.8733,30.0013 -81.8731,29.9943 -81.8683,29.9878 -81.8641,29.9821 -81.8603,29.977 -81.8564,29.9717 -81.8521,29.9659 -81.8488,29.9595 -81.8478,29.9534 -81.8479,29.9464 -81.8479,29.9391 -81.8479,29.9328 -81.8478,29.926 -81.8478,29.9189 -81.8478,29.9117 -81.8477,29.9045 -81.8476,29.8977 -81.8453,29.8911 -81.8429,29.8844 -81.8406,29.8779 -81.8393,29.8712 -81.8389,29.8643 -81.8385,29.8573 -81.8382,29.8504 -81.8378,29.8434 -81.8373,29.8366 -81.8349,29.8296 -81.8324,29.8223 -81.8299,29.8152 -81.8275,29.8082 -81.8263,29.8011 -81.8262,29.794 -81.8262,29.7868 -81.8262,29.78 -81.8261,29.7734 -81.8261,29.7668 -81.8262,29.7602 -81.8263,29.7577 -81.8203,29.7541 -81.8138,29.7502 -81.8074,29.7462 -81.8006,29.7422 -81.7937,29.7381 -81.7872,29.7343 -81.7803,29.7301 -81.7735,29.726 -81.7669,29.7233 -81.766,29.7203 -81.7679,29.7145 -81.7722,29.7088 -81.7766,29.7029 -81.7808,29.6972 -81.7853,29.6913 -81.7894,29.6858 -81.7931,29.6808 -81.7945,29.6368 -81.7898,29.6317 -81.7849,29.6264 -81.7806,29.6205 -81.7766,29.6138 -81.7725,29.6069 -81.7712,29.6047 -81.7676,29.5987 -81.7626,29.5956 -81.7566,29.5957 -81.7481,29.5957 -81.7412,29.5958 -81.7337,29.5961 -81.7259,29.5964 -81.7183,29.5966 -81.7108,29.5969 -81.7027,29.5969 -81.6955,29.5983 -81.6872,29.6014 -81.6805,29.6039 -81.6733,29.6066 -81.6662,29.6079 -81.6606,29.6079 -81.6534,29.6074 -81.6468,29.6096 -81.6412,29.6143 -81.6358,29.6189 -81.6303,29.6208 -81.6227,29.6209 -81.6152,29.6211 -81.6081,29.6209 -81.5997,29.6215 -81.5873,29.6239 -81.5813,29.6269 -81.5754,29.6298 -81.5682,29.6286 -81.5609,29.6273 -81.5532,29.626 -81.5451,29.6246 -81.5371,29.6232 -81.529,29.6219 -81.521,29.6212 -81.5127,29.6214 -81.5043,29.6215 -81.4965,29.62 -81.489,29.6167 -81.4816,29.6135 -81.4742,29.6102 -81.4669,29.607 -81.4594,29.6038 -81.452,29.6005 -81.4447,29.5974 -81.4376,29.5943 -81.4306,29.5912 -81.4236,29.5882 -81.4165,29.5851 -81.4094,29.582 -81.4031,29.5779 -81.3975,29.5727 -81.3918,29.5674 -81.3862,29.5622 -81.3806,29.557 -81.375,29.5517 -81.3694,29.5466 -81.3634,29.542 -81.3567,29.538 -81.3501,29.5339 -81.344,29.5292 -81.3382,29.5237 -81.3326,29.5184 -81.3269,29.513 -81.3214,29.5077 -81.3214,29.5017 -81.3213,29.4957 -81.3183,29.4903 -81.3121,29.4856 -81.306,29.4809 -81.2999,29.4763 -81.2937,29.4716 -81.2871,29.4677 -81.287,29.4611 -81.2869,29.4545 -81.2868,29.4479 -81.2866,29.4414 -81.2853,29.4345 -81.2829,29.4276 -81.2803,29.4206 -81.2778,29.4134 -81.2753,29.4065 -81.2728,29.3996 -81.2703,29.3926 -81.2678,29.3858 -81.2655,29.3788 -81.2631,29.3718 -81.2638,29.3657 -81.2676,29.359 -81.2692,29.3525 -81.2689,29.3452 -81.2687,29.338 -81.2686,29.3307 -81.2686,29.3235 -81.2685,29.3164 -81.2652,29.3094 -81.2621,29.3027 -81.2664,29.2987 -81.269,29.2926 -81.2689,29.2851 -81.2687,29.2776 -81.2685,29.2701 -81.2684,29.2627 -81.2682,29.2555 -81.2681,29.2481 -81.2666,29.2416 -81.2637,29.2352 -81.2606,29.2284 -81.2577,29.2219 -81.2547,29.2153 -81.2518,29.2088 -81.2489,29.2023 -81.2475,29.1958 -81.2461,29.1891 -81.2447,29.1826 -81.2405,29.1768 -81.2363,29.1708 -81.232,29.1648 -81.2276,29.1589 -81.2233,29.1532 -81.2212,29.1465 -81.2192,29.1398 -81.2174,29.133 -81.2156,29.1263 -81.2117,29.1201 -81.2078,29.1139 -81.204,29.1077 -81.2004,29.102 -81.1972,29.0959 -81.194,29.0897 -81.1908,29.0837 -81.1876,29.0775 -81.1843,29.0713 -81.1808,29.065 -81.1771,29.0585 -81.1753,29.052 -81.1751,29.0446 -81.17,29.0388 -81.165,29.0332 -81.1649,29.0267 -81.1648,29.0196 -81.1646,29.0125 -81.161,29.0114 -81.1574,29.0072 -81.1572,29.0008 -81.157,28.9942 -81.1568,28.9876 -81.1553,28.9814 -81.1526,28.9746 -81.15,28.9681 -81.1474,28.9617 -81.1449,28.9554 -81.145,28.9483 -81.145,28.9413 -81.1451,28.9343 -81.142,28.9276 -81.1389,28.9209 -81.136,28.9143 -81.131,28.9085 -81.1261,28.9029 -81.126,28.8959 -81.1258,28.8887 -81.1256,28.8814 -81.1227,28.8754 -81.1169,28.8701 -81.1114,28.8651 -81.1114,28.8581 -81.1113,28.8509 -81.1107,28.8437 -81.1107,28.8366 -81.1106,28.8294 -81.1106,28.8218 -81.1106,28.8147 -81.1106,28.8078 -81.1107,28.801 -81.1084,28.7942 -81.1061,28.7873 -81.1041,28.7805 -81.1021,28.7733 -81.1012,28.7666 -81.1011,28.7595 -81.0963,28.7595 -81.0945,28.7533 -81.0945,28.7475 -81.0919,28.7407 -81.0893,28.7337 -81.088,28.7269 -81.0879,28.7198 -81.0878,28.713 -81.0878,28.7056 -81.0877,28.6983 -81.0876,28.6912 -81.0875,28.6842 -81.0852,28.6773 -81.0828,28.6704 -81.0783,28.6651 -81.0715,28.6612 -81.0649,28.6574 -81.0648,28.6503 -81.0647,28.6433 -81.0644,28.636 -81.064,28.6297 -81.0639,28.623 -81.0638,28.6161 -81.0636,28.6093 -81.0658,28.6034 -81.0685,28.597 -81.0692,28.5898 -81.0698,28.5826 -81.0686,28.5759 -81.0655,28.5692 -81.0625,28.5628 -81.0595,28.5563 -81.058,28.5498 -81.0579,28.5425 -81.0578,28.5353 -81.0577,28.5282 -81.0576,28.5212 -81.0575,28.5142 -81.0574,28.5072 -81.0574,28.5034 -81.0574,28.5009 -81.0573,28.4936 -81.0572,28.4868 -81.0543,28.4815 -81.0478,28.4772 -81.0413,28.4727 -81.0348,28.4684 -81.0282,28.464 -81.0217,28.4596 -81.0145,28.4547 -81.0086,28.4507 -81.002,28.4463 -80.9954,28.4418 -80.9888,28.4374 -80.9822,28.433 -80.9758,28.4287 -80.97,28.4247 -80.9639,28.4207 -80.9574,28.4163 -80.9514,28.4122 -80.945,28.4079 -80.9384,28.4035 -80.9319,28.3991 -80.9255,28.3947 -80.9189,28.3903 -80.9158,28.3879 -80.9163,28.3849</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 262.77km --- OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-80.9155,28.384 -80.9158,28.3865 -80.9155,28.3885 -80.922,28.3928 -80.9285,28.3972 -80.9349,28.4016 -80.9415,28.406 -80.948,28.4104 -80.954,28.4144 -80.9604,28.4187 -80.9669,28.4231 -80.9725,28.4269 -80.9787,28.431 -80.9852,28.4354 -80.9918,28.4399 -80.9985,28.4444 -81.0051,28.4488 -81.0115,28.4532 -81.0179,28.4575 -81.0247,28.462 -81.0312,28.4665 -81.0377,28.4708 -81.0443,28.4753 -81.0508,28.4797 -81.0567,28.4838 -81.0568,28.4902 -81.0569,28.497 -81.057,28.503 -81.057,28.5035 -81.0571,28.5107 -81.0572,28.5177 -81.0573,28.5247 -81.0574,28.5318 -81.0575,28.539 -81.0576,28.5462 -81.0577,28.5533 -81.0606,28.5597 -81.0636,28.5661 -81.0666,28.5727 -81.0696,28.5792 -81.069,28.5862 -81.0684,28.5934 -81.0678,28.6004 -81.0631,28.606 -81.0634,28.6127 -81.0635,28.6195 -81.0636,28.6262 -81.0637,28.6325 -81.0643,28.6396 -81.0644,28.6469 -81.0645,28.654 -81.0678,28.6595 -81.0746,28.6634 -81.0812,28.6672 -81.0836,28.6742 -81.086,28.681 -81.0872,28.6876 -81.0872,28.6947 -81.0872,28.702 -81.0872,28.7092 -81.0873,28.7162 -81.0875,28.7233 -81.0876,28.7305 -81.0902,28.7373 -81.0929,28.7443 -81.0941,28.7505 -81.095,28.7566 -81.0985,28.7599 -81.1008,28.7631 -81.1009,28.7701 -81.1027,28.777 -81.1047,28.784 -81.1069,28.7909 -81.1091,28.7977 -81.1103,28.8044 -81.1103,28.8112 -81.1103,28.8183 -81.1102,28.8254 -81.1103,28.833 -81.1103,28.8402 -81.1106,28.847 -81.1109,28.8545 -81.111,28.8617 -81.1137,28.8678 -81.1195,28.873 -81.125,28.8781 -81.1252,28.8851 -81.1254,28.8923 -81.1256,28.8996 -81.1281,28.9059 -81.1332,28.9116 -81.137,28.9177 -81.1401,28.9244 -81.1431,28.9311 -81.1446,28.9378 -81.1446,28.9448 -81.1445,28.9518 -81.1458,28.9587 -81.1483,28.965 -81.1509,28.9714 -81.1536,28.9781 -81.1563,28.9848 -81.1564,28.9909 -81.1567,28.9976 -81.1569,29.004 -81.1571,29.0106 -81.1635,29.0125 -81.1643,29.0161 -81.1644,29.0231 -81.1646,29.0299 -81.1671,29.0362 -81.1723,29.042 -81.1748,29.0482 -81.1749,29.0556 -81.1786,29.0619 -81.1824,29.0684 -81.1856,29.0745 -81.1888,29.0806 -81.192,29.0868 -81.1952,29.093 -81.1984,29.0991 -81.2017,29.1048 -81.2055,29.111 -81.2094,29.1171 -81.2134,29.1234 -81.2161,29.1297 -81.2179,29.1365 -81.2198,29.1433 -81.2219,29.15 -81.225,29.1562 -81.2294,29.162 -81.2338,29.1681 -81.238,29.174 -81.2422,29.1798 -81.2449,29.1859 -81.2463,29.1925 -81.2477,29.1991 -81.2498,29.2056 -81.2528,29.2122 -81.2557,29.2187 -81.2587,29.2253 -81.2617,29.2319 -81.2646,29.2384 -81.2676,29.2449 -81.2677,29.2518 -81.2679,29.2591 -81.268,29.2664 -81.2682,29.2738 -81.2683,29.2814 -81.2685,29.2889 -81.2686,29.2959 -81.2635,29.3008 -81.2631,29.3059 -81.2665,29.3132 -81.268,29.3199 -81.2681,29.3271 -81.2682,29.3343 -81.2683,29.3416 -81.2686,29.3488 -81.2688,29.3559 -81.2653,29.3622 -81.2616,29.3687 -81.2639,29.3754 -81.2662,29.3824 -81.2688,29.3892 -81.2713,29.3961 -81.2737,29.4031 -81.2762,29.4101 -81.2787,29.4171 -81.2812,29.4242 -81.2837,29.4312 -81.2862,29.4381 -81.2863,29.4446 -81.2864,29.4512 -81.2865,29.4578 -81.2866,29.4645 -81.2904,29.4696 -81.2965,29.4742 -81.3027,29.4789 -81.3087,29.4835 -81.3149,29.4882 -81.3208,29.4927 -81.3209,29.4987 -81.321,29.5048 -81.3238,29.5106 -81.3294,29.5159 -81.335,29.5212 -81.3407,29.5267 -81.3465,29.5322 -81.3532,29.5362 -81.3598,29.5403 -81.3665,29.5443 -81.3719,29.5494 -81.3775,29.5546 -81.3832,29.5599 -81.3888,29.5651 -81.3944,29.5703 -81.4,29.5755 -81.4056,29.5807 -81.4129,29.5839 -81.4199,29.587 -81.4269,29.59 -81.434,29.5931 -81.441,29.5962 -81.4482,29.5993 -81.4555,29.6025 -81.4629,29.6057 -81.4704,29.609 -81.4778,29.6122 -81.4851,29.6154 -81.4926,29.6187 -81.5001,29.6219 -81.5087,29.6218 -81.5169,29.6217 -81.525,29.6216 -81.533,29.6229 -81.541,29.6243 -81.5491,29.6257 -81.557,29.6271 -81.5645,29.6283 -81.5721,29.6296 -81.5782,29.6288 -81.5848,29.6256 -81.5908,29.6236 -81.604,29.6211 -81.6114,29.6215 -81.6189,29.6214 -81.6265,29.6213 -81.6338,29.6212 -81.6387,29.617 -81.6443,29.6123 -81.6499,29.6075 -81.6573,29.608 -81.6631,29.6082 -81.67,29.6083 -81.677,29.6057 -81.6843,29.6029 -81.6912,29.6004 -81.6993,29.5973 -81.7068,29.5972 -81.7145,29.5971 -81.7221,29.5968 -81.7297,29.5966 -81.7378,29.5963 -81.7443,29.5961 -81.7521,29.5961 -81.7596,29.596 -81.7655,29.596 -81.7691,29.6019 -81.772,29.6068 -81.7742,29.6105 -81.7783,29.6173 -81.7823,29.6241 -81.7867,29.629 -81.7919,29.6346 -81.7941,29.6403 -81.7942,29.6469 -81.7942,29.6538 -81.7943,29.6609 -81.7943,29.6678 -81.7944,29.6755 -81.7928,29.6806 -81.7891,29.6856 -81.7849,29.6911 -81.7805,29.6971 -81.7762,29.7028 -81.7719,29.7086 -81.7676,29.7143 -81.7655,29.7203 -81.7655,29.7225</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 193.28km --- Imagery, OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-80.9155,28.384 -80.9164,28.381 -80.9165,28.3739 -80.9188,28.3679 -80.9233,28.3624 -80.9273,28.3576 -80.9267,28.352 -80.9212,28.3463 -80.9184,28.3399 -80.9182,28.3326 -80.9168,28.3261 -80.9162,28.3236 -80.9171,28.3178 -80.9175,28.3108 -80.9173,28.3035 -80.9171,28.2963 -80.9168,28.2891 -80.9166,28.2818 -80.9164,28.2745 -80.9162,28.2673 -80.916,28.26 -80.9157,28.2527 -80.9155,28.2457 -80.9153,28.2382 -80.9151,28.231 -80.9148,28.2237 -80.9122,28.2177 -80.9056,28.2092 -80.8985,28.2058 -80.895,28.2008 -80.8946,28.1939 -80.8942,28.187 -80.8921,28.1806 -80.8881,28.1742 -80.8841,28.1678 -80.8802,28.1616 -80.8783,28.1552 -80.8783,28.1479 -80.8784,28.1413 -80.8784,28.1339 -80.8785,28.1268 -80.8785,28.1197 -80.8786,28.1126 -80.8786,28.1056 -80.8787,28.0985 -80.8787,28.0904 -80.8788,28.0847 -80.8836,28.079 -80.8884,28.0734 -80.8921,28.0678 -80.8945,28.0627 -80.8976,28.0563 -80.8964,28.0492 -80.8951,28.0421 -80.8939,28.0352 -80.8926,28.0282 -80.8914,28.0212 -80.8901,28.0142 -80.8889,28.0072 -80.8876,28.0003 -80.8864,27.9933 -80.8852,27.9865 -80.8846,27.9792 -80.8846,27.9721 -80.8847,27.9649 -80.8847,27.9578 -80.8849,27.9507 -80.8849,27.9435 -80.8852,27.88 -80.8852,27.8729 -80.8852,27.8657 -80.8852,27.8585 -80.8852,27.8513 -80.8852,27.8443 -80.8852,27.8376 -80.8852,27.8308 -80.8852,27.8241 -80.884,27.8172 -80.8816,27.8105 -80.8793,27.8038 -80.8768,27.7969 -80.8744,27.79 -80.8721,27.7834 -80.8698,27.7768 -80.8674,27.7701 -80.8651,27.7634 -80.8627,27.7567 -80.8602,27.7497 -80.8577,27.7426 -80.8556,27.7366 -80.8534,27.7302 -80.8509,27.7233 -80.8485,27.7163 -80.8461,27.7095 -80.8438,27.703 -80.8415,27.6964 -80.8392,27.6898 -80.8367,27.6829 -80.8344,27.6761 -80.8319,27.6692 -80.8272,27.6638 -80.8204,27.6599 -80.8133,27.6559 -80.8063,27.6519 -80.7993,27.648 -80.7921,27.6439 -80.7842,27.644 -80.7767,27.6441 -80.7771,27.6378 -80.7773,27.6314 -80.7772,27.6243 -80.7771,27.6171 -80.777,27.6102 -80.777,27.6032 -80.7769,27.596 -80.7768,27.5893 -80.7767,27.5817 -80.7766,27.5747 -80.7766,27.568 -80.7733,27.5622 -80.7654,27.5608 -80.7573,27.5605 -80.7492,27.5606 -80.7413,27.5606 -80.7335,27.5606 -80.7259,27.5606 -80.7177,27.5606 -80.7099,27.5606 -80.7023,27.5606 -80.6949,27.5606 -80.6865,27.5606 -80.6784,27.5606 -80.6705,27.5606 -80.6618,27.5606 -80.6493,27.5576 -80.6424,27.555 -80.6363,27.5506 -80.63,27.5462 -80.6238,27.5417 -80.6176,27.5373 -80.6113,27.5328 -80.6058,27.5278 -80.6011,27.5221 -80.5962,27.5163 -80.5913,27.5106 -80.5863,27.5048 -80.5816,27.4991 -80.5767,27.4933 -80.572,27.4876 -80.5651,27.4836 -80.5566,27.4835 -80.5483,27.4834 -80.5451,27.4807 -80.5449,27.4736 -80.5453,27.4663 -80.5456,27.459 -80.5456,27.4522 -80.5456,27.4448 -80.5456,27.4371 -80.5456,27.4299 -80.5456,27.4224 -80.5456,27.4116 -80.5456,27.4043 -80.5456,27.3966 -80.5456,27.3893 -80.5456,27.382 -80.5456,27.3752 -80.5456,27.3682 -80.5456,27.3604 -80.5456,27.3529 -80.5456,27.3451 -80.5413,27.339 -80.5341,27.3391 -80.5307,27.3257 -80.5306,27.2737 -80.5296,27.2498 -80.5297,27.2092 -80.5305,27.1818 -80.5304,27.1477 -80.5307,27.1339 -80.5305,27.1004 -80.5328,27.0906 -80.5331,27.0592 -80.5406,27.0591 -80.5488,27.059 -80.5567,27.0589 -80.5605,27.057</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 163.03km --- Imagery, OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-80.4161,27.372 -80.4173,27.3731 -80.4192,27.3783 -80.4241,27.3814 -80.4322,27.3814 -80.4404,27.3814 -80.4486,27.3814 -80.4574,27.3814 -80.4655,27.3814 -80.4731,27.3823 -80.4807,27.3823 -80.4892,27.3824 -80.4978,27.3825 -80.5054,27.3825 -80.5135,27.3826 -80.5217,27.3826 -80.5298,27.3827 -80.5383,27.3828 -80.5452,27.3828 -80.5452,27.3894 -80.5452,27.3966 -80.5452,27.4043 -80.5452,27.4116 -80.5452,27.4186 -80.5451,27.426 -80.5451,27.4332 -80.5451,27.4409 -80.5451,27.4484 -80.5451,27.4555 -80.5451,27.4625 -80.5446,27.47 -80.5445,27.4771 -80.5447,27.4837 -80.5524,27.4838 -80.5609,27.4839 -80.5682,27.4859 -80.5739,27.4906 -80.5789,27.4965 -80.5836,27.5021 -80.5884,27.508 -80.5934,27.5137 -80.5983,27.5195 -80.6031,27.5252 -80.6079,27.5309 -80.6142,27.5354 -80.6204,27.5398 -80.6266,27.5442 -80.6328,27.5487 -80.6391,27.5532 -80.6458,27.5567 -80.6529,27.5581 -80.6616,27.5611 -80.6702,27.561 -80.6784,27.561 -80.6866,27.561 -80.6949,27.561 -80.7023,27.561 -80.7138,27.561 -80.7218,27.561 -80.7297,27.561 -80.7375,27.561 -80.7451,27.561 -80.7533,27.561 -80.7614,27.561 -80.7693,27.5614 -80.7761,27.5647 -80.7762,27.5713 -80.7762,27.5781 -80.7763,27.5859 -80.7764,27.5927 -80.7765,27.5997 -80.7766,27.6067 -80.7767,27.6138 -80.7767,27.6207 -80.7768,27.6281 -80.7769,27.6345 -80.7765,27.6411 -80.7803,27.6445 -80.7884,27.6444 -80.7955,27.6463 -80.8025,27.6503 -80.8096,27.6543 -80.8166,27.6583 -80.8235,27.6621 -80.8303,27.666 -80.8327,27.6728 -80.8352,27.6797 -80.8375,27.6865 -80.8399,27.6933 -80.8422,27.6998 -80.8445,27.7063 -80.8468,27.7129 -80.8493,27.7199 -80.8518,27.7269 -80.8542,27.7338 -80.8563,27.7397 -80.8586,27.7462 -80.8611,27.7533 -80.8635,27.7603 -80.8658,27.7669 -80.8682,27.7735 -80.8705,27.7802 -80.8729,27.7869 -80.8752,27.7935 -80.8777,27.8006 -80.8801,27.8073 -80.8824,27.8139 -80.8848,27.8207 -80.8848,27.8274 -80.8848,27.8342 -80.8848,27.8409 -80.8848,27.8477 -80.8848,27.8549 -80.8848,27.8621 -80.8848,27.8693 -80.8848,27.8763 -80.8847,27.8836 -80.8848,27.8908 -80.8848,27.8981 -80.8848,27.905 -80.8847,27.9116 -80.8847,27.9182 -80.8847,27.9252 -80.8846,27.9325 -80.8845,27.9398 -80.8845,27.9471 -80.8844,27.9542 -80.8844,27.9613 -80.8844,27.9684 -80.8842,27.9756 -80.8841,27.9828 -80.8854,27.99 -80.8866,27.9968 -80.8878,28.0038 -80.8891,28.0108 -80.8903,28.0178 -80.8915,28.0247 -80.8928,28.0318 -80.8941,28.0388 -80.8953,28.0458 -80.8966,28.0528 -80.8955,28.0597 -80.8929,28.0651 -80.8904,28.0704 -80.8856,28.076 -80.8809,28.0816 -80.8784,28.0878 -80.8783,28.095 -80.8782,28.1056 -80.8782,28.1126 -80.8781,28.1196 -80.8781,28.1267 -80.878,28.1339 -80.878,28.1412 -80.8779,28.1479 -80.8778,28.1552 -80.8798,28.1618 -80.8837,28.168 -80.8877,28.1744 -80.8917,28.1807 -80.8937,28.187 -80.8941,28.1939 -80.8945,28.2009 -80.8983,28.2061 -80.9053,28.2095 -80.9118,28.2178 -80.9144,28.2238 -80.9146,28.231 -80.9148,28.2382 -80.9152,28.2491 -80.9154,28.2564 -80.9156,28.2637 -80.9159,28.2709 -80.9161,28.2782 -80.9163,28.2854 -80.9165,28.2927 -80.9168,28.2999 -80.917,28.3072 -80.9172,28.3144 -80.9162,28.3207 -80.9162,28.3258 -80.917,28.3294 -80.9179,28.3363 -80.9181,28.3436 -80.9236,28.3494 -80.929,28.355 -80.925,28.3598 -80.9206,28.3651 -80.9163,28.3703 -80.9161,28.3774 -80.9161,28.3832</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 139.7km --- Imagery, OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-81.7688,26.6729 -81.7677,26.6588 -81.7387,26.5735 -81.7089,26.5389 -81.5542,26.5028 -81.3737,26.4606 -81.1806,26.4159 -80.9999,26.3738 -80.9079,26.3523 -80.7739,26.3332 -80.714,26.3334 -80.5424,26.3343 -80.5378,26.3284 -80.5332,26.3224 -80.5287,26.3165 -80.5241,26.3105 -80.5204,26.3045 -80.5163,26.2991 -80.5111,26.2949 -80.5068,26.2893 -80.5023,26.2835 -80.4978,26.2777 -80.4933,26.2719 -80.4888,26.266 -80.4843,26.2602 -80.4798,26.2544 -80.4753,26.2486 -80.4708,26.2428 -80.4666,26.2369 -80.4641,26.231 -80.4625,26.2239 -80.461,26.2168 -80.4594,26.2097 -80.4578,26.2027 -80.4564,26.1955 -80.4549,26.1884 -80.4534,26.1813 -80.4518,26.1742 -80.4502,26.167 -80.4487,26.1599 -80.4476,26.1532 -80.4502,26.1471 -80.4487,26.1406 -80.4475,26.1349 -80.4461,26.1285 -80.4447,26.1221 -80.4433,26.1156 -80.4426,26.1089 -80.4426,26.1021 -80.4424,26.0951 -80.4422,26.0881 -80.4421,26.0811 -80.4421,26.0739 -80.442,26.0671 -80.4418,26.0606 -80.4418,26.0537 -80.4418,26.0465 -80.4417,26.0396 -80.4398,26.0355</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 167.6km --- Imagery, OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-80.5605,27.057 -80.5567,27.0575 -80.5487,27.0573 -80.5407,27.0573 -80.5341,27.0564 -80.5337,27.0505 -80.5334,27.0432 -80.5334,27.0362 -80.5396,27.0343 -80.5481,27.0341 -80.5482,27.0273 -80.5484,27.0203 -80.5556,27.0163 -80.5803,27.0035 -80.5853,26.9963 -80.5811,26.9916 -80.5807,26.9217 -80.5806,26.856 -80.5805,26.8489 -80.5805,26.8419 -80.5805,26.8349 -80.5806,26.8273 -80.5748,26.8227 -80.5679,26.8176 -80.5612,26.8123 -80.5548,26.8075 -80.5485,26.8027 -80.5422,26.7982 -80.5362,26.7937 -80.5303,26.7896 -80.5232,26.7848 -80.5168,26.7791 -80.5095,26.7736 -80.5023,26.7682 -80.4952,26.7628 -80.4882,26.7576 -80.479,26.7506 -80.4718,26.7452 -80.4647,26.7398 -80.4577,26.7345 -80.4508,26.7294 -80.4443,26.7244 -80.4379,26.7196 -80.4323,26.7154 -80.4258,26.7105 -80.4168,26.7105 -80.4069,26.7104 -80.3984,26.7104 -80.3939,26.7143 -80.3866,26.7141 -80.3794,26.714 -80.3767,26.7096</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>FLORIDA POWER & LIGHT CO</name><description>500kV --- AC --- 54.12km --- Imagery, OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-80.5605,27.057 -80.5567,27.0578 -80.5488,27.0577 -80.5407,27.0578 -80.5336,27.0568 -80.5331,27.0506 -80.5329,27.0432 -80.5329,27.036 -80.5334,27.0325 -80.5336,27.0251 -80.5337,27.0179 -80.5337,27.0116 -80.5337,27.0045 -80.5337,26.9974 -80.5337,26.9904 -80.5337,26.9834 -80.5337,26.9763 -80.5336,26.9693 -80.5336,26.9622 -80.5337,26.9565 -80.5256,26.9566 -80.5175,26.9566 -80.5095,26.9566 -80.5014,26.9566 -80.4933,26.9567 -80.4853,26.9567 -80.4826,26.9543 -80.4826,26.9471 -80.4829,26.9399 -80.4834,26.9329 -80.4836,26.9258 -80.4836,26.9186 -80.4836,26.9115 -80.4836,26.9044 -80.4836,26.8973 -80.4836,26.8902 -80.4836,26.883 -80.4836,26.8759 -80.4835,26.8688 -80.4835,26.8617 -80.4808,26.8556 -80.4751,26.8505 -80.4695,26.8456 -80.4638,26.8406 -80.4579,26.8357 -80.4523,26.8311 -80.4465,26.8262 -80.4408,26.8212 -80.4357,26.8169 -80.4299,26.8119 -80.4241,26.8068 -80.4184,26.8018 -80.4127,26.7966 -80.4072,26.7914 -80.4017,26.7862 -80.3965,26.7811 -80.3913,26.7754 -80.3864,26.7696 -80.3814,26.7638 -80.3768,26.7585 -80.3771,26.7524 -80.3774,26.7454 -80.3777,26.7385 -80.3779,26.7315 -80.378,26.7245 -80.3783,26.7175 -80.3779,26.7109</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>FLORIDA POWER & LIGHT CO</name><description>500kV --- AC --- 47.37km --- Imagery, OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-80.3767,26.7096 -80.3779,26.7141 -80.3775,26.7211 -80.3774,26.7281 -80.3773,26.735 -80.3771,26.7419 -80.3767,26.7489 -80.3764,26.7554 -80.3786,26.7613 -80.3834,26.7669 -80.3885,26.7728 -80.3935,26.7785 -80.3986,26.7838 -80.4041,26.7891 -80.4095,26.7944 -80.4151,26.7996 -80.4209,26.8047 -80.4266,26.8097 -80.4324,26.8148 -80.438,26.8195 -80.4433,26.8241 -80.4491,26.8289 -80.4549,26.8339 -80.4605,26.8385 -80.4664,26.8434 -80.4719,26.8484 -80.4776,26.8534 -80.483,26.8583 -80.483,26.8653 -80.483,26.8723 -80.483,26.8795 -80.483,26.8866 -80.483,26.8937 -80.4831,26.9008 -80.4831,26.9079 -80.4831,26.9151 -80.4831,26.9222 -80.4831,26.9293 -80.4826,26.9364 -80.4821,26.9435 -80.4821,26.9507 -80.482,26.957 -80.4893,26.957 -80.4974,26.957 -80.5054,26.957 -80.5134,26.957 -80.5215,26.957 -80.5296,26.957 -80.5331,26.9588 -80.5331,26.9658 -80.5331,26.9728 -80.5332,26.9799 -80.5332,26.9869 -80.5332,26.9939 -80.5332,27.001 -80.5332,27.008 -80.5332,27.0151 -80.5331,27.0215 -80.533,27.0287 -80.5325,27.0321 -80.5324,27.0396 -80.5324,27.0469 -80.533,27.0542 -80.5356,27.0582 -80.5407,27.0586 -80.5488,27.0586 -80.5567,27.0585 -80.5605,27.057</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>FLORIDA POWER & LIGHT CO</name><description>500kV --- AC --- 47.48km --- Imagery, OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-80.4161,27.372 -80.4177,27.3731 -80.4186,27.3733 -80.4186,27.3668 -80.4277,27.3667 -80.4358,27.3666 -80.4444,27.3665 -80.4527,27.3666 -80.4609,27.3668 -80.4696,27.3669 -80.4736,27.3634 -80.4736,27.3565 -80.4735,27.3491 -80.4735,27.3416 -80.4728,27.3332 -80.471,27.3253 -80.4722,27.3182 -80.4733,27.3114 -80.4744,27.3049 -80.4755,27.2982 -80.4808,27.2934 -80.4861,27.2887 -80.4913,27.284 -80.4966,27.2793 -80.5019,27.2746 -80.5073,27.2698 -80.5126,27.265 -80.518,27.2602 -80.5234,27.2554 -80.5288,27.2471 -80.5288,27.2403 -80.5288,27.2334 -80.5289,27.2265 -80.5289,27.2195 -80.529,27.2127 -80.529,27.2058 -80.529,27.1989 -80.5291,27.1921 -80.5294,27.1852 -80.5297,27.1783 -80.5297,27.1716 -80.5297,27.1648 -80.5297,27.1579 -80.5297,27.151 -80.5297,27.1442 -80.5297,27.1372 -80.5297,27.1305 -80.5297,27.1235 -80.5297,27.1167 -80.5297,27.1099 -80.5297,27.1035 -80.532,27.0972 -80.5321,27.0906 -80.5321,27.0844 -80.5321,27.0777 -80.5322,27.0713 -80.5322,27.0648 -80.5323,27.0582 -80.5365,27.0582 -80.5447,27.0582 -80.5528,27.0581 -80.5604,27.0582</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 42.84km --- OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-80.3767,26.7096 -80.3785,26.7065 -80.3786,26.7 -80.3787,26.693 -80.3788,26.6868 -80.3809,26.6806 -80.3842,26.6756 -80.3885,26.6696 -80.3931,26.6637 -80.3976,26.6577 -80.4023,26.6517 -80.4069,26.6458 -80.4115,26.6398 -80.4161,26.6338 -80.4207,26.6278 -80.4252,26.622 -80.4298,26.616 -80.4344,26.6101 -80.439,26.6041 -80.4435,26.5982 -80.448,26.5924 -80.448,26.5864 -80.4481,26.5792 -80.4481,26.5719 -80.4481,26.5647 -80.4482,26.5574 -80.4482,26.5501 -80.4482,26.5432 -80.4483,26.5364 -80.4483,26.53 -80.4483,26.5227 -80.4484,26.5164 -80.4542,26.5164 -80.4611,26.5163 -80.4645,26.5131 -80.4646,26.5067 -80.4648,26.5003 -80.4648,26.4951 -80.4625,26.4898 -80.4578,26.4838 -80.4534,26.4782 -80.4491,26.4727 -80.4526,26.467 -80.4567,26.4608 -80.4608,26.4546 -80.4644,26.4492 -80.4685,26.443 -80.4725,26.437 -80.4765,26.4309 -80.4806,26.4247 -80.4847,26.4186 -80.4887,26.4124 -80.4928,26.4063 -80.4969,26.4001 -80.501,26.3939 -80.505,26.3878 -80.5091,26.3816 -80.513,26.3758 -80.5171,26.3696 -80.5212,26.3634 -80.5253,26.3572 -80.5294,26.3509 -80.5333,26.3451 -80.538,26.3395 -80.5404,26.3372 -80.5394,26.3318 -80.5349,26.3258 -80.5303,26.3199 -80.5257,26.3139 -80.5212,26.3081 -80.5181,26.3015 -80.5132,26.2976 -80.5083,26.2926 -80.5039,26.2869 -80.4993,26.281 -80.4949,26.2752 -80.4904,26.2694 -80.4858,26.2636 -80.4813,26.2577 -80.4768,26.2519 -80.4723,26.2461 -80.4678,26.2403 -80.464,26.2343 -80.4625,26.2276 -80.4609,26.2205 -80.4594,26.2134 -80.4578,26.2064 -80.4563,26.1993 -80.4548,26.1921 -80.4533,26.185 -80.4518,26.1778 -80.4502,26.1707 -80.4486,26.1636 -80.4471,26.1565 -80.4481,26.1497 -80.4489,26.1449 -80.4474,26.1383 -80.446,26.1319 -80.4446,26.1254 -80.4432,26.119 -80.4418,26.1125 -80.4418,26.1054 -80.4416,26.0987 -80.4414,26.0915 -80.4413,26.0847 -80.4413,26.0776 -80.4412,26.0706 -80.4411,26.0636 -80.441,26.0572 -80.441,26.0502 -80.4409,26.0438 -80.4408,26.0391 -80.4398,26.0355</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>FLORIDA POWER & LIGHT CO</name><description>500kV --- AC --- 77.9km --- OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-80.4398,26.0355 -80.4404,26.0391 -80.4406,26.046 -80.4405,26.0502 -80.4405,26.0571 -80.4406,26.0636 -80.4408,26.0706 -80.4409,26.0776 -80.4409,26.0847 -80.441,26.0916 -80.4412,26.0988 -80.4413,26.1054 -80.4413,26.1125 -80.4428,26.1191 -80.4442,26.1255 -80.4456,26.1319 -80.447,26.1387 -80.4484,26.1449 -80.4477,26.1496 -80.4467,26.1566 -80.4482,26.1637 -80.4498,26.1708 -80.4514,26.1779 -80.4529,26.1851 -80.4544,26.1922 -80.4559,26.1993 -80.4574,26.2065 -80.459,26.2135 -80.4605,26.2206 -80.4621,26.2277 -80.4636,26.2344 -80.4675,26.2405 -80.472,26.2463 -80.4765,26.2521 -80.481,26.258 -80.4855,26.2638 -80.49,26.2696 -80.4945,26.2755 -80.499,26.2812 -80.5035,26.2871 -80.508,26.2929 -80.5129,26.2979 -80.5177,26.3018 -80.5208,26.3083 -80.5253,26.3141 -80.5299,26.3201 -80.5345,26.3261 -80.5391,26.332 -80.5401,26.337 -80.5377,26.3392 -80.5328,26.3449 -80.529,26.3507 -80.5249,26.3569 -80.5208,26.3632 -80.5167,26.3693 -80.5126,26.3756 -80.5087,26.3814 -80.5046,26.3876 -80.5005,26.3937 -80.4964,26.3999 -80.4924,26.4061 -80.4883,26.4122 -80.4842,26.4184 -80.4802,26.4245 -80.4761,26.4307 -80.472,26.4368 -80.468,26.4428 -80.4639,26.449 -80.4604,26.4544 -80.4562,26.4606 -80.4522,26.4668 -80.4485,26.4727 -80.453,26.4785 -80.4574,26.4841 -80.4621,26.4901 -80.4643,26.4972 -80.4642,26.5034 -80.4641,26.5099 -80.464,26.5159 -80.4577,26.5159 -80.4508,26.5159 -80.4478,26.519 -80.4478,26.5263 -80.4478,26.5329 -80.4478,26.5399 -80.4478,26.5467 -80.4477,26.5538 -80.4477,26.5611 -80.4477,26.5683 -80.4477,26.5755 -80.4477,26.5828 -80.4477,26.5893 -80.4456,26.595 -80.441,26.6009 -80.4364,26.6069 -80.4318,26.6128 -80.4271,26.6188 -80.4225,26.6248 -80.418,26.6306 -80.4134,26.6365 -80.4088,26.6426 -80.4042,26.6485 -80.3996,26.6545 -80.3949,26.6605 -80.3904,26.6664 -80.3858,26.6723 -80.3822,26.6778 -80.3784,26.6835 -80.3783,26.6895 -80.3782,26.6965 -80.378,26.7035 -80.3776,26.7088</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>FLORIDA POWER & LIGHT CO</name><description>500kV --- AC --- 77.86km --- OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-80.4161,27.372 -80.4172,27.3696 -80.4164,27.364 -80.4164,27.3573 -80.4173,27.3506 -80.4198,27.3479 -80.4249,27.3434 -80.4301,27.3388 -80.4354,27.334 -80.4408,27.3292 -80.4462,27.3244 -80.4597,27.3124 -80.465,27.3077 -80.4674,27.3015 -80.4671,27.2926 -80.4659,27.2851 -80.465,27.2779 -80.4651,27.2702 -80.4652,27.2628 -80.4653,27.2543 -80.4654,27.2461 -80.4654,27.2391 -80.4654,27.2316 -80.4654,27.2242 -80.4654,27.2174 -80.4654,27.2104 -80.4648,27.2054 -80.4648,27.1994 -80.4649,27.1921 -80.4649,27.1842 -80.4648,27.1766 -80.4649,27.1689 -80.4649,27.1617 -80.465,27.1545 -80.465,27.1474 -80.465,27.1403 -80.465,27.1331 -80.4651,27.126 -80.4651,27.1186 -80.4651,27.111 -80.4652,27.1037 -80.4653,27.0966 -80.4654,27.0893 -80.4655,27.0821 -80.4654,27.0754 -80.4751,27.0752 -80.4833,27.0752 -80.4912,27.0751 -80.4992,27.0751 -80.5069,27.0739 -80.5063,27.0664 -80.5063,27.0583 -80.5064,27.0512 -80.5065,27.0442 -80.511,27.0405 -80.5131,27.0364 -80.5157,27.0313 -80.5233,27.0313 -80.532,27.0312 -80.5325,27.0317 -80.5326,27.0252 -80.5328,27.0178 -80.5327,27.0115 -80.5327,27.0045 -80.5327,26.9975 -80.5327,26.9904 -80.5327,26.9834 -80.5327,26.9763 -80.5327,26.9693 -80.5327,26.9622 -80.5327,26.9574 -80.5255,26.9574 -80.5175,26.9574 -80.5094,26.9574 -80.5014,26.9575 -80.4934,26.9575 -80.4853,26.9575 -80.4816,26.9543 -80.4816,26.9472 -80.4819,26.9399 -80.4824,26.9328 -80.4826,26.9258 -80.4826,26.9186 -80.4826,26.9115 -80.4826,26.9044 -80.4826,26.8973 -80.4826,26.8902 -80.4826,26.883 -80.4826,26.8759 -80.4826,26.8688 -80.4826,26.8617 -80.4801,26.8562 -80.4744,26.8512 -80.4688,26.8461 -80.4631,26.8412 -80.4573,26.8364 -80.4517,26.8317 -80.4459,26.8268 -80.4401,26.8219 -80.435,26.8175 -80.4292,26.8125 -80.4234,26.8074 -80.4177,26.8024 -80.412,26.7973 -80.4065,26.792 -80.401,26.7867 -80.3959,26.7815 -80.3906,26.7759 -80.3856,26.7701 -80.3807,26.7644 -80.3758,26.7587 -80.3761,26.7524 -80.3765,26.7454 -80.3768,26.7385 -80.3769,26.7314 -80.377,26.7244 -80.3773,26.7175 -80.3773,26.7109</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 84.55km --- Imagery, OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-80.4398,26.0355 -80.4409,26.033 -80.441,26.0262 -80.4408,26.0194 -80.4407,26.0126 -80.4404,26.0057 -80.4402,25.9989 -80.44,25.9921 -80.4398,25.9853 -80.4396,25.9784 -80.4394,25.9716 -80.4392,25.9648 -80.439,25.958 -80.4387,25.9511 -80.4384,25.9441 -80.4352,25.9385 -80.4349,25.9319 -80.4346,25.9255 -80.4343,25.919 -80.434,25.9128 -80.4368,25.9093 -80.4365,25.9032 -80.4363,25.897 -80.436,25.8909 -80.4357,25.8848 -80.4354,25.8786 -80.4351,25.8725 -80.4349,25.8663 -80.4347,25.8602 -80.4345,25.854 -80.4343,25.8479 -80.4342,25.8417 -80.434,25.8356 -80.4338,25.8295 -80.4337,25.8233 -80.4335,25.8171 -80.4348,25.8145</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 22.83km --- Imagery, OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-80.4398,26.0355 -80.4404,26.0331 -80.4406,26.0262 -80.4404,26.0194 -80.4402,26.0126 -80.44,26.0058 -80.4398,25.9989 -80.4396,25.9921 -80.4394,25.9853 -80.4392,25.9785 -80.439,25.9716 -80.4388,25.9647 -80.4385,25.958 -80.4382,25.9512 -80.4379,25.9443 -80.4348,25.9385 -80.4345,25.9319 -80.4342,25.9255 -80.4339,25.919 -80.4336,25.9124 -80.4363,25.9093 -80.4361,25.9032 -80.4358,25.8971 -80.4356,25.8909 -80.4352,25.8848 -80.4348,25.8755 -80.4345,25.8694 -80.4343,25.8632 -80.4342,25.8571 -80.434,25.8509 -80.4338,25.8448 -80.4336,25.8386 -80.4335,25.8325 -80.4333,25.8264 -80.4331,25.8202 -80.4329,25.8141 -80.4355,25.8134</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 22.87km --- Imagery, OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-81.7649,29.7231 -81.7657,29.7246 -81.7733,29.7263 -81.7801,29.7304 -81.787,29.7346 -81.7935,29.7384 -81.8003,29.7425 -81.8071,29.7465 -81.8136,29.7504 -81.8201,29.7544 -81.8259,29.7579 -81.8259,29.7602 -81.8257,29.7668 -81.8257,29.7734 -81.8258,29.78 -81.8258,29.7868 -81.8258,29.794 -81.8258,29.8011 -81.8271,29.8082 -81.8296,29.8153 -81.8321,29.8225 -81.8345,29.8296 -81.837,29.8367 -81.8373,29.8434 -81.8377,29.8503 -81.8381,29.8571 -81.8385,29.8643 -81.8389,29.8712 -81.8402,29.8779 -81.8425,29.8845 -81.8449,29.8913 -81.8472,29.8977 -81.8474,29.9045 -81.8474,29.9117 -81.8474,29.9189 -81.8474,29.926 -81.8474,29.9328 -81.8475,29.9391 -81.8474,29.9464 -81.8474,29.9534 -81.8484,29.9596 -81.8518,29.9661 -81.8561,29.9719 -81.8599,29.9772 -81.8638,29.9824 -81.8679,29.988 -81.8727,29.9944 -81.8729,30.0013 -81.8731,30.009 -81.8733,30.0156 -81.8735,30.022 -81.8673,30.025 -81.8616,30.0278 -81.8555,30.0307 -81.8473,30.0305 -81.8389,30.0303 -81.8389,30.0368 -81.8389,30.0431 -81.839,30.0491 -81.839,30.0563 -81.8391,30.0631 -81.8392,30.0704 -81.8393,30.0771 -81.8396,30.0842 -81.8429,30.1225 -81.848,30.1283 -81.8528,30.1337 -81.8578,30.1396 -81.864,30.1443 -81.8694,30.1477 -81.8756,30.1503 -81.8817,30.1546 -81.8883,30.1591 -81.8947,30.1636 -81.9012,30.168 -81.9078,30.1724 -81.9138,30.1765 -81.92,30.1807 -81.9268,30.1853 -81.9332,30.1895 -81.94,30.194 -81.9467,30.1984 -81.9533,30.2028 -81.9599,30.2072 -81.9666,30.2116 -81.9696,30.2136 -81.9675,30.2202 -81.9652,30.2272 -81.963,30.2342 -81.9609,30.2409 -81.9587,30.2478 -81.9564,30.2548 -81.9543,30.2616 -81.954,30.2684 -81.9542,30.2712</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 69.59km --- OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-81.9554,28.817 -81.9546,28.8149 -81.9541,28.8098 -81.9551,28.8039 -81.9575,28.7973 -81.9586,28.7912 -81.9586,28.7851 -81.9586,28.7787 -81.9587,28.7726 -81.9587,28.7661 -81.9588,28.7592 -81.9565,28.7558 -81.9543,28.7527 -81.9543,28.7458 -81.9544,28.7387 -81.9544,28.7322 -81.9544,28.7256 -81.9545,28.7186 -81.9545,28.7124 -81.9546,28.7057 -81.9546,28.6999 -81.9547,28.6934 -81.9547,28.6872 -81.9547,28.6813 -81.9547,28.6745 -81.9547,28.668 -81.9547,28.6615 -81.9547,28.6544 -81.9547,28.6488 -81.9548,28.6427 -81.9548,28.6362 -81.9548,28.6306 -81.9549,28.6243 -81.9548,28.6185 -81.9547,28.6126 -81.9546,28.6069 -81.9546,28.6009 -81.9546,28.5949 -81.9546,28.5883 -81.9546,28.5812 -81.9546,28.5749 -81.9547,28.5688 -81.9547,28.5618 -81.9547,28.5548 -81.9547,28.5477 -81.9548,28.5409 -81.9549,28.5346 -81.9552,28.5284 -81.9555,28.5224 -81.9555,28.5162 -81.9555,28.5093 -81.9555,28.5024 -81.9556,28.4953 -81.9556,28.4884 -81.9556,28.4814 -81.9557,28.4745 -81.9557,28.4676 -81.9558,28.4605 -81.9559,28.4535 -81.9559,28.4466 -81.956,28.4397 -81.956,28.4333 -81.9631,28.4319 -81.9705,28.4304 -81.9774,28.429 -81.9847,28.4275 -81.9922,28.426 -82.0,28.4244 -82.0077,28.4229 -82.0154,28.4213 -82.0226,28.4199 -82.0225,28.4133 -82.0225,28.4061 -82.0224,28.3992 -82.0223,28.3923 -82.0224,28.386 -82.0226,28.3791 -82.0228,28.3726 -82.0228,28.3657 -82.0229,28.359 -82.0229,28.3519 -82.023,28.3452 -82.0231,28.3384 -82.0232,28.3313 -82.0233,28.3249 -82.0234,28.3179 -82.0235,28.3113 -82.0236,28.3047 -82.0236,28.2982 -82.0236,28.292 -82.0236,28.2852 -82.0235,28.2786 -82.0234,28.2718 -82.0234,28.2649 -82.0234,28.2578 -82.0234,28.2507 -82.0235,28.2439 -82.0235,28.2368 -82.0235,28.2296 -82.0248,28.2262 -82.0268,28.2267</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 65.42km --- Imagery, OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-81.9554,28.817 -81.9569,28.8162 -81.9609,28.8194 -81.9677,28.82 -81.9752,28.818 -81.9832,28.8159 -81.9913,28.8138 -81.9978,28.813 -82.0065,28.8132 -82.0149,28.8134 -82.0235,28.8136 -82.0319,28.8138 -82.0377,28.819 -82.0433,28.8241 -82.0489,28.8292 -82.0546,28.8342 -82.0602,28.8393 -82.0663,28.8447 -82.0717,28.8496 -82.0775,28.8548 -82.0834,28.8602 -82.0834,28.8674 -82.0834,28.8743 -82.0834,28.8802 -82.0911,28.8802 -82.0993,28.8801 -82.1064,28.8829 -82.1118,28.8883 -82.117,28.8935 -82.1222,28.8987 -82.1281,28.9042 -82.1339,28.9097 -82.1398,28.9153 -82.1455,28.9207 -82.151,28.9258 -82.1569,28.9315 -82.1627,28.9369 -82.1685,28.9424 -82.1739,28.9476 -82.1796,28.9529 -82.1855,28.9585 -82.1912,28.9638 -82.197,28.9693 -82.2059,28.9777 -82.2116,28.9833 -82.2175,28.989 -82.2229,28.9941 -82.2288,28.9993 -82.2346,29.0046 -82.2429,29.0047 -82.2516,29.0047 -82.2602,29.0047 -82.2645,29.0046 -82.2727,29.0046 -82.2814,29.0045 -82.2901,29.0044 -82.2985,29.0044 -82.3069,29.0044 -82.3154,29.0044 -82.324,29.0043 -82.3324,29.0044 -82.3409,29.0043 -82.3472,28.9993 -82.3537,28.9942 -82.3602,28.989 -82.3667,28.9838 -82.3729,28.979 -82.3788,28.9742 -82.3843,28.9698 -82.3897,28.9655 -82.3967,28.9631 -82.4046,28.9631 -82.4126,28.9631 -82.4211,28.9631 -82.4287,28.9631 -82.4336,28.9631 -82.4424,28.9631 -82.4511,28.9631 -82.4597,28.963 -82.4684,28.963 -82.477,28.9629 -82.4854,28.9629 -82.4938,28.9629 -82.5025,28.9629 -82.5113,28.9628 -82.5195,28.9628 -82.5282,28.9628 -82.537,28.9628 -82.5458,28.9628 -82.5545,28.9628 -82.5633,28.9627 -82.572,28.9626 -82.5797,28.9625 -82.5884,28.9623 -82.5971,28.9622 -82.6051,28.962 -82.6133,28.9618 -82.6171,28.9617 -82.6258,28.9616 -82.6346,28.9614 -82.6433,28.9614 -82.6518,28.9613 -82.6601,28.9613 -82.6686,28.9613 -82.6771,28.9612 -82.6853,28.9612 -82.6939,28.9623 -82.6983,28.962 -82.6989,28.9604</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 85.08km --- OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-82.6989,28.9604 -82.6933,28.9604 -82.6854,28.9595 -82.6769,28.9595 -82.6684,28.9595 -82.6598,28.9596 -82.6513,28.9596 -82.6427,28.9596 -82.6341,28.9596 -82.6259,28.9598 -82.6184,28.9599 -82.6114,28.9601 -82.6053,28.9548 -82.5991,28.9494 -82.593,28.944 -82.5868,28.9385 -82.5806,28.9331 -82.5746,28.9279 -82.5686,28.9226 -82.5624,28.9172 -82.5562,28.9118 -82.55,28.9063 -82.5443,28.9013 -82.5382,28.8959 -82.5319,28.8905 -82.5257,28.885 -82.5196,28.8796 -82.5134,28.8741 -82.508,28.8691 -82.5039,28.8647 -82.5016,28.8585 -82.5016,28.8511 -82.5016,28.8438 -82.5016,28.8361 -82.5015,28.8286 -82.5015,28.8208 -82.5015,28.8133 -82.5015,28.8056 -82.5015,28.7983 -82.5014,28.7911 -82.5014,28.7835 -82.5013,28.7759 -82.5013,28.7683 -82.5013,28.7609 -82.5012,28.7533 -82.5012,28.7456 -82.5012,28.738 -82.5011,28.7304 -82.5011,28.7227 -82.5011,28.715 -82.501,28.7073 -82.5009,28.6996 -82.5008,28.6927 -82.5008,28.685 -82.5007,28.6776 -82.5007,28.6702 -82.5006,28.6628 -82.5005,28.6548 -82.5005,28.6472 -82.5004,28.6395 -82.5004,28.6319 -82.5003,28.6242 -82.5003,28.6165 -82.5002,28.6089 -82.5001,28.6014 -82.5,28.5939 -82.5,28.5862 -82.4999,28.5787 -82.4981,28.5749</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>DUKE ENERGY FLORIDA, INC</name><description>500kV --- AC --- 52.33km --- OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-82.4981,28.5749 -82.4998,28.571 -82.4997,28.5635 -82.4996,28.5559 -82.4995,28.5484 -82.4994,28.5411 -82.4993,28.5343 -82.5012,28.5284 -82.5028,28.5226 -82.506,28.516 -82.5094,28.5091 -82.5127,28.5025 -82.5162,28.4954 -82.5196,28.4884 -82.5228,28.482 -82.526,28.4753 -82.5294,28.4685 -82.5328,28.4615 -82.536,28.4551 -82.5393,28.4484 -82.5427,28.4413 -82.5462,28.4343 -82.5493,28.4278 -82.5528,28.4208 -82.5562,28.4137 -82.5587,28.4065 -82.5602,28.3989 -82.5618,28.3914 -82.5633,28.3838 -82.5648,28.3762 -82.5663,28.3688 -82.5678,28.3613 -82.5693,28.3536 -82.5707,28.346 -82.5722,28.3384 -82.5743,28.331 -82.5764,28.3237 -82.5785,28.3162 -82.5806,28.3088 -82.5827,28.3014 -82.5848,28.2941 -82.5869,28.2866 -82.589,28.2792 -82.5911,28.2717 -82.5944,28.2654 -82.5992,28.259 -82.604,28.2527 -82.6088,28.2464 -82.6136,28.24 -82.6184,28.2337 -82.6232,28.2273 -82.628,28.221 -82.6328,28.2147 -82.6374,28.2086 -82.6423,28.2022 -82.647,28.1959 -82.6518,28.1896 -82.6542,28.1864 -82.6541,28.1827 -82.6541,28.1755 -82.654,28.1681 -82.6539,28.161 -82.6538,28.1541 -82.6537,28.1469 -82.6535,28.1392 -82.6534,28.1317 -82.6533,28.1241 -82.6531,28.1164 -82.653,28.1088 -82.6529,28.1012 -82.6527,28.0934 -82.6526,28.0883 -82.6525,28.0829 -82.6525,28.0753 -82.6524,28.0676 -82.6539,28.0606 -82.6538,28.06 -82.6537,28.0596 -82.6535,28.0588</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 55.74km --- Imagery, OpenStreetMap, http://www.psc.state.fl.us/publications/pdf/electricgas/transmissionreport2007.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-78.2534,39.0581 -78.252,39.0568 -78.2487,39.0536 -78.2435,39.0475 -78.219,39.0135 -78.1896,38.9786 -78.1781,38.9677 -78.1786,38.9641 -78.1728,38.9458 -78.1492,38.9415 -78.1345,38.926 -78.1333,38.9206</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 21.08km --- Imagery, OpenStreetMap, http://www.pjm.com/system-map/default.html</description></Placemark>
<Placemark>
<LineString><coordinates>-88.3471,41.3528 -88.3443,41.3496 -88.3487,41.3473 -88.3596,41.3473 -88.3699,41.3473 -88.3738,41.3507 -88.3739,41.3567 -88.374,41.364 -88.3732,41.3701 -88.3733,41.3769 -88.3735,41.3843 -88.3736,41.3915 -88.3737,41.3989 -88.3739,41.4064 -88.374,41.414 -88.3741,41.4221 -88.3741,41.4299 -88.3742,41.4381 -88.3743,41.4463 -88.3744,41.4543 -88.3745,41.4622 -88.3746,41.47 -88.3746,41.4779 -88.3747,41.4854 -88.3748,41.4932 -88.3749,41.5006 -88.3798,41.5042 -88.3899,41.504 -88.4006,41.5038 -88.4107,41.5036 -88.4213,41.5034 -88.432,41.5032 -88.4425,41.5029 -88.4531,41.5026 -88.4626,41.5023 -88.4715,41.4985 -88.4817,41.4984 -88.4914,41.4983 -88.501,41.4982 -88.506,41.5017 -88.5061,41.5081 -88.5063,41.5154 -88.5065,41.5226 -88.5066,41.5298 -88.5068,41.5371 -88.507,41.5443 -88.5072,41.5515 -88.5075,41.5588 -88.5077,41.566 -88.508,41.5733 -88.5082,41.5792 -88.5084,41.5852 -88.5113,41.5903 -88.5145,41.5959 -88.5148,41.6025 -88.515,41.6087 -88.5149,41.6148 -88.5148,41.621 -88.5147,41.627 -88.5146,41.6335 -88.5166,41.6399 -88.5198,41.6447 -88.5161,41.6506 -88.512,41.6571 -88.51,41.6637 -88.5102,41.6701 -88.5091,41.6762 -88.5087,41.6821 -88.5045,41.6849 -88.4954,41.685 -88.4864,41.685 -88.482,41.683 -88.4805,41.6831</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>765kV --- AC --- 55.09km --- Imagery, OpenStreetMap, Inferred from http://www.pjm.com/pub/account/trans-fac/aepsct.xls</description></Placemark>
<Placemark>
<LineString><coordinates>-87.0295,37.9297 -87.0292,37.9328 -87.0222,37.9383 -86.9945,37.9519 -86.9669,37.9917 -86.9324,38.0334 -86.9038,38.0616 -86.865,38.1011 -86.8344,38.1361 -86.8131,38.1492 -86.7709,38.1769 -86.7626,38.1867 -86.7528,38.1997 -86.746,38.2057 -86.7346,38.2221 -86.7288,38.2356 -86.7075,38.2591 -86.6895,38.2684 -86.6716,38.275 -86.6286,38.2849 -86.6078,38.2893 -86.5511,38.2983 -86.5182,38.3009 -86.4862,38.3037 -86.4413,38.3083 -86.43,38.3111 -86.3985,38.3271 -86.3776,38.3336 -86.3557,38.3447 -86.3442,38.3505 -86.313,38.3678 -86.2586,38.3914 -86.2079,38.4094 -86.1731,38.4271 -86.1103,38.4777 -86.0699,38.5182 -86.0472,38.551 -86.0287,38.5779 -86.0178,38.5904 -85.9817,38.6336 -85.9709,38.6503 -85.9629,38.6551 -85.9314,38.6672 -85.9031,38.6827 -85.876,38.695 -85.8497,38.7088 -85.8091,38.7285 -85.793,38.7373 -85.7818,38.743 -85.7737,38.7469 -85.7568,38.7473 -85.7387,38.7465 -85.6826,38.7465 -85.6563,38.7466 -85.6418,38.7452 -85.6239,38.7449 -85.5174,38.7457 -85.4876,38.7446 -85.47,38.7427 -85.4467,38.7427 -85.4383,38.7418</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>765kV --- AC --- 189.48km --- Imagery, OpenStreetMap, Inferred from http://www.pjm.com/pub/account/trans-fac/aepsct.xls</description></Placemark>
<Placemark>
<LineString><coordinates>-85.4383,38.7418 -85.438,38.7436 -85.4414,38.7526 -85.4449,38.7589 -85.4522,38.7811 -85.467,38.8181 -85.4712,38.9202 -85.484,39.0148 -85.486,39.0286 -85.4849,39.0596 -85.5057,39.0907 -85.5364,39.1459 -85.5453,39.1576 -85.5757,39.2156 -85.6039,39.2616 -85.6208,39.2903 -85.6332,39.3459 -85.651,39.436 -85.6538,39.5198 -85.6569,39.5704 -85.6555,39.6836 -85.6614,39.7784 -85.683,39.8367 -85.7772,39.9447 -85.8227,40.0027 -85.875,40.0589 -85.9058,40.1068 -85.9046,40.2614 -85.9033,40.3052 -85.9023,40.3496 -85.9163,40.4318 -85.917,40.442 -85.9148,40.4686 -85.9153,40.4735</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>765kV --- AC --- 186.67km --- Imagery, OpenStreetMap, Inferred from http://www.pjm.com/pub/account/trans-fac/aepsct.xls</description></Placemark>
<Placemark>
<LineString><coordinates>-86.3605,41.5235 -86.3578,41.5218 -86.3606,41.4881 -86.3594,41.4117 -86.3614,41.3757 -86.3563,41.3502 -86.3442,41.3214 -86.3112,41.266 -86.2895,41.2347 -86.2537,41.2017 -86.1962,41.1362 -86.1592,41.074 -86.14,41.0524 -86.103,41.012 -86.0835,40.9971 -86.0598,40.9652 -86.0441,40.947 -86.0142,40.9015 -85.9825,40.8483 -85.9805,40.837 -85.9739,40.7245 -85.9714,40.6939 -85.9584,40.6546 -85.9433,40.582 -85.9192,40.5392 -85.9168,40.5323 -85.9149,40.4774 -85.9153,40.4735</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>765kV --- AC --- 119.33km --- Imagery, OpenStreetMap, Inferred from http://www.pjm.com/pub/account/trans-fac/aepsct.xls</description></Placemark>
<Placemark>
<LineString><coordinates>-77.2382,39.3562 -77.2326,39.3561 -77.2275,39.3605 -77.2215,39.3656 -77.2151,39.3711 -77.2091,39.3762 -77.2034,39.381 -77.1952,39.3848 -77.1887,39.386 -77.1814,39.3875 -77.1726,39.3892 -77.168,39.3897 -77.16,39.3905 -77.1541,39.3911 -77.1462,39.3919 -77.1391,39.3912 -77.1285,39.3883 -77.1218,39.3865 -77.1133,39.3877 -77.1054,39.391 -77.0999,39.3934 -77.0921,39.3937 -77.0836,39.394 -77.075,39.3944 -77.0679,39.3947 -77.061,39.3949 -77.0535,39.3952 -77.0461,39.3955 -77.0371,39.3958 -77.0333,39.4003 -77.027,39.4075 -77.022,39.4133 -77.0182,39.4176 -77.012,39.4247 -77.006,39.4301 -76.9997,39.4347 -76.9924,39.439 -76.9867,39.4419 -76.9803,39.4451 -76.9737,39.4485 -76.9689,39.4509 -76.9624,39.452 -76.9577,39.4527 -76.9478,39.4543 -76.9395,39.4557 -76.9312,39.457 -76.9257,39.4575 -76.9165,39.4579 -76.9066,39.4583 -76.8981,39.4587 -76.8955,39.4588 -76.8878,39.4588 -76.8806,39.4589 -76.8709,39.4587 -76.8625,39.4578 -76.8549,39.4571 -76.8454,39.4579 -76.844,39.4634 -76.8432,39.4645 -76.8404,39.4681 -76.8384,39.4708 -76.8361,39.4749 -76.8305,39.4781 -76.8259,39.4808 -76.8226,39.4842 -76.8182,39.4887 -76.8138,39.4932 -76.81,39.4971 -76.8059,39.5014 -76.801,39.5064 -76.7968,39.5108 -76.7934,39.5145 -76.7887,39.5198 -76.7842,39.5249 -76.7807,39.5289 -76.7748,39.5356 -76.7698,39.5408 -76.766,39.5446 -76.7609,39.5498 -76.7562,39.5545 -76.7521,39.5586 -76.7478,39.5629 -76.7449,39.5659 -76.7402,39.5707 -76.7355,39.5754 -76.7312,39.5796 -76.7264,39.5846 -76.723,39.588 -76.7176,39.5928 -76.7116,39.5969 -76.7064,39.6004 -76.7004,39.6045 -76.6944,39.6085 -76.6881,39.6128 -76.6798,39.6177 -76.6759,39.6195 -76.6683,39.6231 -76.6621,39.6259 -76.6576,39.628 -76.6493,39.632 -76.6434,39.6358 -76.6407,39.6393 -76.6371,39.644 -76.6318,39.6508 -76.6277,39.6561 -76.6247,39.6599 -76.6203,39.6657 -76.6166,39.6705 -76.612,39.6761 -76.6068,39.6821 -76.6023,39.687 -76.6009,39.6881 -76.5993,39.6879 -76.5951,39.6875 -76.5889,39.6868 -76.5803,39.6859 -76.5737,39.6857 -76.5666,39.6854 -76.5598,39.6852 -76.5509,39.6848 -76.5437,39.6846 -76.5404,39.6874</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 83.21km --- Imagery, http://www.pjm.com/system-map/default.html</description></Placemark>
<Placemark>
<LineString><coordinates>-77.037,39.1853 -77.0355,39.1872 -77.0334,39.1921 -77.0345,39.1958 -77.0398,39.1999 -77.0426,39.2023 -77.0452,39.2053 -77.0415,39.2099 -77.0374,39.213 -77.0379,39.2169 -77.0436,39.2217 -77.0494,39.2241 -77.0569,39.2255 -77.0626,39.2266 -77.0661,39.2303 -77.0687,39.2334 -77.0746,39.236 -77.0785,39.2392 -77.0819,39.2421 -77.0871,39.2456 -77.0929,39.2469 -77.0993,39.2484 -77.1039,39.2506 -77.1095,39.2533 -77.1143,39.2561 -77.1202,39.258 -77.1274,39.2613 -77.1318,39.2635 -77.1368,39.2652 -77.1413,39.2686 -77.146,39.2722 -77.1505,39.2756 -77.1515,39.2779 -77.1509,39.2825 -77.1499,39.2892 -77.1521,39.2932 -77.1522,39.2985 -77.1582,39.3022 -77.163,39.3051 -77.1674,39.3072 -77.1736,39.308 -77.176,39.3092 -77.1801,39.3153 -77.1842,39.3177 -77.1892,39.3207 -77.1952,39.3245 -77.1981,39.3272 -77.2018,39.3299 -77.2064,39.3333 -77.2122,39.3364 -77.2141,39.3399 -77.2192,39.344 -77.2271,39.3454 -77.2337,39.3467 -77.2359,39.3509 -77.2382,39.3555</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 30.53km --- Imagery, http://www.pjm.com/system-map/default.html</description></Placemark>
<Placemark>
<LineString><coordinates>-77.037,39.1853 -77.0361,39.1874 -77.0336,39.1922 -77.0347,39.1958 -77.0399,39.1998 -77.0428,39.2022 -77.0454,39.2053 -77.0416,39.21 -77.0376,39.2131 -77.038,39.2168 -77.0437,39.2216 -77.0494,39.224 -77.057,39.2253 -77.0627,39.2264 -77.0662,39.2303 -77.0688,39.2333 -77.0747,39.2359 -77.0786,39.2391 -77.082,39.2421 -77.0872,39.2455 -77.093,39.2468 -77.0994,39.2483 -77.104,39.2505 -77.1096,39.2532 -77.1144,39.2559 -77.1203,39.2579 -77.1275,39.2612 -77.1319,39.2633 -77.1369,39.2651 -77.1414,39.2685 -77.1462,39.2721 -77.1506,39.2755 -77.1517,39.2779 -77.151,39.2825 -77.1501,39.2893 -77.1522,39.2932 -77.1524,39.2985 -77.1583,39.3021 -77.1631,39.305 -77.1674,39.307 -77.1736,39.3078 -77.1761,39.3091 -77.1802,39.3152 -77.1844,39.3176 -77.1893,39.3206 -77.1954,39.3244 -77.1982,39.3271 -77.2019,39.3298 -77.2065,39.3332 -77.2123,39.3363 -77.2142,39.3398 -77.2192,39.3439 -77.2271,39.3453 -77.2338,39.3466 -77.2361,39.3509 -77.2384,39.3555</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 30.52km --- Imagery, http://www.pjm.com/system-map/default.html</description></Placemark>
<Placemark>
<LineString><coordinates>-77.9173,39.5156 -77.9136,39.513 -77.8986,39.5035 -77.8875,39.4998 -77.8459,39.4913 -77.8193,39.4904 -77.819,39.4958 -77.8175,39.4976 -77.811,39.5018 -77.8046,39.5059 -77.7979,39.5102 -77.7912,39.5145 -77.786,39.5165 -77.7785,39.5166 -77.7697,39.5167 -77.7557,39.5168 -77.7467,39.5169 -77.7375,39.518 -77.731,39.5183 -77.7229,39.5164 -77.7151,39.5145 -77.7078,39.5128 -77.6977,39.5103 -77.6944,39.5095 -77.6836,39.507 -77.6784,39.5035 -77.674,39.4968 -77.6694,39.4899 -77.666,39.4846 -77.661,39.4798 -77.6549,39.4761 -77.6496,39.4729 -77.6432,39.469 -77.6369,39.4667 -77.6275,39.4671 -77.6221,39.4658 -77.6209,39.464 -77.6164,39.4573 -77.6124,39.4512 -77.6088,39.4459 -77.603,39.4405 -77.5978,39.4358 -77.5899,39.428 -77.5876,39.4235 -77.5871,39.4185 -77.5856,39.4121 -77.5829,39.4053 -77.5801,39.3981 -77.5793,39.3927 -77.5783,39.3857 -77.5773,39.3789 -77.5764,39.3727 -77.574,39.3679 -77.569,39.3628 -77.564,39.3576 -77.5596,39.3517 -77.5556,39.3462 -77.5529,39.3418 -77.5505,39.3343 -77.5484,39.3277 -77.5466,39.322 -77.5433,39.3165 -77.5359,39.3108 -77.5318,39.3077 -77.5255,39.3039 -77.5216,39.3011 -77.5164,39.297 -77.5159,39.2964</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>THE POTOMAC EDISON COMPANY</name><description>500kV --- AC --- 54.24km --- Imagery, http://www.pjm.com/pub/account/trans-fac/aepsct.xls, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-77.2385,39.3562 -77.2456,39.3562 -77.252,39.3563 -77.2591,39.3541 -77.2653,39.3491 -77.2701,39.3452 -77.2748,39.3414 -77.2828,39.3402 -77.2918,39.3378 -77.2993,39.334 -77.3056,39.3307 -77.312,39.3275 -77.3217,39.3225 -77.3291,39.3187 -77.335,39.3152 -77.3436,39.3099 -77.3503,39.3058 -77.3564,39.3021 -77.3613,39.3036 -77.3682,39.3063 -77.3744,39.3087 -77.3789,39.3064 -77.3847,39.3032 -77.3872,39.3042 -77.3972,39.3062 -77.4038,39.3064 -77.408,39.3056 -77.4133,39.3015 -77.4211,39.2955 -77.4285,39.2926 -77.4349,39.2902 -77.4422,39.2884 -77.4493,39.2888 -77.457,39.2892 -77.4634,39.2895 -77.472,39.29 -77.482,39.2913 -77.4912,39.2924 -77.4991,39.2924 -77.5077,39.2923 -77.5122,39.2943 -77.5142,39.2951 -77.5148,39.2964</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>THE POTOMAC EDISON COMPANY</name><description>500kV --- AC --- 30.13km --- Imagery, http://www.pjm.com/system-map/default.html, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-88.3951,37.0249 -88.3941,37.0219 -88.3942,37.0177 -88.3977,37.0138 -88.4055,37.0106 -88.4136,37.0072 -88.421,37.005 -88.427,37.0037 -88.436,37.0018 -88.4444,37.0001 -88.4527,36.9983 -88.4595,36.9969 -88.466,36.997 -88.4707,36.9971 -88.4763,36.9971 -88.4825,36.9978 -88.4902,36.9991 -88.5012,37.0011 -88.5105,37.0026 -88.5178,37.0038 -88.5332,37.0061 -88.5451,37.0076 -88.556,37.0098 -88.5695,37.0126 -88.5781,37.0146 -88.5844,37.016 -88.594,37.0181 -88.6081,37.0214 -88.6183,37.0237 -88.6266,37.0236 -88.6419,37.0236 -88.6538,37.0236 -88.6622,37.0218 -88.6738,37.0187 -88.6841,37.0202 -88.6915,37.0237 -88.7011,37.0347 -88.7107,37.0459 -88.7135,37.0495 -88.7176,37.0582 -88.721,37.0651 -88.7237,37.0734 -88.7244,37.0787 -88.7257,37.0871 -88.7281,37.0923 -88.7359,37.0979 -88.7456,37.1019 -88.7507,37.104 -88.7553,37.1075 -88.7624,37.113 -88.7674,37.1175 -88.7736,37.1247 -88.7788,37.1307 -88.7783,37.1372 -88.7745,37.1454 -88.7762,37.1485</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 48.07km --- Imagery, http://www.oatioasis.com/TVA/TVAdocs/TVA_Transmission_Map_2011_r2.pdf</description></Placemark>
<Placemark>
<LineString><coordinates>-76.6776,39.0466 -76.6761,39.0438 -76.6764,39.0435 -76.6785,39.0447 -76.68,39.0457 -76.6812,39.0463 -76.6849,39.0427 -76.6893,39.0384 -76.694,39.0337 -76.6981,39.0297 -76.7042,39.0294 -76.7117,39.0313 -76.7178,39.031 -76.7244,39.0308 -76.7308,39.0313 -76.738,39.0323 -76.7432,39.0336 -76.749,39.0357 -76.7508,39.0363 -76.757,39.0392 -76.7621,39.0415 -76.7669,39.0442 -76.7718,39.0469 -76.7771,39.0498 -76.7828,39.053 -76.7871,39.0571 -76.7914,39.0613 -76.7956,39.0654 -76.7997,39.0693 -76.8035,39.0729 -76.8069,39.0763 -76.8085,39.0807 -76.8081,39.0862 -76.8065,39.091 -76.8008,39.0957 -76.7953,39.0994 -76.7938,39.104 -76.7924,39.107 -76.7903,39.1098 -76.7918,39.1148 -76.7969,39.1164 -76.8024,39.118 -76.8071,39.1194 -76.8127,39.1211 -76.8155,39.1216 -76.8199,39.1218 -76.8245,39.1227 -76.8285,39.1244 -76.8337,39.1265 -76.8372,39.128 -76.8435,39.1306 -76.848,39.1306 -76.8526,39.1312 -76.8592,39.1334 -76.865,39.1354 -76.8697,39.1379 -76.8725,39.1398 -76.8735,39.1403 -76.8739,39.1406 -76.8744,39.1408 -76.8769,39.1417 -76.8812,39.1436 -76.8882,39.1453 -76.8939,39.1479 -76.8977,39.1496 -76.9024,39.1533 -76.9071,39.1554 -76.913,39.1568 -76.9178,39.1581 -76.9224,39.1591 -76.9277,39.1605 -76.9344,39.1597 -76.939,39.1572 -76.9452,39.1542 -76.9503,39.1565 -76.9555,39.1579 -76.9607,39.1564 -76.9656,39.1538 -76.9729,39.1517 -76.9763,39.1547 -76.9787,39.1568 -76.983,39.1602 -76.9882,39.1633 -76.9966,39.1656 -77.0033,39.1677 -77.0095,39.1713 -77.0143,39.1743 -77.0201,39.1777 -77.0252,39.18 -77.0318,39.1821 -77.036,39.1852</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 47.65km --- Imagery, http://www.pjm.com/system-map/default.html</description></Placemark>
<Placemark>
<LineString><coordinates>-76.4443,38.4327 -76.4463,38.4314 -76.4519,38.4314 -76.4575,38.4357 -76.4629,38.4399 -76.4685,38.4443 -76.4733,38.448 -76.4807,38.4538 -76.4863,38.4581 -76.4932,38.4634 -76.4983,38.4674 -76.5023,38.4732 -76.5043,38.4795 -76.5057,38.4839 -76.5091,38.4879 -76.5109,38.4925 -76.5134,38.4985 -76.5206,38.5015 -76.5289,38.5044 -76.5357,38.5083 -76.541,38.512 -76.543,38.5195 -76.5443,38.5246 -76.5459,38.5307 -76.5477,38.5375 -76.5496,38.5447 -76.5513,38.5511 -76.5529,38.5571 -76.5532,38.5635 -76.5535,38.571 -76.5538,38.5769 -76.5527,38.584 -76.5519,38.5893 -76.5537,38.5949 -76.5561,38.6021 -76.5583,38.6088 -76.5601,38.6143 -76.562,38.6202 -76.5642,38.6266 -76.5646,38.6312 -76.5653,38.6387 -76.5658,38.6444 -76.5664,38.6504 -76.5672,38.6563 -76.5684,38.6642 -76.5692,38.6691 -76.5702,38.6747 -76.5714,38.6824 -76.5724,38.6885 -76.5729,38.6913 -76.5736,38.6954 -76.5746,38.7021 -76.577,38.707 -76.5796,38.7123 -76.5828,38.7191 -76.5843,38.7222 -76.5852,38.7294 -76.586,38.7361 -76.587,38.7437 -76.5869,38.7481 -76.5861,38.7541 -76.587,38.7589 -76.5879,38.7636 -76.589,38.7699 -76.5893,38.7753 -76.5883,38.7828 -76.5874,38.7895 -76.5866,38.795 -76.5879,38.8025 -76.5891,38.8095 -76.5901,38.8168 -76.5904,38.8216 -76.5929,38.8257 -76.5972,38.83 -76.6003,38.8331 -76.5987,38.8375 -76.5942,38.8425 -76.5887,38.8465 -76.5845,38.8498 -76.5822,38.8548 -76.5853,38.86 -76.589,38.8627 -76.5963,38.8647 -76.6031,38.8666 -76.6094,38.8683 -76.6113,38.8725 -76.6122,38.8763 -76.6128,38.8825 -76.6129,38.8831 -76.6136,38.8899 -76.6106,38.8957 -76.6076,38.9013 -76.6043,38.9076 -76.6008,38.9142 -76.5999,38.9182 -76.6004,38.9233 -76.6008,38.9284 -76.603,38.936 -76.6054,38.94 -76.6065,38.9419 -76.6079,38.9472 -76.6099,38.9544 -76.611,38.9567 -76.6139,38.9626 -76.6162,38.9672 -76.6174,38.9697 -76.62,38.975 -76.6226,38.9793 -76.6262,38.9853 -76.6311,38.9934 -76.6357,39.001 -76.6399,39.008 -76.6434,39.0138 -76.646,39.0182 -76.6511,39.0244 -76.6561,39.0293 -76.6613,39.0342 -76.6676,39.0379 -76.6738,39.0416 -76.6739,39.0443 -76.6776,39.0466</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BALTIMORE GAS & ELECTRIC CO</name><description>500kV --- AC --- 73.69km --- Imagery, http://www.pjm.com/system-map/default.html, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-76.4443,38.4327 -76.4464,38.4318 -76.4516,38.4318 -76.4571,38.436 -76.4626,38.4403 -76.468,38.4445 -76.4732,38.4485 -76.4802,38.4539 -76.486,38.4584 -76.4922,38.4632 -76.4979,38.4677 -76.5017,38.4738 -76.5036,38.4798 -76.505,38.4841 -76.5086,38.4883 -76.5103,38.4927 -76.5128,38.4989 -76.5202,38.5018 -76.5286,38.5048 -76.5353,38.5086 -76.5406,38.5122 -76.5425,38.5198 -76.5438,38.5246 -76.5454,38.5306 -76.5472,38.5376 -76.5491,38.5448 -76.5508,38.5514 -76.5524,38.5571 -76.5526,38.5635 -76.553,38.5708 -76.5533,38.5769 -76.5522,38.584 -76.5514,38.5893 -76.5532,38.595 -76.5556,38.6022 -76.5577,38.6089 -76.5596,38.6145 -76.5615,38.6203 -76.5637,38.6267 -76.5641,38.6314 -76.5648,38.639 -76.5653,38.6444 -76.5659,38.65 -76.5666,38.6563 -76.568,38.6646 -76.5687,38.6691 -76.5696,38.6744 -76.5709,38.6825 -76.5719,38.6886 -76.5727,38.6932 -76.5736,38.6991 -76.5752,38.7043 -76.5779,38.7101 -76.5809,38.7164 -76.5833,38.7214 -76.5842,38.7259 -76.5851,38.7333 -76.5859,38.7395 -76.5867,38.7456 -76.586,38.7512 -76.586,38.7559 -76.5869,38.761 -76.5878,38.7659 -76.5891,38.773 -76.5883,38.7791 -76.5872,38.7872 -76.5865,38.7921 -76.5866,38.798 -76.588,38.8058 -76.5894,38.8142 -76.5897,38.8196 -76.5899,38.8234 -76.5946,38.8281 -76.5982,38.8317 -76.5989,38.8354 -76.5964,38.8394 -76.5916,38.8448 -76.5849,38.8476 -76.5826,38.8527 -76.5829,38.857 -76.5861,38.8623 -76.5923,38.864 -76.5996,38.8661 -76.6064,38.8679 -76.6097,38.8702 -76.6115,38.8741 -76.612,38.8792 -76.6123,38.8828 -76.6127,38.8862 -76.6117,38.8925 -76.6086,38.8982 -76.6056,38.904 -76.6018,38.9113 -76.5992,38.9161 -76.5996,38.9206 -76.6,38.926 -76.6005,38.9327 -76.6043,38.9392 -76.6051,38.9406 -76.6066,38.9443 -76.6081,38.95 -76.6095,38.9548 -76.6117,38.9594 -76.6143,38.9646 -76.6167,38.9694 -76.6181,38.9723 -76.6204,38.9765 -76.6236,38.9819 -76.628,38.9892 -76.6332,38.9979 -76.6372,39.0045 -76.6407,39.0103 -76.6441,39.0159 -76.6475,39.0216 -76.6531,39.027 -76.6589,39.0325 -76.6639,39.0362 -76.6706,39.0402 -76.6733,39.0435 -76.6734,39.045</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>BALTIMORE GAS & ELECTRIC CO</name><description>500kV --- AC --- 73.69km --- Imagery, http://www.pjm.com/system-map/default.html, Retail Service Territories Layer</description></Placemark>
<Placemark>
<LineString><coordinates>-76.4443,38.4327 -76.446,38.4308 -76.4522,38.4308 -76.458,38.4354 -76.463,38.4392 -76.4692,38.444 -76.474,38.4477 -76.4809,38.4531 -76.4866,38.4575 -76.4923,38.462 -76.4984,38.4667 -76.5028,38.4731 -76.5048,38.4794 -76.5062,38.4837 -76.5096,38.4877 -76.5114,38.4924 -76.5138,38.4983 -76.521,38.5012 -76.5285,38.5036 -76.5344,38.5066 -76.5394,38.5101 -76.5425,38.515 -76.5441,38.5211 -76.5533,38.5234 -76.5608,38.5231 -76.5675,38.521 -76.5741,38.5197 -76.5798,38.5226 -76.585,38.5272 -76.5857,38.5272 -76.5926,38.5277 -76.5958,38.5324 -76.5976,38.5368 -76.6057,38.5392 -76.6131,38.5396 -76.6225,38.54 -76.6283,38.5377 -76.636,38.5375 -76.6411,38.5379 -76.6462,38.539 -76.6544,38.5392 -76.6616,38.5417 -76.6647,38.5441 -76.6698,38.5455 -76.6759,38.5472 -76.6809,38.5486 -76.685,38.552 -76.6869,38.5564 -76.6871,38.5596 -76.6881,38.5616</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 31.13km --- Imagery, http://www.pjm.com/system-map/default.html</description></Placemark>
<Placemark>
<LineString><coordinates>-76.6888,38.5619 -76.6901,38.5628 -76.6914,38.5619 -76.6916,38.5616 -76.6928,38.5597 -76.6943,38.5573 -76.7,38.5541 -76.7068,38.5516 -76.7117,38.5523 -76.7196,38.5546 -76.7276,38.5569 -76.7332,38.5587 -76.7384,38.5604 -76.7418,38.5616 -76.7473,38.5635 -76.7529,38.5654 -76.7582,38.5672 -76.7631,38.571 -76.7647,38.5765 -76.7662,38.5813 -76.7694,38.5855 -76.775,38.59 -76.7767,38.5913 -76.782,38.5955 -76.7859,38.5999 -76.7882,38.6038 -76.7903,38.6071 -76.7891,38.6123 -76.7881,38.6168 -76.7872,38.6225 -76.7873,38.6274 -76.7874,38.6321 -76.7875,38.6385 -76.7876,38.6434 -76.7877,38.6483 -76.7894,38.6515 -76.7939,38.6552 -76.7983,38.6576 -76.805,38.6595 -76.808,38.6655 -76.8107,38.6691 -76.8159,38.6734 -76.819,38.676 -76.8194,38.6763 -76.8201,38.6768 -76.8212,38.6791 -76.8219,38.6852 -76.8241,38.6886 -76.8287,38.6919 -76.8281,38.6968 -76.8297,38.6997 -76.8289,38.705 -76.8306,38.7085 -76.8376,38.7067 -76.8425,38.7065 -76.8451,38.7073 -76.8507,38.711 -76.8545,38.7125 -76.8578,38.714 -76.8602,38.7182 -76.8628,38.7227 -76.8652,38.727 -76.8652,38.7311 -76.8652,38.7315 -76.8652,38.7324 -76.8651,38.739 -76.8689,38.74 -76.8709,38.7384</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 31.74km --- Imagery, http://www.pjm.com/system-map/default.html</description></Placemark>
<Placemark>
<LineString><coordinates>-76.713,40.1499 -76.7082,40.1475 -76.7034,40.1503 -76.6963,40.1541 -76.6915,40.1599 -76.6882,40.1659 -76.6852,40.1713 -76.6779,40.1727 -76.6703,40.1743 -76.6624,40.1758 -76.6553,40.1772 -76.647,40.1788 -76.6391,40.1804 -76.6311,40.1819 -76.624,40.1833 -76.6173,40.1856 -76.612,40.1881 -76.6054,40.1912 -76.5988,40.1934 -76.5901,40.1951 -76.5825,40.1965 -76.5739,40.1982 -76.5667,40.1995 -76.5596,40.2013 -76.5518,40.2036 -76.5437,40.206 -76.5387,40.2057 -76.5313,40.2035 -76.5223,40.2007 -76.5129,40.1981 -76.5045,40.1958 -76.4979,40.193 -76.4882,40.1941 -76.4796,40.1949 -76.47,40.1957 -76.4638,40.1976 -76.4565,40.1999 -76.45,40.2019 -76.4425,40.202 -76.4346,40.2021 -76.4248,40.2022 -76.4155,40.2051 -76.4085,40.2073 -76.4016,40.2095 -76.3934,40.2107 -76.3858,40.2105 -76.378,40.2138 -76.3694,40.2161 -76.3596,40.2178 -76.3499,40.2194 -76.3403,40.2214 -76.3327,40.223 -76.3254,40.2245 -76.3165,40.2264 -76.3084,40.2281 -76.3009,40.2297 -76.292,40.2282 -76.2831,40.2267 -76.2734,40.2251 -76.263,40.2257 -76.2562,40.2226 -76.2496,40.2217 -76.2414,40.2228 -76.2326,40.2241 -76.2247,40.224 -76.2161,40.2224 -76.2062,40.2218 -76.1983,40.2223 -76.1894,40.2228 -76.1811,40.2224 -76.1739,40.2211 -76.1649,40.2195 -76.1581,40.2197 -76.1488,40.2198 -76.1389,40.2209 -76.1311,40.2218 -76.1253,40.2205 -76.1158,40.22 -76.1067,40.2205 -76.104,40.216 -76.096,40.2134 -76.087,40.2104 -76.0814,40.2126 -76.0778,40.214 -76.071,40.214 -76.0657,40.2141 -76.0586,40.216 -76.0509,40.2173 -76.0411,40.2189 -76.0317,40.2205 -76.0239,40.2195 -76.0165,40.2184 -76.0091,40.218 -76.0021,40.2176 -75.9931,40.2188 -75.9816,40.2211 -75.9744,40.2226 -75.9664,40.2242 -75.959,40.2271 -75.9522,40.2312 -75.9461,40.2327 -75.9384,40.2339 -75.9332,40.2359 -75.9277,40.2399 -75.9208,40.2432 -75.9135,40.2449 -75.9071,40.2479 -75.8988,40.2518 -75.8917,40.2534 -75.8808,40.2558 -75.8733,40.2571 -75.8629,40.2585 -75.8527,40.2598 -75.846,40.2608 -75.8364,40.2622 -75.8338,40.2673 -75.8311,40.2727 -75.8268,40.2767 -75.823,40.2824 -75.8217,40.2883 -75.8226,40.2934 -75.8168,40.299 -75.8102,40.3035 -75.8047,40.3085 -75.7985,40.3113 -75.7906,40.3123 -75.7833,40.3143 -75.7745,40.3148 -75.7723,40.3216 -75.7704,40.3278 -75.7687,40.3331 -75.7672,40.3385 -75.7597,40.3388 -75.7521,40.339 -75.7446,40.3392 -75.7367,40.3393 -75.7273,40.3396 -75.7198,40.3398 -75.7127,40.3416 -75.7054,40.3468 -75.6987,40.3489 -75.6914,40.3512 -75.685,40.3532 -75.6789,40.3555 -75.671,40.3591 -75.6636,40.3634 -75.6571,40.3688 -75.6522,40.3735 -75.6477,40.3773 -75.641,40.3821 -75.631,40.3773 -75.6255,40.3743 -75.6183,40.3756 -75.6093,40.3754 -75.6055,40.3755 -75.6029,40.3787 -75.5992,40.3816 -75.5926,40.3862 -75.5871,40.3899 -75.5812,40.3946 -75.5785,40.3985 -75.5756,40.4039 -75.5719,40.4084 -75.5682,40.4117 -75.5634,40.415 -75.5579,40.418 -75.5517,40.422 -75.5458,40.4258 -75.5405,40.4297 -75.5343,40.4349 -75.5291,40.4395 -75.5234,40.4445 -75.5181,40.4485 -75.5129,40.452 -75.5104,40.4551 -75.5083,40.4572</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 134.11km --- Imagery, OpenStreetMap, http://www.pjm.com/markets-and-operations/transmission-service/transmission-facilities.aspx</description></Placemark>
<Placemark>
<LineString><coordinates>-76.2782,39.7613 -76.2765,39.7628 -76.2779,39.7707 -76.2544,39.7849 -76.2495,39.7891 -76.2508,39.7931 -76.2686,39.8076 -76.2745,39.8124 -76.2809,39.8177 -76.287,39.8229 -76.2775,39.833 -76.2651,39.8515 -76.2594,39.856 -76.251,39.8584 -76.2437,39.8603 -76.2367,39.862 -76.2291,39.8629 -76.2214,39.8647 -76.2135,39.8664 -76.2002,39.8658 -76.1903,39.8701 -76.1712,39.8761 -76.1617,39.8808 -76.1552,39.8852 -76.1464,39.8879 -76.1167,39.8886 -76.0986,39.8955 -76.0786,39.9024 -76.0686,39.9067 -76.0513,39.9128 -76.0408,39.9227 -76.0122,39.9286 -75.9947,39.93 -75.9766,39.9355 -75.9649,39.9376 -75.9475,39.9414 -75.93,39.9463 -75.9125,39.9524 -75.9018,39.9596 -75.904,39.9685 -75.9065,39.9802 -75.9074,39.9862 -75.9042,39.9916 -75.8955,39.9938 -75.8898,40.0064 -75.8838,40.0168 -75.876,40.0254 -75.8712,40.0296 -75.8648,40.0342 -75.8601,40.038 -75.8505,40.0401 -75.8454,40.0418 -75.8379,40.0497 -75.8324,40.0574 -75.8275,40.0608 -75.8194,40.0664 -75.809,40.0765 -75.8068,40.0822 -75.7985,40.0891 -75.7875,40.0939 -75.7797,40.098 -75.7713,40.1017 -75.7644,40.104 -75.7522,40.1132 -75.7485,40.121 -75.7252,40.1344 -75.7078,40.1448 -75.6942,40.1537 -75.6789,40.1731 -75.6646,40.192 -75.6547,40.1997 -75.6435,40.2059 -75.6376,40.2102 -75.633,40.2132 -75.6189,40.2197 -75.6101,40.2215 -75.6031,40.2229 -75.5891,40.22 -75.5839,40.2193 -75.5827,40.2207</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 97.67km --- Imagery, OpenStreetMap, http://www.pjm.com/markets-and-operations/transmission-service/transmission-facilities.aspx</description></Placemark>
<Placemark>
<LineString><coordinates>-75.5083,40.4572 -75.5051,40.4584 -75.4967,40.4615 -75.4916,40.4626 -75.4886,40.4578 -75.4845,40.4511 -75.4814,40.4459 -75.4744,40.4294 -75.4718,40.4233 -75.4694,40.4175 -75.467,40.4125 -75.4636,40.4064 -75.4602,40.4004 -75.4592,40.3968 -75.4496,40.3813 -75.4472,40.3771 -75.4442,40.3718 -75.4409,40.366 -75.434,40.3538 -75.4303,40.3476 -75.4292,40.3422 -75.4276,40.3377 -75.4238,40.3298 -75.4179,40.3249 -75.4127,40.3193 -75.4082,40.3144 -75.4044,40.3094 -75.4,40.3062 -75.3918,40.3033 -75.3855,40.2997 -75.3777,40.2984 -75.3732,40.2949 -75.3655,40.2936 -75.3613,40.2904 -75.3526,40.2854 -75.3489,40.2821 -75.3428,40.279 -75.3363,40.2799 -75.3299,40.279 -75.3272,40.2782</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 28.56km --- Imagery, OpenStreetMap, http://www.pjm.com/pub/account/trans-fac/pe.xls</description></Placemark>
<Placemark>
<LineString><coordinates>-76.1497,41.0878 -76.1496,41.0832 -76.1493,41.0774 -76.1491,41.0717 -76.1396,41.065 -76.1419,41.0633 -76.149,41.0612 -76.1566,41.0589 -76.1636,41.0566 -76.1701,41.0543 -76.1788,41.0513 -76.1869,41.0485 -76.1928,41.0465 -76.198,41.044 -76.2053,41.0405 -76.2126,41.0394 -76.2247,41.0376 -76.2324,41.0365 -76.2412,41.0352 -76.2483,41.0341 -76.2546,41.0332 -76.2634,41.0319 -76.2733,41.0285 -76.2837,41.025 -76.2942,41.0215 -76.3019,41.0189 -76.309,41.0165 -76.3155,41.0139 -76.3213,41.0112 -76.3287,41.0077 -76.3351,41.0047 -76.3405,41.0011 -76.3452,40.9981 -76.3519,40.9936 -76.3575,40.9912 -76.365,40.988 -76.3713,40.9852 -76.3782,40.9814 -76.3861,40.9772 -76.3931,40.9733 -76.4003,40.9695 -76.4084,40.9649 -76.4153,40.961 -76.4211,40.9577 -76.4269,40.9543 -76.4349,40.9497 -76.4414,40.946 -76.4496,40.9423 -76.4578,40.9403 -76.4661,40.9382 -76.4743,40.9354 -76.4822,40.9325 -76.4903,40.9297 -76.498,40.927 -76.5035,40.9246 -76.511,40.921 -76.5165,40.9183 -76.5293,40.912 -76.5379,40.9078 -76.5431,40.9052 -76.5502,40.9018 -76.5588,40.9006 -76.5668,40.8994 -76.5735,40.8985 -76.5825,40.8972 -76.5885,40.8963 -76.5957,40.8953 -76.6029,40.8943 -76.6128,40.8929 -76.6213,40.8917 -76.6272,40.8889 -76.6328,40.8823 -76.6393,40.8747 -76.6464,40.8693 -76.6538,40.8663 -76.6617,40.8631 -76.6677,40.8606 -76.678,40.8614 -76.6856,40.86 -76.6915,40.8557 -76.6983,40.8519 -76.7057,40.8494 -76.7137,40.8491 -76.7213,40.8487 -76.7286,40.8484 -76.7354,40.8451 -76.7417,40.8419 -76.7482,40.8388 -76.7569,40.8344 -76.7615,40.8322 -76.7673,40.8302 -76.7725,40.8284 -76.7796,40.826 -76.7895,40.8226 -76.7977,40.8198 -76.8039,40.8177 -76.809,40.8195 -76.8164,40.8257 -76.8241,40.8311 -76.8295,40.8349</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 78.48km --- Imagery, OpenStreetMap, http://www.pjm.com/markets-and-operations/transmission-service/transmission-facilities.aspx</description></Placemark>
<Placemark>
<LineString><coordinates>-76.1497,41.0878 -76.1491,41.0832 -76.1488,41.0774 -76.1486,41.072 -76.1392,41.0653 -76.1332,41.0658 -76.1248,41.0714 -76.1153,41.0732 -76.1098,41.0756 -76.1032,41.0784 -76.0974,41.0825 -76.0919,41.0849 -76.084,41.087 -76.0763,41.0833 -76.0663,41.0783 -76.0589,41.0774 -76.052,41.0763 -76.0407,41.0742 -76.033,41.0755 -76.0247,41.0791 -76.0189,41.0819 -76.0117,41.0856 -76.0025,41.0872 -75.9912,41.0857 -75.9807,41.0864 -75.9735,41.0895 -75.9664,41.0947 -75.9606,41.0989 -75.9525,41.0999 -75.9434,41.1018 -75.9335,41.1019 -75.9212,41.102 -75.9127,41.1026 -75.9038,41.1037 -75.8939,41.1051 -75.8836,41.1065 -75.8736,41.1078 -75.8652,41.1089 -75.8536,41.1105 -75.8423,41.112 -75.8367,41.1098 -75.8333,41.1024 -75.83,41.0952 -75.8256,41.0856 -75.8219,41.0776 -75.8183,41.0685 -75.8154,41.0613 -75.8122,41.0532 -75.8093,41.046 -75.8075,41.0406 -75.8067,41.0334 -75.8028,41.0288 -75.7947,41.0258 -75.7861,41.0225 -75.7778,41.0194 -75.7688,41.016 -75.7598,41.0108 -75.7525,41.0066 -75.745,41.0023 -75.7364,41.0021 -75.7309,41.0011 -75.7289,40.9947 -75.724,40.9907 -75.7163,40.9843 -75.7063,40.9841 -75.6966,40.984 -75.6918,40.9807 -75.6829,40.9745 -75.6739,40.97 -75.6657,40.9664 -75.6576,40.9622 -75.6516,40.9583 -75.6445,40.9538 -75.6374,40.9493 -75.6334,40.9429 -75.6316,40.937 -75.6274,40.9317 -75.6229,40.926 -75.619,40.9212 -75.6154,40.9164 -75.6105,40.9106 -75.6037,40.9025 -75.5999,40.8947 -75.598,40.8872 -75.5963,40.8804 -75.5938,40.8704 -75.5924,40.866 -75.5894,40.8593 -75.5863,40.8526 -75.5812,40.8416 -75.5716,40.8399 -75.5632,40.8384 -75.562,40.8318 -75.5582,40.8268 -75.5553,40.8212 -75.5551,40.8144 -75.5522,40.8071 -75.5486,40.8028 -75.543,40.7979 -75.5383,40.7913 -75.5348,40.7844 -75.531,40.7776 -75.5336,40.7747 -75.5308,40.7697 -75.5255,40.7652 -75.5207,40.7585 -75.5198,40.7535 -75.5161,40.747 -75.5135,40.7442 -75.5102,40.7395 -75.5096,40.7336 -75.5121,40.726 -75.5139,40.7203 -75.517,40.7162 -75.5249,40.7143 -75.5328,40.7148 -75.5403,40.7119 -75.5462,40.7069 -75.5517,40.7022 -75.5575,40.6974 -75.5634,40.6926 -75.5689,40.6878 -75.5735,40.6834 -75.5788,40.6791 -75.5814,40.6746 -75.5839,40.669 -75.5826,40.6627 -75.5804,40.6556 -75.5782,40.6482 -75.5758,40.6423 -75.5731,40.6357 -75.5709,40.6296 -75.5665,40.6182 -75.5635,40.6121 -75.5618,40.6071 -75.5595,40.6006 -75.5571,40.5957 -75.5551,40.5926 -75.5555,40.5887 -75.5556,40.5836 -75.5576,40.5789 -75.5608,40.5737</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 110.87km --- Imagery, OpenStreetMap, http://www.pjm.com/markets-and-operations/transmission-service/transmission-facilities.aspx</description></Placemark>
<Placemark>
<LineString><coordinates>-77.1709,40.4291 -77.1739,40.4321 -77.1756,40.4366 -77.1783,40.4438 -77.1772,40.4465 -77.1712,40.4513 -77.1649,40.4564 -77.1651,40.4633 -77.1657,40.4699 -77.166,40.4753 -77.1666,40.484 -77.1621,40.491 -77.1568,40.4993 -77.1536,40.5042 -77.1502,40.5096 -77.1459,40.5142 -77.1393,40.5184 -77.1293,40.5247 -77.1213,40.529 -77.1134,40.5324 -77.1088,40.5355 -77.103,40.5395 -77.0987,40.5426 -77.0934,40.5462 -77.0895,40.551 -77.0852,40.5561 -77.0812,40.561 -77.0775,40.5655 -77.0728,40.5711 -77.0679,40.5771 -77.0626,40.5835 -77.0582,40.5894 -77.0543,40.5952 -77.0495,40.6023 -77.0463,40.607 -77.0421,40.6133 -77.0364,40.6214 -77.0326,40.6267 -77.0286,40.6323 -77.0253,40.6371 -77.0214,40.6424 -77.0177,40.6476 -77.0152,40.6524 -77.0133,40.6589 -77.0102,40.6689 -77.0079,40.6764 -77.0048,40.6824 -77.0011,40.6874 -76.9976,40.6923 -76.994,40.6972 -76.9888,40.7044 -76.9831,40.7091 -76.9751,40.7158 -76.9677,40.722 -76.9605,40.7279 -76.9553,40.7323 -76.9526,40.7391 -76.9516,40.7496 -76.951,40.7561 -76.9504,40.7633 -76.9498,40.769 -76.9494,40.7741 -76.9451,40.783 -76.9432,40.7869 -76.9399,40.7939 -76.9374,40.7991 -76.9347,40.8048 -76.9316,40.8111 -76.9283,40.8181 -76.9247,40.8251 -76.9215,40.8306 -76.9184,40.8361 -76.9159,40.8405 -76.9114,40.8436 -76.9026,40.8458 -76.8955,40.8476 -76.8875,40.8497 -76.8735,40.8518 -76.8644,40.8503 -76.8586,40.8462 -76.8502,40.8432 -76.8429,40.8427 -76.8375,40.8395 -76.8321,40.8363 -76.8299,40.8353</coordinates></LineString>
<Style><LineStyle><color>5a000000</color><width>2</width></LineStyle></Style><name>NOT AVAILABLE</name><description>500kV --- AC --- 61.1km --- Imagery, OpenStreetMap, http://www.pjm.com/markets-and-operations/transmission-service/transmission-facilities.aspx</description></Placemark>