forked from Noblis/OSAT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDC MAG vs. households.kml
8620 lines (8619 loc) · 655 KB
/
DC MAG vs. households.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" xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:kml="http://www.opengis.net/kml/2.2" xmlns:atom="http://www.w3.org/2005/Atom">
<Document xmlns="">
<name>DC MAG vs. households.kml</name>
<Placemark id="0">
<Snippet maxLines="0" />
<name>1</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0497994519686,38.8991117518154,770.9165996964015 -77.049721430431,38.8980867595636,770.9165996964015 -77.0496991658959,38.897021755235,770.9165996964015 -77.0496994921606,38.8968447497375,770.9165996964015 -77.04961745972,38.8957487998065,770.9165996964015 -77.0495993005143,38.8955118154039,770.9165996964015 -77.0495850015478,38.8951730618228,770.9165996964015 -77.046110503354,38.8951239480353,770.9165996964015 -77.0461442999134,38.8957627450146,770.9165996964015 -77.0461991267096,38.8970117962695,770.9165996964015 -77.0462990942013,38.8981117679647,770.9165996964015 -77.0461992372625,38.8992117374789,770.9165996964015 -77.0468993482788,38.8992117107457,770.9165996964015 -77.0472994759621,38.8992117205849,770.9165996964015 -77.0483992881349,38.8992117115223,770.9165996964015 -77.0497994519686,38.8991117518154,770.9165996964015</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ff83</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ff83</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="1">
<Snippet maxLines="0" />
<name>2</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0461992372625,38.8992117374789,1997.5886239842844 -77.0462990942013,38.8981117679647,1997.5886239842844 -77.0461991267096,38.8970117962695,1997.5886239842844 -77.0461442999134,38.8957627450146,1997.5886239842844 -77.046110503354,38.8951239480353,1997.5886239842844 -77.0444990911702,38.8951117901177,1997.5886239842844 -77.0426992598965,38.8951117682249,1997.5886239842844 -77.0426991809986,38.8957118065594,1997.5886239842844 -77.0426990714461,38.8970117497458,1997.5886239842844 -77.0427331218244,38.8981237657023,1997.5886239842844 -77.0427741206985,38.8991137696461,1997.5886239842844 -77.0446992858897,38.899211726476,1997.5886239842844 -77.0461992372625,38.8992117374789,1997.5886239842844</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ffd3</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ffd3</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="2">
<Snippet maxLines="0" />
<name>3</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0427540178062,38.8999827144196,3359.7638181980533 -77.0427741206985,38.8991137696461,3359.7638181980533 -77.0427331218244,38.8981237657023,3359.7638181980533 -77.0426990714461,38.8970117497458,3359.7638181980533 -77.041213268254,38.8970377590341,3359.7638181980533 -77.0390989096625,38.8970118030627,3359.7638181980533 -77.0390990744692,38.8981117421729,3359.7638181980533 -77.0390989652803,38.8987117711754,3359.7638181980533 -77.0376372434473,38.8987187733066,3359.7638181980533 -77.0376989789663,38.900011750373,3359.7638181980533 -77.0390992281872,38.9000117135149,3359.7638181980533 -77.0411991697417,38.9000116854657,3359.7638181980533 -77.0427540178062,38.8999827144196,3359.7638181980533</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ffe2</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ffe2</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="3">
<Snippet maxLines="0" />
<name>4</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0426990714461,38.8970117497458,1847.1287614965622 -77.0426991809986,38.8957118065594,1847.1287614965622 -77.0426992598965,38.8951117682249,1847.1287614965622 -77.0426924068269,38.8931758452387,1847.1287614965622 -77.0427132069163,38.8919908674605,1847.1287614965622 -77.0412129803199,38.8919898659709,1847.1287614965622 -77.0402059307254,38.8919658492893,1847.1287614965622 -77.0391369763848,38.8919518710013,1847.1287614965622 -77.0391161459348,38.8932108158684,1847.1287614965622 -77.0390990724592,38.8941118567146,1847.1287614965622 -77.0390991709458,38.8951118305652,1847.1287614965622 -77.0390989092268,38.8962117611819,1847.1287614965622 -77.0390990188493,38.8964117738782,1847.1287614965622 -77.0390989096625,38.8970118030627,1847.1287614965622 -77.041213268254,38.8970377590341,1847.1287614965622 -77.0426990714461,38.8970117497458,1847.1287614965622</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ffb3</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ffb3</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="4">
<Snippet maxLines="0" />
<name>5</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.046110503354,38.8951239480353,759.531654612019 -77.0460993922006,38.8949118413967,759.531654612019 -77.0460991581958,38.8932117910726,759.531654612019 -77.0460623631316,38.8919968915697,759.531654612019 -77.0443772557429,38.8919948774315,759.531654612019 -77.0427132069163,38.8919908674605,759.531654612019 -77.0426924068269,38.8931758452387,759.531654612019 -77.0426992598965,38.8951117682249,759.531654612019 -77.0444990911702,38.8951117901177,759.531654612019 -77.046110503354,38.8951239480353,759.531654612019</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ffb1</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ffb1</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="5">
<Snippet maxLines="0" />
<name>6</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0495850015478,38.8951730618228,2513.2596660416107 -77.0495765130686,38.8949678187757,2513.2596660416107 -77.049515579257,38.8932238603636,2513.2596660416107 -77.0495762176665,38.8920048037778,2513.2596660416107 -77.0484053759585,38.8920098440612,2513.2596660416107 -77.0473772637796,38.892002887721,2513.2596660416107 -77.0460623631316,38.8919968915697,2513.2596660416107 -77.0460991581958,38.8932117910726,2513.2596660416107 -77.0460993922006,38.8949118413967,2513.2596660416107 -77.046110503354,38.8951239480353,2513.2596660416107 -77.0495850015478,38.8951730618228,2513.2596660416107</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ff7f</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ff7f</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="6">
<Snippet maxLines="0" />
<name>7</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.050501319254,38.9022126951285,2520.4031609965177 -77.0502133797058,38.9018816990815,2520.4031609965177 -77.0497204695191,38.9017526850201,2520.4031609965177 -77.0497836121281,38.900333706601,2520.4031609965177 -77.0497994519686,38.8991117518154,2520.4031609965177 -77.0483992881349,38.8992117115223,2520.4031609965177 -77.0472994759621,38.8992117205849,2520.4031609965177 -77.0468993482788,38.8992117107457,2520.4031609965177 -77.0461992372625,38.8992117374789,2520.4031609965177 -77.0446992858897,38.899211726476,2520.4031609965177 -77.0427741206985,38.8991137696461,2520.4031609965177 -77.0427540178062,38.8999827144196,2520.4031609965177 -77.0445990781855,38.9005116981137,2520.4031609965177 -77.0445994532841,38.9011116456201,2520.4031609965177 -77.0445992648839,38.9022116651558,2520.4031609965177 -77.0462991267958,38.9022116975052,2520.4031609965177 -77.0484992701875,38.9022116606582,2520.4031609965177 -77.0490992736669,38.9022116532603,2520.4031609965177 -77.0493714560315,38.9026516327694,2520.4031609965177 -77.0497993251619,38.9027116900421,2520.4031609965177 -77.0504395688774,38.9024686762258,2520.4031609965177 -77.050501319254,38.9022126951285,2520.4031609965177</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ffea</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ffea</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="7">
<Snippet maxLines="0" />
<name>8</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0445992648839,38.9022116651558,4639.342351995714 -77.0445994532841,38.9011116456201,4639.342351995714 -77.0445990781855,38.9005116981137,4639.342351995714 -77.0427540178062,38.8999827144196,4639.342351995714 -77.0411991697417,38.9000116854657,4639.342351995714 -77.0390992281872,38.9000117135149,4639.342351995714 -77.0376989789663,38.900011750373,4639.342351995714 -77.0381989809396,38.9011116886739,4639.342351995714 -77.0390989549721,38.9011117332569,4639.342351995714 -77.0390991746223,38.9023117093308,4639.342351995714 -77.0411921347055,38.9022826678541,4639.342351995714 -77.0428770217554,38.9022236334361,4639.342351995714 -77.0445992648839,38.9022116651558,4639.342351995714</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00f1ff</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00f1ff</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="8">
<Snippet maxLines="0" />
<name>9</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0446991539657,38.9053115815707,4934.904455754978 -77.0445990764779,38.9033116844739,4934.904455754978 -77.0445992648839,38.9022116651558,4934.904455754978 -77.0428770217554,38.9022236334361,4934.904455754978 -77.0411921347055,38.9022826678541,4934.904455754978 -77.0390991746223,38.9023117093308,4934.904455754978 -77.0396992973405,38.9033116505239,4934.904455754978 -77.0402991003035,38.9045116820892,4934.904455754978 -77.0407989908041,38.9053116303624,4934.904455754978 -77.041199152657,38.9053115800207,4934.904455754978 -77.0428990884359,38.9053116528334,4934.904455754978 -77.0446991539657,38.9053115815707,4934.904455754978</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00fcff</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00fcff</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="9">
<Snippet maxLines="0" />
<name>10</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0468994045029,38.9053115748495,2492.7221180462543 -77.0472993012024,38.9049116500275,2492.7221180462543 -77.0484993420125,38.9049115814219,2492.7221180462543 -77.049799546773,38.9049116470136,2492.7221180462543 -77.0497995736649,38.9037116623394,2492.7221180462543 -77.0498234746639,38.9033346255047,2492.7221180462543 -77.0497993251619,38.9027116900421,2492.7221180462543 -77.0493714560315,38.9026516327694,2492.7221180462543 -77.0490992736669,38.9022116532603,2492.7221180462543 -77.0484992701875,38.9022116606582,2492.7221180462543 -77.0462991267958,38.9022116975052,2492.7221180462543 -77.0445992648839,38.9022116651558,2492.7221180462543 -77.0445990764779,38.9033116844739,2492.7221180462543 -77.0446991539657,38.9053115815707,2492.7221180462543 -77.0463911893019,38.9053246506874,2492.7221180462543 -77.0468994045029,38.9053115748495,2492.7221180462543</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ffd2</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ffd2</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="10">
<Snippet maxLines="0" />
<name>11</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0485991897436,38.9109115223485,974.0597374765604 -77.0485993668382,38.9105114978267,974.0597374765604 -77.0485995617383,38.9095115265809,974.0597374765604 -77.0487994296501,38.9095115423666,974.0597374765604 -77.0499993316562,38.907311602299,974.0597374765604 -77.0498993457893,38.9069116203315,974.0597374765604 -77.049799546773,38.9049116470136,974.0597374765604 -77.0484993420125,38.9049115814219,974.0597374765604 -77.0472993012024,38.9049116500275,974.0597374765604 -77.0468994045029,38.9053115748495,974.0597374765604 -77.0467993828763,38.9055116273723,974.0597374765604 -77.0462994676694,38.9061116025082,974.0597374765604 -77.0463992427996,38.906911603415,974.0597374765604 -77.0463995029619,38.9073115379332,974.0597374765604 -77.0462991316852,38.9083115493024,974.0597374765604 -77.046499340399,38.9095115345096,974.0597374765604 -77.0464745358226,38.9105315050431,974.0597374765604 -77.0464992464444,38.9107115089166,974.0597374765604 -77.047299192702,38.9107115301422,974.0597374765604 -77.0485991897436,38.9109115223485,974.0597374765604</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ffe0</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ffe0</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="11">
<Snippet maxLines="0" />
<name>12</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0464745358226,38.9105315050431,2579.113760157157 -77.046499340399,38.9095115345096,2579.113760157157 -77.0462991316852,38.9083115493024,2579.113760157157 -77.0463995029619,38.9073115379332,2579.113760157157 -77.0463992427996,38.906911603415,2579.113760157157 -77.0462994676694,38.9061116025082,2579.113760157157 -77.0467993828763,38.9055116273723,2579.113760157157 -77.0468994045029,38.9053115748495,2579.113760157157 -77.0463911893019,38.9053246506874,2579.113760157157 -77.0446991539657,38.9053115815707,2579.113760157157 -77.0428990884359,38.9053116528334,2579.113760157157 -77.041199152657,38.9053115800207,2579.113760157157 -77.0407989908041,38.9053116303624,2579.113760157157 -77.0408992010333,38.9054116510762,2579.113760157157 -77.0413990465511,38.9061116310188,2579.113760157157 -77.0417992320911,38.9069116280925,2579.113760157157 -77.0428994294225,38.9088115400379,2579.113760157157 -77.0423992684295,38.9091115203279,2579.113760157157 -77.0424671454087,38.9094825223541,2579.113760157157 -77.0426993342276,38.9099115411734,2579.113760157157 -77.0431250771914,38.9100155572912,2579.113760157157 -77.0434992714619,38.9099115073397,2579.113760157157 -77.0438992860731,38.9096115600549,2579.113760157157 -77.044699407984,38.9099115678446,2579.113760157157 -77.0464745358226,38.9105315050431,2579.113760157157</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ffe5</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ffe5</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="12">
<Snippet maxLines="0" />
<name>13</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.036198875268,38.9023116981071,4300.696044289669 -77.0381991739216,38.9023116647533,4300.696044289669 -77.0390991746223,38.9023117093308,4300.696044289669 -77.0390989549721,38.9011117332569,4300.696044289669 -77.0381989809396,38.9011116886739,4300.696044289669 -77.0376989789663,38.900011750373,4300.696044289669 -77.0361981446805,38.900008702782,4300.696044289669 -77.0347812022285,38.9000077549529,4300.696044289669 -77.0331991207281,38.9000117375313,4300.696044289669 -77.0319649189726,38.9000527544891,4300.696044289669 -77.0319860390222,38.9011077175231,4300.696044289669 -77.0320059487981,38.9024187251685,4300.696044289669 -77.0331989234447,38.9024116900362,4300.696044289669 -77.0334989202432,38.9024116944846,4300.696044289669 -77.0342992114548,38.9024117145041,4300.696044289669 -77.036198875268,38.9023116981071,4300.696044289669</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00f1ff</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00f1ff</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="13">
<Snippet maxLines="0" />
<name>14</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0320059487981,38.9024187251685,1617.8672202875257 -77.0319860390222,38.9011077175231,1617.8672202875257 -77.0319649189726,38.9000527544891,1617.8672202875257 -77.0296840122677,38.900038762774,1617.8672202875257 -77.0296838395637,38.8996237296922,1617.8672202875257 -77.0280986820318,38.8996117622442,1617.8672202875257 -77.0269988753136,38.8996117603537,1617.8672202875257 -77.0270129037364,38.9007346940494,1617.8672202875257 -77.0270327278541,38.9008747153738,1617.8672202875257 -77.0269919720907,38.9011407235696,1617.8672202875257 -77.0269990473624,38.9024116658392,1617.8672202875257 -77.0279987599861,38.9024116917695,1617.8672202875257 -77.0296990530769,38.9024116953001,1617.8672202875257 -77.0320059487981,38.9024187251685,1617.8672202875257</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00f7ff</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00f7ff</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="14">
<Snippet maxLines="0" />
<name>15</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0319988549873,38.905211667818,2211.2237699794623 -77.032098950793,38.904111621554,2211.2237699794623 -77.0320991638947,38.9036116399,2211.2237699794623 -77.0320059487981,38.9024187251685,2211.2237699794623 -77.0296990530769,38.9024116953001,2211.2237699794623 -77.0279987599861,38.9024116917695,2211.2237699794623 -77.0269990473624,38.9024116658392,2211.2237699794623 -77.027198850094,38.9034116729217,2211.2237699794623 -77.0269987010718,38.9038116451786,2211.2237699794623 -77.0276989852125,38.9041116305445,2211.2237699794623 -77.0281988929722,38.9042116477961,2211.2237699794623 -77.0296986964065,38.9047116901069,2211.2237699794623 -77.0315987822598,38.9054116179527,2211.2237699794623 -77.0319988549873,38.905211667818,2211.2237699794623</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ffdd</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ffdd</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="15">
<Snippet maxLines="0" />
<name>17</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0407989908041,38.9053116303624,3664.701759085633 -77.0402991003035,38.9045116820892,3664.701759085633 -77.0396992973405,38.9033116505239,3664.701759085633 -77.0390991746223,38.9023117093308,3664.701759085633 -77.0381991739216,38.9023116647533,3664.701759085633 -77.036198875268,38.9023116981071,3664.701759085633 -77.0361989953634,38.903411627168,3664.701759085633 -77.0362990128112,38.9040116335315,3664.701759085633 -77.0361991341559,38.905411661442,3664.701759085633 -77.0381990165692,38.905311653573,3664.701759085633 -77.0407989908041,38.9053116303624,3664.701759085633</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00f4ff</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00f4ff</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="16">
<Snippet maxLines="0" />
<name>16</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0364990464067,38.9069115933986,5005.0 -77.0361991527492,38.9063115685429,5005.0 -77.0361991341559,38.905411661442,5005.0 -77.0362990128112,38.9040116335315,5005.0 -77.0361989953634,38.903411627168,5005.0 -77.036198875268,38.9023116981071,5005.0 -77.0342992114548,38.9024117145041,5005.0 -77.0334989202432,38.9024116944846,5005.0 -77.0331989234447,38.9024116900362,5005.0 -77.0320059487981,38.9024187251685,5005.0 -77.0320991638947,38.9036116399,5005.0 -77.032098950793,38.904111621554,5005.0 -77.0319988549873,38.905211667818,5005.0 -77.032099041162,38.9053115969925,5005.0 -77.0324988675733,38.905511588943,5005.0 -77.0323987714021,38.9056116634786,5005.0 -77.0342988962374,38.9063116373844,5005.0 -77.0350989522371,38.9066116300176,5005.0 -77.0354992591489,38.9069115681428,5005.0 -77.0358992047651,38.9073116327733,5005.0 -77.0360990158692,38.9072116145857,5005.0 -77.0364990464067,38.9069115933986,5005.0</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00fff1</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00fff1</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="17">
<Snippet maxLines="0" />
<name>19</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0296838395637,38.8996237296922,2891.1951959996427 -77.0296428259632,38.8981618002696,2891.1951959996427 -77.0295988655641,38.8970117587764,2891.1951959996427 -77.0295988472467,38.8959118374599,2891.1951959996427 -77.0281986785346,38.8959118415223,2891.1951959996427 -77.0269987776308,38.8959117826881,2891.1951959996427 -77.0261498090599,38.8959107686959,2891.1951959996427 -77.0240987501412,38.8959118043767,2891.1951959996427 -77.0240986836887,38.897011824784,2891.1951959996427 -77.0240946600988,38.8981027563549,2891.1951959996427 -77.0240947327244,38.8983177769244,2891.1951959996427 -77.0240988874461,38.8989117153255,2891.1951959996427 -77.024098674329,38.8996117189891,2891.1951959996427 -77.0260989087292,38.8996117216517,2891.1951959996427 -77.0269988753136,38.8996117603537,2891.1951959996427 -77.0280986820318,38.8996117622442,2891.1951959996427 -77.0296838395637,38.8996237296922,2891.1951959996427</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ebff</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ebff</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="18">
<Snippet maxLines="0" />
<name>18</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0423992684295,38.9091115203279,1745.1107241718012 -77.0428994294225,38.9088115400379,1745.1107241718012 -77.0417992320911,38.9069116280925,1745.1107241718012 -77.0413990465511,38.9061116310188,1745.1107241718012 -77.0408992010333,38.9054116510762,1745.1107241718012 -77.0407989908041,38.9053116303624,1745.1107241718012 -77.0381990165692,38.905311653573,1745.1107241718012 -77.0361991341559,38.905411661442,1745.1107241718012 -77.0361991527492,38.9063115685429,1745.1107241718012 -77.0364990464067,38.9069115933986,1745.1107241718012 -77.0372991591819,38.9073116266346,1745.1107241718012 -77.037399303321,38.9073115946213,1745.1107241718012 -77.0381989454583,38.9076115661122,1745.1107241718012 -77.0413992877485,38.9088115677366,1745.1107241718012 -77.0423992684295,38.9091115203279,1745.1107241718012</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00fff9</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00fff9</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="19">
<Snippet maxLines="0" />
<name>21</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0152984009652,38.899511777759,1718.09938387356 -77.0162985222968,38.8996117794307,1718.09938387356 -77.0190985783409,38.8996117786192,1718.09938387356 -77.019998544877,38.8996117181073,1718.09938387356 -77.0200044770924,38.8988547446078,1718.09938387356 -77.0199985509102,38.8981117630221,1718.09938387356 -77.0199635576249,38.8970187843733,1718.09938387356 -77.0190807421785,38.8970178238759,1718.09938387356 -77.0163067165154,38.8970298287931,1718.09938387356 -77.0152996189825,38.89702078551,1718.09938387356 -77.0148217596959,38.8970156853251,1718.09938387356 -77.0147998635816,38.8973250172745,1718.09938387356 -77.0147879694509,38.8992835176055,1718.09938387356 -77.0147287297495,38.8995218052077,1718.09938387356 -77.0152984009652,38.899511777759,1718.09938387356</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ffdd</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ffdd</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="20">
<Snippet maxLines="0" />
<name>20</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0269987010718,38.9038116451786,1240.1549245468345 -77.027198850094,38.9034116729217,1240.1549245468345 -77.0269990473624,38.9024116658392,1240.1549245468345 -77.0269919720907,38.9011407235696,1240.1549245468345 -77.0270327278541,38.9008747153738,1240.1549245468345 -77.0270129037364,38.9007346940494,1240.1549245468345 -77.0269988753136,38.8996117603537,1240.1549245468345 -77.0260989087292,38.8996117216517,1240.1549245468345 -77.024098674329,38.8996117189891,1240.1549245468345 -77.022898722776,38.8996117801892,1240.1549245468345 -77.0219987562197,38.8996117909761,1240.1549245468345 -77.0219578140897,38.9007167008688,1240.1549245468345 -77.0219986201929,38.9020117525422,1240.1549245468345 -77.021977651593,38.9023916928762,1240.1549245468345 -77.0219988471575,38.9027476990595,1240.1549245468345 -77.0229436426334,38.90271370898,1240.1549245468345 -77.0240988569632,38.9027116657196,1240.1549245468345 -77.026098973259,38.9034116625623,1240.1549245468345 -77.0265988853984,38.9035116866702,1240.1549245468345 -77.0269987010718,38.9038116451786,1240.1549245468345</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ffc2</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ffc2</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="21">
<Snippet maxLines="0" />
<name>23</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.024098674329,38.8996117189891,1887.9806232699348 -77.0240988874461,38.8989117153255,1887.9806232699348 -77.0240947327244,38.8983177769244,1887.9806232699348 -77.0240946600988,38.8981027563549,1887.9806232699348 -77.0240986836887,38.897011824784,1887.9806232699348 -77.0240987501412,38.8959118043767,1887.9806232699348 -77.0230986905927,38.8959118442524,1887.9806232699348 -77.0220986310126,38.8959117764747,1887.9806232699348 -77.0198986821435,38.8959118296123,1887.9806232699348 -77.0199635576249,38.8970187843733,1887.9806232699348 -77.0199985509102,38.8981117630221,1887.9806232699348 -77.0200044770924,38.8988547446078,1887.9806232699348 -77.019998544877,38.8996117181073,1887.9806232699348 -77.0219987562197,38.8996117909761,1887.9806232699348 -77.022898722776,38.8996117801892,1887.9806232699348 -77.024098674329,38.8996117189891,1887.9806232699348</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ecff</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ecff</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="22">
<Snippet maxLines="0" />
<name>22</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0219986201929,38.9020117525422,271.5416555049558 -77.0219578140897,38.9007167008688,271.5416555049558 -77.0219987562197,38.8996117909761,271.5416555049558 -77.019998544877,38.8996117181073,271.5416555049558 -77.0190985783409,38.8996117786192,271.5416555049558 -77.0162985222968,38.8996117794307,271.5416555049558 -77.0152984009652,38.899511777759,271.5416555049558 -77.0147287297495,38.8995218052077,271.5416555049558 -77.0152984438596,38.8997117903531,271.5416555049558 -77.0162986365327,38.9001117613465,271.5416555049558 -77.0182985892225,38.9007117551562,271.5416555049558 -77.0190585478638,38.9010177015966,271.5416555049558 -77.0199216966262,38.9012566934374,271.5416555049558 -77.0219986201929,38.9020117525422,271.5416555049558</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ffba</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ffba</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="23">
<Snippet maxLines="0" />
<name>25</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0240987501412,38.8959118043767,1666.7555138851683 -77.0240987490574,38.8946118610732,1666.7555138851683 -77.0240989168418,38.8938118278703,1666.7555138851683 -77.0230878163981,38.8935138550755,1666.7555138851683 -77.022059597924,38.8932248941267,1666.7555138851683 -77.0216985578784,38.8931118616685,1666.7555138851683 -77.0199987728102,38.8926118491773,1666.7555138851683 -77.0200047204082,38.8934328259471,1666.7555138851683 -77.0199988113216,38.8943118095083,1666.7555138851683 -77.0199984458719,38.8946118692864,1666.7555138851683 -77.0198986821435,38.8959118296123,1666.7555138851683 -77.0220986310126,38.8959117764747,1666.7555138851683 -77.0230986905927,38.8959118442524,1666.7555138851683 -77.0240987501412,38.8959118043767,1666.7555138851683</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00fff5</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00fff5</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="24">
<Snippet maxLines="0" />
<name>24</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0295988472467,38.8959118374599,2840.7442628806143 -77.0296016761185,38.8953118075012,2840.7442628806143 -77.0281987213123,38.8949118678146,2840.7442628806143 -77.0270127923296,38.8946258171192,2840.7442628806143 -77.0261698947415,38.8943838640708,2840.7442628806143 -77.0240989168418,38.8938118278703,2840.7442628806143 -77.0240987490574,38.8946118610732,2840.7442628806143 -77.0240987501412,38.8959118043767,2840.7442628806143 -77.0261498090599,38.8959107686959,2840.7442628806143 -77.0269987776308,38.8959117826881,2840.7442628806143 -77.0281986785346,38.8959118415223,2840.7442628806143 -77.0295988472467,38.8959118374599,2840.7442628806143</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00fff1</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00fff1</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="25">
<Snippet maxLines="0" />
<name>27</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0151985264674,38.8946118176875,2300.740691133137 -77.016298705643,38.8946118495323,2300.740691133137 -77.0189984426918,38.8947118308965,2300.740691133137 -77.0199988113216,38.8943118095083,2300.740691133137 -77.0200047204082,38.8934328259471,2300.740691133137 -77.0199987728102,38.8926118491773,2300.740691133137 -77.01770345024,38.8919258628008,2300.740691133137 -77.0152985233646,38.8919118702085,2300.740691133137 -77.0143995415272,38.891911894404,2300.740691133137 -77.0148735262258,38.8946170123065,2300.740691133137 -77.0151985264674,38.8946118176875,2300.740691133137</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ffca</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ffca</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="26">
<Snippet maxLines="0" />
<name>26</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0199635576249,38.8970187843733,1873.023930708099 -77.0198986821435,38.8959118296123,1873.023930708099 -77.0199984458719,38.8946118692864,1873.023930708099 -77.0199988113216,38.8943118095083,1873.023930708099 -77.0189984426918,38.8947118308965,1873.023930708099 -77.016298705643,38.8946118495323,1873.023930708099 -77.0151985264674,38.8946118176875,1873.023930708099 -77.0148735262258,38.8946170123065,1873.023930708099 -77.014892711246,38.8960145137304,1873.023930708099 -77.0148217596959,38.8970156853251,1873.023930708099 -77.0152996189825,38.89702078551,1873.023930708099 -77.0163067165154,38.8970298287931,1873.023930708099 -77.0190807421785,38.8970178238759,1873.023930708099 -77.0199635576249,38.8970187843733,1873.023930708099</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00e6ff</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00e6ff</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="27">
<Snippet maxLines="0" />
<name>29</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0281987213123,38.8949118678146,1328.5556746138047 -77.0281637366709,38.8919358983508,1328.5556746138047 -77.0261988541435,38.8919119068493,1328.5556746138047 -77.0240987245917,38.8919118365126,1328.5556746138047 -77.0240989168418,38.8938118278703,1328.5556746138047 -77.0261698947415,38.8943838640708,1328.5556746138047 -77.0270127923296,38.8946258171192,1328.5556746138047 -77.0281987213123,38.8949118678146,1328.5556746138047</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ffd1</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ffd1</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="28">
<Snippet maxLines="0" />
<name>28</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0240989168418,38.8938118278703,187.6055897848022 -77.0240987245917,38.8919118365126,187.6055897848022 -77.0220398581506,38.8919388538549,187.6055897848022 -77.0200047333358,38.8919579214941,187.6055897848022 -77.01770345024,38.8919258628008,187.6055897848022 -77.0199987728102,38.8926118491773,187.6055897848022 -77.0216985578784,38.8931118616685,187.6055897848022 -77.022059597924,38.8932248941267,187.6055897848022 -77.0230878163981,38.8935138550755,187.6055897848022 -77.0240989168418,38.8938118278703,187.6055897848022</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00fff1</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00fff1</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="29">
<Snippet maxLines="0" />
<name>31</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0347812022285,38.9000077549529,2043.3516385391554 -77.0347599290768,38.898722754744,2043.3516385391554 -77.0331980981245,38.8987557201964,2043.3516385391554 -77.0331991706716,38.8982117229572,2043.3516385391554 -77.0318990881858,38.8982117428738,2043.3516385391554 -77.0296428259632,38.8981618002696,2043.3516385391554 -77.0296838395637,38.8996237296922,2043.3516385391554 -77.0296840122677,38.900038762774,2043.3516385391554 -77.0319649189726,38.9000527544891,2043.3516385391554 -77.0331991207281,38.9000117375313,2043.3516385391554 -77.0347812022285,38.9000077549529,2043.3516385391554</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00feff</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00feff</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="30">
<Snippet maxLines="0" />
<name>30</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0376989789663,38.900011750373,588.3110099115992 -77.0376372434473,38.8987187733066,588.3110099115992 -77.0390989652803,38.8987117711754,588.3110099115992 -77.0390990744692,38.8981117421729,588.3110099115992 -77.0390989096625,38.8970118030627,588.3110099115992 -77.0390990188493,38.8964117738782,588.3110099115992 -77.0390989092268,38.8962117611819,588.3110099115992 -77.0390991709458,38.8951118305652,588.3110099115992 -77.0381298776447,38.895111808656,588.3110099115992 -77.0376568674402,38.8951218262558,588.3110099115992 -77.0368992580996,38.8951117804676,588.3110099115992 -77.0365992407133,38.8950118189169,588.3110099115992 -77.0357990209862,38.8950118146569,588.3110099115992 -77.0353989665031,38.8951118033289,588.3110099115992 -77.0346988957635,38.8951118422163,588.3110099115992 -77.033239003958,38.8951037718494,588.3110099115992 -77.0330751885446,38.8951048543091,588.3110099115992 -77.0330991356099,38.8956117843436,588.3110099115992 -77.0331161570068,38.896321809883,588.3110099115992 -77.0331569200408,38.8970937791119,588.3110099115992 -77.0331991706716,38.8982117229572,588.3110099115992 -77.0331980981245,38.8987557201964,588.3110099115992 -77.0347599290768,38.898722754744,588.3110099115992 -77.0347812022285,38.9000077549529,588.3110099115992 -77.0361981446805,38.900008702782,588.3110099115992 -77.0376989789663,38.900011750373,588.3110099115992</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ffed</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ffed</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="31">
<Snippet maxLines="0" />
<name>34</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0331161570068,38.896321809883,848.3788731136708 -77.0330991356099,38.8956117843436,848.3788731136708 -77.0330751885446,38.8951048543091,848.3788731136708 -77.0330341761223,38.8919228756036,848.3788731136708 -77.0318989110122,38.8919118586095,848.3788731136708 -77.0318987479204,38.8945118363583,848.3788731136708 -77.0318988017059,38.8956117759646,848.3788731136708 -77.0318831593137,38.8959737814137,848.3788731136708 -77.0331161570068,38.896321809883,848.3788731136708</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ffe9</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ffe9</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="32">
<Snippet maxLines="0" />
<name>35</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0390991709458,38.8951118305652,5.0 -77.0390990724592,38.8941118567146,5.0 -77.0391161459348,38.8932108158684,5.0 -77.0391369763848,38.8919518710013,5.0 -77.0361979983152,38.8919278565243,5.0 -77.0336499154487,38.891938833843,5.0 -77.0330341761223,38.8919228756036,5.0 -77.0330751885446,38.8951048543091,5.0 -77.033239003958,38.8951037718494,5.0 -77.0346988957635,38.8951118422163,5.0 -77.0353989665031,38.8951118033289,5.0 -77.0357990209862,38.8950118146569,5.0 -77.0365992407133,38.8950118189169,5.0 -77.0368992580996,38.8951117804676,5.0 -77.0376568674402,38.8951218262558,5.0 -77.0381298776447,38.895111808656,5.0 -77.0390991709458,38.8951118305652,5.0</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ff94</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ff94</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="33">
<Snippet maxLines="0" />
<name>32</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0331991706716,38.8982117229572,1965.666130904545 -77.0331569200408,38.8970937791119,1965.666130904545 -77.0331161570068,38.896321809883,1965.666130904545 -77.0318831593137,38.8959737814137,1965.666130904545 -77.0308759444158,38.8956637858413,1965.666130904545 -77.0296016761185,38.8953118075012,1965.666130904545 -77.0295988472467,38.8959118374599,1965.666130904545 -77.0295988655641,38.8970117587764,1965.666130904545 -77.0296428259632,38.8981618002696,1965.666130904545 -77.0318990881858,38.8982117428738,1965.666130904545 -77.0331991706716,38.8982117229572,1965.666130904545</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00fffb</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00fffb</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="34">
<Snippet maxLines="0" />
<name>33</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0318831593137,38.8959737814137,1606.4822752031432 -77.0318988017059,38.8956117759646,1606.4822752031432 -77.0318987479204,38.8945118363583,1606.4822752031432 -77.0318989110122,38.8919118586095,1606.4822752031432 -77.0281637366709,38.8919358983508,1606.4822752031432 -77.0281987213123,38.8949118678146,1606.4822752031432 -77.0296016761185,38.8953118075012,1606.4822752031432 -77.0308759444158,38.8956637858413,1606.4822752031432 -77.0318831593137,38.8959737814137,1606.4822752031432</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ffe0</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ffe0</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="35">
<Snippet maxLines="0" />
<name>38</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0554996891017,38.9048115989004,948.6110366997054 -77.0556995915092,38.9043116032486,948.6110366997054 -77.0564876590535,38.9032616615454,948.6110366997054 -77.0565995415412,38.9031116272929,948.6110366997054 -77.05749971468,38.9022116853649,948.6110366997054 -77.0571997071451,38.9022116704858,948.6110366997054 -77.0565997035828,38.9022116113857,948.6110366997054 -77.0558995631234,38.9022116872441,948.6110366997054 -77.0548994150656,38.9022116570452,948.6110366997054 -77.0545994075246,38.9022116264803,948.6110366997054 -77.0528995686132,38.9022116338158,948.6110366997054 -77.0521994166218,38.9022116875046,948.6110366997054 -77.051099558151,38.9022116692844,948.6110366997054 -77.050501319254,38.9022126951285,948.6110366997054 -77.0504395688774,38.9024686762258,948.6110366997054 -77.0497993251619,38.9027116900421,948.6110366997054 -77.0498234746639,38.9033346255047,948.6110366997054 -77.0497995736649,38.9037116623394,948.6110366997054 -77.049799546773,38.9049116470136,948.6110366997054 -77.0510993018277,38.904911590232,948.6110366997054 -77.0530995876015,38.9048115973537,948.6110366997054 -77.0545996567933,38.9048115905832,948.6110366997054 -77.0554996891017,38.9048115989004,948.6110366997054</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ffcb</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ffcb</color>
<fill>1</fill>
</PolyStyle>
</Style>
</Placemark>
<Placemark id="36">
<Snippet maxLines="0" />
<name>39</name>
<description />
<visibility>1</visibility>
<open>0</open>
<Polygon>
<extrude>1</extrude>
<tesselate>1</tesselate>
<altitudeMode>relativeToGround</altitudeMode>
<outerBoundaryIs>
<LinearRing>
<coordinates>-77.0566997283583,38.9048116262314,1273.1935887132781 -77.0570994493455,38.9048115937092,1273.1935887132781 -77.0576994747712,38.9048116412342,1273.1935887132781 -77.0587998114458,38.9048116151164,1273.1935887132781 -77.0600995648153,38.9048116383739,1273.1935887132781 -77.0608998830026,38.9048115662578,1273.1935887132781 -77.0623998417566,38.9047115837859,1273.1935887132781 -77.062399606436,38.9044425854781,1273.1935887132781 -77.0623997550198,38.9041116365026,1273.1935887132781 -77.0623994925377,38.9038115863826,1273.1935887132781 -77.0623997672623,38.9036116548147,1273.1935887132781 -77.0623997678971,38.9031115830045,1273.1935887132781 -77.062399844719,38.902698603897,1273.1935887132781 -77.0623998568427,38.9022116661829,1273.1935887132781 -77.0623997815585,38.9016116285398,1273.1935887132781 -77.0570996793201,38.8996116548472,1273.1935887132781 -77.057799566432,38.9004117034752,1273.1935887132781 -77.0581993958012,38.9011116706733,1273.1935887132781 -77.0579997953371,38.9014116581842,1273.1935887132781 -77.05749971468,38.9022116853649,1273.1935887132781 -77.0565995415412,38.9031116272929,1273.1935887132781 -77.0564876590535,38.9032616615454,1273.1935887132781 -77.0556995915092,38.9043116032486,1273.1935887132781 -77.0554996891017,38.9048115989004,1273.1935887132781 -77.0566997283583,38.9048116262314,1273.1935887132781</coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Style>
<LineStyle>
<color>ff00ff9d</color>
<width>1</width>
</LineStyle>
<PolyStyle>
<color>ff00ff9d</color>
<fill>1</fill>