-
Notifications
You must be signed in to change notification settings - Fork 0
/
CaryDevelopment-20140312.kml
9718 lines (9718 loc) · 734 KB
/
CaryDevelopment-20140312.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"?>
<!-- Generated by FME 2014 (Build 14235) -->
<kml xmlns:gx="http://www.google.com/kml/ext/2.2" xmlns:atom="http://www.w3.org/2005/Atom" xmlns="http://www.opengis.net/kml/2.2">
<Document>
<name>CaryDevelopment</name>
<visibility>1</visibility>
<Schema name="KML_GIS_DataRequest" id="kml_schema_ft_KML_GIS_DataRequest">
<SimpleField type="xsd:string" name="ProjectNumber">
<displayName>ProjectNumber</displayName>
</SimpleField>
<SimpleField type="xsd:string" name="ProjectName">
<displayName>ProjectName</displayName>
</SimpleField>
<SimpleField type="xsd:string" name="Status">
<displayName>Status</displayName>
</SimpleField>
<SimpleField type="xsd:string" name="Use">
<displayName>Use</displayName>
</SimpleField>
<SimpleField type="xsd:short" name="Units">
<displayName>Units</displayName>
</SimpleField>
<SimpleField type="xsd:short" name="Lots">
<displayName>Lots</displayName>
</SimpleField>
<SimpleField type="xsd:int" name="Building_Square__Footage">
<displayName>Building_Square__Footage</displayName>
</SimpleField>
<SimpleField type="xsd:short" name="Buildings">
<displayName>Buildings</displayName>
</SimpleField>
<SimpleField type="xsd:string" name="Comments">
<displayName>Comments</displayName>
</SimpleField>
<SimpleField type="xsd:string" name="Submittal_Date">
<displayName>Submittal_Date</displayName>
</SimpleField>
<SimpleField type="xsd:string" name="Approval_Date">
<displayName>Approval_Date</displayName>
</SimpleField>
<SimpleField type="xsd:string" name="WebLink">
<displayName>WebLink</displayName>
</SimpleField>
<SimpleField type="xsd:int" name="Index">
<displayName>Index</displayName>
</SimpleField>
<SimpleField type="xsd:string" name="ExtWebLink">
<displayName>ExtWebLink</displayName>
</SimpleField>
</Schema>
<Folder id="kml_ft_KML_GIS_DataRequest">
<name>KML_GIS_DataRequest</name>
<Placemark id="kml_1">
<name>kml_1</name>
<snippet> </snippet>
<description><![CDATA[<center><table><tr><th colspan='2' align='center'><em>Attributes</em></th></tr><tr bgcolor="#E3E3F3">
<th>ProjectNumber</th>
<td>02-SP-005</td>
</tr><tr bgcolor="">
<th>ProjectName</th>
<td>MacGregor Ridge</td>
</tr><tr bgcolor="#E3E3F3">
<th>Status</th>
<td>Active</td>
</tr><tr bgcolor="">
<th>Use</th>
<td>Residential</td>
</tr><tr bgcolor="#E3E3F3">
<th>Units</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Lots</th>
<td>28</td>
</tr><tr bgcolor="#E3E3F3">
<th>Building_Square__Footage</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Buildings</th>
<td>0</td>
</tr><tr bgcolor="#E3E3F3">
<th>Comments</th>
<td>28 single family units</td>
</tr><tr bgcolor="">
<th>Submittal_Date</th>
<td>20020107</td>
</tr><tr bgcolor="#E3E3F3">
<th>Approval_Date</th>
<td>20020509</td>
</tr><tr bgcolor="">
<th>WebLink</th>
<td>MacGregorRidge_02-SP-005</td>
</tr><tr bgcolor="#E3E3F3">
<th>Index</th>
<td>0</td>
</tr><tr bgcolor="">
<th>ExtWebLink</th>
<td>http://sitesubplans.townofcary.org/MacGregorRidge_02-SP-005/planindex.htm</td>
</tr></table></center>]]></description>
<Style>
<LineStyle>
<color>ff70dcff</color>
</LineStyle>
</Style>
<ExtendedData>
<SchemaData schemaUrl="#kml_schema_ft_KML_GIS_DataRequest">
<SimpleData name="ProjectNumber">02-SP-005</SimpleData>
<SimpleData name="ProjectName">MacGregor Ridge</SimpleData>
<SimpleData name="Status">Active</SimpleData>
<SimpleData name="Use">Residential</SimpleData>
<SimpleData name="Units">0</SimpleData>
<SimpleData name="Lots">28</SimpleData>
<SimpleData name="Building_Square__Footage">0</SimpleData>
<SimpleData name="Buildings">0</SimpleData>
<SimpleData name="Comments">28 single family units</SimpleData>
<SimpleData name="Submittal_Date">20020107</SimpleData>
<SimpleData name="Approval_Date">20020509</SimpleData>
<SimpleData name="WebLink">MacGregorRidge_02-SP-005</SimpleData>
<SimpleData name="Index">0</SimpleData>
<SimpleData name="ExtWebLink">http://sitesubplans.townofcary.org/MacGregorRidge_02-SP-005/planindex.htm</SimpleData>
</SchemaData>
</ExtendedData>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>-78.7974302256998,35.7408520117006,0 -78.7969128054892,35.7408569183856,0 -78.7966776855675,35.7407988401668,0 -78.7964605723971,35.7406146038157,0 -78.7959309523147,35.7401969371032,0 -78.7958128905841,35.739315587683,0 -78.7951295826797,35.7388219467563,0 -78.7946790556065,35.7382623558917,0 -78.795084098942,35.7382724121939,0 -78.797121347193,35.7388159078036,0 -78.7971814506225,35.7388311504761,0 -78.797181394606,35.7388535036589,0 -78.7971813711152,35.7388628775743,0 -78.7971893255871,35.7388650540442,0 -78.7975764509505,35.73896809067,0 -78.7973765146459,35.7393427162588,0 -78.7973738414745,35.7393506436167,0 -78.7973711737185,35.7393564077636,0 -78.7973693922054,35.739361452312,0 -78.7973667190327,35.7393693796697,0 -78.7973649357137,35.7393751452883,0 -78.7973631541999,35.7393801898366,0 -78.7973613726858,35.7393852343848,0 -78.7973595929769,35.7393895578627,0 -78.7973578150732,35.7393931602703,0 -78.7973560317531,35.7393989258888,0 -78.7973542502381,35.7394039704369,0 -78.7973524669175,35.7394097360553,0 -78.7973506799856,35.7394169438142,0 -78.7973489002754,35.7394212672919,0 -78.7973480050037,35.7394255922416,0 -78.7973453336324,35.7394327985284,0 -78.797343552116,35.7394378430763,0 -78.7973426550383,35.7394428890962,0 -78.7973417615716,35.7394464929756,0 -78.7973399782491,35.7394522585937,0 -78.7973381985376,35.7394565820712,0 -78.7973372996537,35.7394623491613,0 -78.7973355163306,35.7394681147793,0 -78.7973337348128,35.739473159327,0 -78.7973328359285,35.7394789264171,0 -78.7973310471876,35.7394868552458,0 -78.7973292638635,35.7394926208637,0 -78.7973274769277,35.7394998286221,0 -78.7973256917974,35.7395063153102,0 -78.7973247947178,35.7395113613298,0 -78.7973230005583,35.7395214533691,0 -78.7973212172328,35.7395272189869,0 -78.7973203183469,35.7395329860767,0 -78.7973194194609,35.7395387531666,0 -78.7973185223806,35.7395437991862,0 -78.7973176253001,35.7395488452057,0 -78.7973167264138,35.7395546122955,0 -78.7973158311388,35.7395589372448,0 -78.7973149358639,35.7395632621941,0 -78.797314038783,35.7395683082136,0 -78.7973131362845,35.7395755174439,0 -78.7973122355917,35.7395820056038,0 -78.7973113385104,35.7395870516233,0 -78.797310441429,35.7395920976427,0 -78.7973095479592,35.7395957015217,0 -78.7973095425416,35.7395978647324,0 -78.7973086436542,35.7396036318221,0 -78.7973077447665,35.7396093989117,0 -78.7973077321254,35.7396144464034,0 -78.7973068368494,35.7396187713525,0 -78.7973068260141,35.739623097774,0 -78.7973059307379,35.7396274227231,0 -78.7973050318498,35.7396331898127,0 -78.7973050174026,35.7396389583746,0 -78.7973041203203,35.7396440043939,0 -78.797304105873,35.7396497729558,0 -78.7973032105964,35.7396540979048,0 -78.7973031997609,35.7396584243262,0 -78.7973023008723,35.7396641914157,0 -78.7973022864249,35.7396699599775,0 -78.7973013821183,35.7396778902777,0 -78.7973013568352,35.7396879852609,0 -78.7973013423877,35.7396937538226,0 -78.7973004471105,35.7396980787716,0 -78.7973004362748,35.739702405193,0 -78.7973004236332,35.7397074526845,0 -78.7973004091857,35.7397132212462,0 -78.79730039835,35.7397175476675,0 -78.7973003820965,35.7397240372995,0 -78.797300365843,35.7397305269314,0 -78.7973003532014,35.7397355744229,0 -78.7973003405598,35.7397406219144,0 -78.7973003261123,35.7397463904761,0 -78.7973003116647,35.7397521590378,0 -78.7973002990231,35.7397572065293,0 -78.7973002845755,35.7397629750909,0 -78.7973002665161,35.739770185793,0 -78.7973002502626,35.7397766754248,0 -78.7973011220635,35.7397817243886,0 -78.7973011021982,35.7397896561608,0 -78.7973019703874,35.739796147265,0 -78.7973019577459,35.7398011947564,0 -78.7973019432985,35.7398069633179,0 -78.7973028150998,35.7398120122817,0 -78.7973028006524,35.7398177808432,0 -78.7973036706481,35.7398235508771,0 -78.7973045352261,35.7398314841216,0 -78.7973045153611,35.7398394158936,0 -78.7973053853571,35.7398451859275,0 -78.7973062517414,35.7398523981017,0 -78.7973071217376,35.7398581681355,0 -78.7973071072905,35.7398639366969,0 -78.797307977287,35.7398697067307,0 -78.7973088490894,35.7398747556943,0 -78.7973097208919,35.7398798046578,0 -78.7973105926945,35.7398848536214,0 -78.7973105836653,35.7398884589723,0 -78.797311455468,35.7398935079358,0 -78.7973123254651,35.7398992779695,0 -78.7973680075151,35.7399145131833,0 -78.7977851768314,35.7400305784138,0 -78.7978116921761,35.7400378331774,0 -78.7979469187077,35.740075553452,0 -78.7979504240879,35.7400885385851,0 -78.7979600647895,35.7401238871655,0 -78.797987236048,35.7402227192638,0 -78.7981353533753,35.7407659329069,0 -78.798157266892,35.7408452872602,0 -78.7978096655864,35.7408490369948,0 -78.7974302256998,35.7408520117006,0 </coordinates>
</LinearRing>
</outerBoundaryIs>
<innerBoundaryIs>
<LinearRing>
<coordinates>-78.7972910838536,35.7402583370329,0 -78.7973290230169,35.7402951749158,0 -78.7972901994059,35.7402583355605,0 -78.7972910838536,35.7402583370329,0 </coordinates>
</LinearRing>
</innerBoundaryIs>
<innerBoundaryIs>
<LinearRing>
<coordinates>-78.7975244097894,35.739972459216,0 -78.7975120059156,35.7399810914671,0 -78.7975111214709,35.7399810899963,0 -78.7975244097894,35.739972459216,0 </coordinates>
</LinearRing>
</innerBoundaryIs>
<innerBoundaryIs>
<LinearRing>
<coordinates>-78.7973928115932,35.7402520166881,0 -78.7974202782039,35.7402325934145,0 -78.7974211626514,35.740232594886,0 -78.7973928115932,35.7402520166881,0 </coordinates>
</LinearRing>
</innerBoundaryIs>
</Polygon>
</Placemark>
<Placemark id="kml_2">
<name>kml_2</name>
<snippet> </snippet>
<description><![CDATA[<center><table><tr><th colspan='2' align='center'><em>Attributes</em></th></tr><tr bgcolor="#E3E3F3">
<th>ProjectNumber</th>
<td>03-SB-012</td>
</tr><tr bgcolor="">
<th>ProjectName</th>
<td>Peninsula at Amberly, The</td>
</tr><tr bgcolor="#E3E3F3">
<th>Status</th>
<td>Active</td>
</tr><tr bgcolor="">
<th>Use</th>
<td>Residential</td>
</tr><tr bgcolor="#E3E3F3">
<th>Units</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Lots</th>
<td>318</td>
</tr><tr bgcolor="#E3E3F3">
<th>Building_Square__Footage</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Buildings</th>
<td>0</td>
</tr><tr bgcolor="#E3E3F3">
<th>Comments</th>
<td>318 SF lots</td>
</tr><tr bgcolor="">
<th>Submittal_Date</th>
<td>20031103</td>
</tr><tr bgcolor="#E3E3F3">
<th>Approval_Date</th>
<td>20040802</td>
</tr><tr bgcolor="">
<th>WebLink</th>
<td>PeninsulaAtAmberly_03-SB-012</td>
</tr><tr bgcolor="#E3E3F3">
<th>Index</th>
<td>0</td>
</tr><tr bgcolor="">
<th>ExtWebLink</th>
<td>http://sitesubplans.townofcary.org/PeninsulaAtAmberly_03-SB-012/planindex.htm</td>
</tr></table></center>]]></description>
<Style>
<LineStyle>
<color>ff70dcff</color>
</LineStyle>
</Style>
<ExtendedData>
<SchemaData schemaUrl="#kml_schema_ft_KML_GIS_DataRequest">
<SimpleData name="ProjectNumber">03-SB-012</SimpleData>
<SimpleData name="ProjectName">Peninsula at Amberly, The</SimpleData>
<SimpleData name="Status">Active</SimpleData>
<SimpleData name="Use">Residential</SimpleData>
<SimpleData name="Units">0</SimpleData>
<SimpleData name="Lots">318</SimpleData>
<SimpleData name="Building_Square__Footage">0</SimpleData>
<SimpleData name="Buildings">0</SimpleData>
<SimpleData name="Comments">318 SF lots</SimpleData>
<SimpleData name="Submittal_Date">20031103</SimpleData>
<SimpleData name="Approval_Date">20040802</SimpleData>
<SimpleData name="WebLink">PeninsulaAtAmberly_03-SB-012</SimpleData>
<SimpleData name="Index">0</SimpleData>
<SimpleData name="ExtWebLink">http://sitesubplans.townofcary.org/PeninsulaAtAmberly_03-SB-012/planindex.htm</SimpleData>
</SchemaData>
</ExtendedData>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>-78.929741762151,35.8270971547739,0 -78.9288731904053,35.8270908826464,0 -78.9285372077705,35.8265599923938,0 -78.9281031233669,35.8258358014897,0 -78.9279201153439,35.8255364570093,0 -78.9277521949156,35.8251981843755,0 -78.9274906221033,35.8246413771016,0 -78.9273925277233,35.8244387031396,0 -78.9267370466297,35.8228231542746,0 -78.9266802565514,35.8229637253178,0 -78.9264566947363,35.8234611166408,0 -78.9262634818256,35.8236852471135,0 -78.9256147042133,35.8244376311827,0 -78.9245059055012,35.8257225847326,0 -78.9231519830559,35.8249689607267,0 -78.922570801323,35.824435735626,0 -78.9218091740147,35.8237358290086,0 -78.9212108256352,35.8235746490933,0 -78.9208665113364,35.8234814103205,0 -78.9206239871849,35.8234156368827,0 -78.9205549468938,35.8233975655996,0 -78.9203478283369,35.8233411883598,0 -78.9199787324493,35.8232414414041,0 -78.919149377086,35.8230166468629,0 -78.9190201499734,35.822981950568,0 -78.9188422422602,35.822933521739,0 -78.9188068375242,35.8229241244806,0 -78.9185478124696,35.8225432360266,0 -78.9181667946634,35.8219820020022,0 -78.918124360252,35.8219206840395,0 -78.917894514594,35.8215823557655,0 -78.9178945153262,35.8215816347133,0 -78.9179823825909,35.8213660991259,0 -78.9179930329593,35.8213401483953,0 -78.9179850971164,35.8213084167372,0 -78.9179577556022,35.821206008852,0 -78.9179044942054,35.8213451361624,0 -78.9178024114873,35.8216096936887,0 -78.9175193084914,35.8205401812049,0 -78.9175804071164,35.8205294067417,0 -78.9176415071941,35.8205171901431,0 -78.9177017233942,35.8205035308112,0 -78.9177619417741,35.8204877082923,0 -78.9178203916757,35.8204697213925,0 -78.917878843016,35.8204502923597,0 -78.9178947832873,35.820445976781,0 -78.9183447723781,35.8202054473918,0 -78.9184679203783,35.8201182824202,0 -78.9184944807925,35.8201175791312,0 -78.9185069065648,35.8200865821611,0 -78.9185228547239,35.8200743349221,0 -78.9186380598355,35.8199619276095,0 -78.9187249271393,35.8198567118216,0 -78.9187382228838,35.8198408575196,0 -78.9188206872249,35.819711843972,0 -78.9188685790776,35.8196275126481,0 -78.9189013958572,35.8195676870796,0 -78.9189342125881,35.819507861501,0 -78.9189670299932,35.8194473148597,0 -78.9189980767193,35.8193867670316,0 -78.9190291233989,35.8193262191944,0 -78.9190592854403,35.8192649497074,0 -78.9192544548061,35.8188641735575,0 -78.9194700237472,35.8184237525854,0 -78.9198967216811,35.8175493958692,0 -78.9199827836657,35.8173590942425,0 -78.9200537981563,35.8171658984589,0 -78.9201106519665,35.8169683670181,0 -78.9201533423428,35.8167693841521,0 -78.9201809848151,35.8165682282425,0 -78.9201944633519,35.8163663419855,0 -78.9202008631426,35.8161608458091,0 -78.9202265561703,35.8161406731181,0 -78.9203337580975,35.8160563799243,0 -78.9204993023319,35.8160593722353,0 -78.9205400251422,35.8160593987915,0 -78.9206524555098,35.8160594720392,0 -78.9208056115131,35.8160566874366,0 -78.920958771735,35.8160495763205,0 -78.9211119347441,35.8160395807978,0 -78.9212642166501,35.8160252581897,0 -78.9214156167282,35.8160073295528,0 -78.9215608190955,35.8159901177932,0 -78.9217060200047,35.8159743479675,0 -78.9218521040438,35.815960741697,0 -78.9219973006696,35.8159492978455,0 -78.9221433804486,35.815940017547,0 -78.9222903433921,35.8159329007985,0 -78.9224479275594,35.8159279537936,0 -78.9224496981135,35.8159279549202,0 -78.9224682889317,35.8159279667478,0 -78.92248687975,35.8159279785727,0 -78.9225054712593,35.8159272693412,0 -78.9225240620774,35.8159272811603,0 -78.9225417676184,35.8159272924141,0 -78.9225594731595,35.8159273036652,0 -78.922577179391,35.8159265938602,0 -78.9225939996548,35.815926604544,0 -78.9226108206088,35.8159258941719,0 -78.9226276408725,35.815925904851,0 -78.9226435758592,35.8159259149659,0 -78.9226595115356,35.8159252040252,0 -78.9226745612451,35.8159252135743,0 -78.922689611644,35.815924502068,0 -78.9227037767657,35.8159237899984,0 -78.922717941198,35.8159237989807,0 -78.9227347621503,35.8159230885915,0 -78.9227515831023,35.8159223782,0 -78.9227675187771,35.8159216672451,0 -78.9227825691745,35.8159209557273,0 -78.9227967342948,35.8159202436469,0 -78.9228100141378,35.8159195310042,0 -78.9228259504997,35.8159180989882,0 -78.922841000896,35.8159173874632,0 -78.92285605198,35.8159159548827,0 -78.9228702177865,35.8159145217403,0 -78.922883497628,35.8159138090895,0 -78.9228976634337,35.8159123759438,0 -78.9229118292388,35.8159109427965,0 -78.9229251097667,35.8159095090876,0 -78.9229401608477,35.8159080764968,0 -78.9229543266514,35.8159066433446,0 -78.9229693777314,35.8159052107501,0 -78.9229853140876,35.8159037787133,0 -78.9230003651665,35.815902346115,0 -78.9230163015217,35.8159009140741,0 -78.923033123153,35.8158994825902,0 -78.923049059507,35.8158980505449,0 -78.9230649951743,35.8158973395512,0 -78.923081816804,35.8158959080605,0 -78.9230977524707,35.8158951970625,0 -78.9231136888227,35.8158937650089,0 -78.9231296244886,35.8158930540067,0 -78.9231455601542,35.8158923430024,0 -78.9231614951344,35.8158923530496,0 -78.9231765455229,35.8158916414832,0 -78.9231915952262,35.8158916509684,0 -78.9232066449296,35.8158916604518,0 -78.9232216946329,35.8158916699334,0 -78.9232367443362,35.815891679413,0 -78.9232526793162,35.8158916894483,0 -78.9232677283353,35.8158924199777,0 -78.9232836633154,35.815892430009,0 -78.9232995976116,35.8158931610917,0 -78.9233164178686,35.8158931716758,0 -78.9233305816118,35.8158939016404,0 -78.9233438607622,35.8158939099931,0 -78.9233580245058,35.8158946399546,0 -78.9233730742097,35.8158946494174,0 -78.9233872379537,35.8158953793755,0 -78.9234022876577,35.8158953888347,0 -78.9234173366788,35.8158961193457,0 -78.9234332716597,35.8158961293573,0 -78.9234483206812,35.8158968598644,0 -78.9234642549797,35.8158975909256,0 -78.9234793046842,35.8158976003754,0 -78.9234943537064,35.8158983308768,0 -78.9235102880056,35.815899061932,0 -78.9235253377104,35.815899071376,0 -78.9235403867333,35.8158998018718,0 -78.9235554357564,35.8159005323657,0 -78.9235695995031,35.8159012623025,0 -78.92358376325,35.8159019922378,0 -78.9235979269972,35.8159027221714,0 -78.9236112054678,35.8159034515484,0 -78.9236280250459,35.8159041831431,0 -78.9236439586666,35.8159056352343,0 -78.9236598929686,35.8159063662699,0 -78.9236749413134,35.8159078178026,0 -78.9236899896587,35.8159092693334,0 -78.9237041527278,35.8159107203082,0 -78.9237183164775,35.8159114502278,0 -78.9237315942705,35.8159129006454,0 -78.9237475272148,35.8159150737766,0 -78.9237625755628,35.8159165252985,0 -78.9237776239113,35.8159179768185,0 -78.9237917863038,35.8159201488367,0 -78.9238059486971,35.8159223208532,0 -78.9238201117705,35.8159237718145,0 -78.9238342741651,35.8159259438277,0 -78.9238475512835,35.8159281152862,0 -78.9238617136796,35.8159302872962,0 -78.9238758753976,35.8159331803582,0 -78.9238909230726,35.8159353529177,0 -78.9239059707484,35.8159375254754,0 -78.9239219030237,35.8159404196374,0 -78.9239351801467,35.8159425910863,0 -78.9239493418696,35.8159454841397,0 -78.9239643888707,35.8159483777437,0 -78.9239794365509,35.8159505502924,0 -78.9239962541087,35.8159534449968,0 -78.9240095305583,35.8159563374912,0 -78.9240236922861,35.8159592305359,0 -78.9240387399699,35.8159614030772,0 -78.9240546722547,35.8159642972218,0 -78.924071489141,35.8159679129694,0 -78.9240883067057,35.8159708076611,0 -78.924102468439,35.8159737006967,0 -78.9241166301732,35.8159765937306,0 -78.9241307919085,35.8159794867629,0 -78.9241458389225,35.8159823803445,0 -78.9241617712152,35.8159852744751,0 -78.9241777035091,35.8159881686036,0 -78.9241945204058,35.8159917843342,0 -78.9242122232578,35.8159946795594,0 -78.9242299254353,35.8159982958356,0 -78.9242485128922,35.8160019126594,0 -78.9242671003508,35.8160055294804,0 -78.9242856871359,35.8160098673521,0 -78.924305159876,35.8160134847173,0 -78.924324631943,35.8160178231328,0 -78.9243379090896,35.8160199945378,0 -78.9243511855623,35.8160228869948,0 -78.924364462036,35.8160257794504,0 -78.9243786244631,35.8160279514003,0 -78.9243919009385,35.8160308438529,0 -78.9244051774149,35.8160337363041,0 -78.9244184538923,35.8160366287538,0 -78.9244326163228,35.8160388006974,0 -78.9244458928019,35.8160416931441,0 -78.9244591692821,35.8160445855894,0 -78.9244733310415,35.8160474785818,0 -78.9244866075235,35.8160503710241,0 -78.9244998846798,35.8160525424113,0 -78.9245131611637,35.8160554348507,0 -78.9245273229269,35.8160583278368,0 -78.9245405994127,35.8160612202732,0 -78.9245538765722,35.8160633916546,0 -78.9245733486646,35.8160677300304,0 -78.9245928214315,35.8160713473495,0 -78.9246114082492,35.8160756851714,0 -78.924629995741,35.816079301937,0 -78.9246485832345,35.8160829186997,0 -78.9246671707296,35.8160865354596,0 -78.9246848729476,35.8160901516695,0 -78.9247025751671,35.816093767877,0 -78.9247202773882,35.8160973840818,0 -78.9247370943319,35.8161009997374,0 -78.9247539112772,35.8161046153907,0 -78.9247707288948,35.8161075099881,0 -78.9247866605638,35.8161111250904,0 -78.9248025929049,35.8161140191371,0 -78.9248185245766,35.8161176342352,0 -78.92483445692,35.8161205282778,0 -78.9248495033152,35.8161241428259,0 -78.9248645503818,35.8161270363186,0 -78.9248787121702,35.8161299292638,0 -78.9248937585692,35.8161335438065,0 -78.9249079203597,35.8161364367483,0 -78.9249211968719,35.8161393291431,0 -78.9249353586645,35.8161422220818,0 -78.9249504057375,35.8161451155639,0 -78.9249743029302,35.816150898708,0 -78.9249911198964,35.8161545143285,0 -78.9250079368642,35.8161581299466,0 -78.9250247538334,35.8161617455625,0 -78.9250415708041,35.816165361176,0 -78.9250575024967,35.8161689762428,0 -78.9250743194704,35.8161725918518,0 -78.9250902504977,35.8161769279678,0 -78.9251070674746,35.8161805435723,0 -78.9251238844529,35.8161841591744,0 -78.9251407014327,35.8161877747742,0 -78.925158403694,35.8161913909153,0 -78.9251716802242,35.8161942832828,0 -78.9251849560881,35.8161978967023,0 -78.9251982326203,35.8162007890669,0 -78.9252123944336,35.8162036819733,0 -78.9252265562478,35.816206574878,0 -78.9252407173964,35.8162101888346,0 -78.925255764493,35.8162130822789,0 -78.9252708115907,35.8162159757214,0 -78.9252858580232,35.8162195902156,0 -78.9253017897373,35.8162232052504,0 -78.9253177221189,35.8162260992296,0 -78.9253336538357,35.8162297142603,0 -78.9253504708344,35.8162333298311,0 -78.9253672878346,35.8162369453996,0 -78.9253841048363,35.8162405609657,0 -78.9254009218395,35.8162441765296,0 -78.9254186241247,35.8162477926328,0 -78.9254363264116,35.8162514087334,0 -78.9254540280353,35.816255745885,0 -78.9254717303254,35.8162593619805,0 -78.925490317898,35.8162629786146,0 -78.9255089048078,35.8162673162994,0 -78.9255274917197,35.8162716539813,0 -78.9255469645784,35.8162752711477,0 -78.9255655514942,35.8162796088239,0 -78.9255850236929,35.8162839470377,0 -78.9255983002535,35.8162868393586,0 -78.9256115768151,35.8162897316781,0 -78.9256248533777,35.8162926239961,0 -78.9256381299412,35.8162955163127,0 -78.9256514065056,35.8162984086279,0 -78.925664683071,35.8163013009415,0 -78.9256788449185,35.8163041937936,0 -78.9256921214859,35.8163070861043,0 -78.9257053980541,35.8163099784136,0 -78.9257195592422,35.8163135923144,0 -78.9257337210939,35.8163164851601,0 -78.9257469976652,35.8163193774648,0 -78.9257611595188,35.8163222703073,0 -78.9257753207116,35.8163258842016,0 -78.9257894825674,35.8163287770408,0 -78.9258036444242,35.8163316698784,0 -78.9258178056205,35.8163352837678,0 -78.9258319674794,35.816338176602,0 -78.9258461293394,35.8163410694346,0 -78.9258602905392,35.816344683319,0 -78.9258744524014,35.8163475761484,0 -78.9258894988853,35.8163511905678,0 -78.9259036607497,35.8163540833937,0 -78.9259178219543,35.8163576972714,0 -78.9259328691026,35.816360590632,0 -78.9259470303098,35.8163642045064,0 -78.9259611921784,35.8163670973256,0 -78.9259762386699,35.8163707117343,0 -78.9259904005407,35.8163736045501,0 -78.9260054470347,35.8163772189552,0 -78.9260196089077,35.8163801117676,0 -78.9260346554042,35.8163837261691,0 -78.9260488166199,35.8163873400315,0 -78.9260638637784,35.8163902333759,0 -78.9260780249966,35.816393847235,0 -78.9260930721573,35.8163967405758,0 -78.926107233378,35.8164003544315,0 -78.9261213952587,35.816403247232,0 -78.926136441764,35.8164068616209,0 -78.9261506029884,35.8164104754716,0 -78.9261647648724,35.8164133682671,0 -78.9261798113816,35.8164169826506,0 -78.9261939732678,35.8164198754427,0 -78.926208134497,35.8164234892866,0 -78.9262222963854,35.8164263820754,0 -78.926236457617,35.816429995916,0 -78.9262497342249,35.8164328881659,0 -78.9262638961164,35.8164357809499,0 -78.9262780573515,35.8164393947856,0 -78.9262913339624,35.8164422870309,0 -78.9263046099171,35.8164459003282,0 -78.9263187718129,35.8164487931058,0 -78.9263320484269,35.8164516853466,0 -78.9263453243849,35.8164552986395,0 -78.926357715718,35.8164581903425,0 -78.9263771880022,35.8164625284295,0 -78.9263966602885,35.8164668665133,0 -78.9264152466377,35.816471925113,0 -78.9264338336452,35.8164762626565,0 -78.9264515353716,35.8164805996628,0 -78.9264692377556,35.8164842156131,0 -78.9264860542024,35.8164885520804,0 -78.9265037559343,35.8164928890791,0 -78.9265196871015,35.8164972250079,0 -78.9265365035537,35.8165015614681,0 -78.9265524353793,35.8165051763391,0 -78.9265692518349,35.8165095127948,0 -78.9265851830088,35.816513848715,0 -78.9266011141845,35.816518184633,0 -78.9266170460162,35.8165217994956,0 -78.9266320919115,35.8165261348765,0 -78.9266480230921,35.8165304707885,0 -78.9266648389041,35.8165355282844,0 -78.9266807700883,35.816539864192,0 -78.9266967012742,35.8165442000975,0 -78.9267135170921,35.8165492575867,0 -78.9267303329121,35.8165543150735,0 -78.9267471487342,35.8165593725581,0 -78.9267648498425,35.8165644305722,0 -78.9267825503001,35.8165702096372,0 -78.9268002507602,35.8165759886996,0 -78.926818836507,35.8165817682909,0 -78.9268321125082,35.8165853815306,0 -78.9268445025738,35.8165897152908,0 -78.9268577779252,35.8165940495811,0 -78.9268710532779,35.8165983838699,0 -78.9268843286321,35.8166027181573,0 -78.9268984892723,35.8166070529741,0 -78.9269126492621,35.8166121088428,0 -78.9269268099055,35.8166164436564,0 -78.9269409698987,35.8166214995217,0 -78.9269560158299,35.8166258348625,0 -78.9269710611115,35.8166308912549,0 -78.9269861063949,35.8166359476454,0 -78.9270011516802,35.8166410040341,0 -78.9270170816015,35.8166467820044,0 -78.9270330121758,35.8166518389191,0 -78.9270498273865,35.8166576174151,0 -78.9270657573146,35.816663395379,0 -78.9270825731804,35.8166684528171,0 -78.9271002736834,35.8166742318357,0 -78.927117973539,35.8166807319052,0 -78.9271365586828,35.8166872325013,0 -78.9271577996861,35.8166937346818,0 -78.9271808099651,35.8167016800233,0 -78.9271940853529,35.8167060142768,0 -78.9272082453786,35.8167110701109,0 -78.9272250606142,35.8167168485826,0 -78.9272436457749,35.8167233491623,0 -78.9272657714335,35.8167305729058,0 -78.9272905523056,35.816738519283,0 -78.9273188723821,35.8167486309271,0 -78.9277662834535,35.8173574662196,0 -78.9277651649635,35.8176184869517,0 -78.9276279441449,35.8176184055488,0 -78.9276305445278,35.8176804176972,0 -78.9276322641355,35.8177373819466,0 -78.9276339869723,35.8177907409293,0 -78.9276357136835,35.8178397735924,0 -78.9276383276314,35.817886643621,0 -78.9276400595098,35.8179299078577,0 -78.9276426779801,35.8179717305131,0 -78.9276452983889,35.8180113900088,0 -78.9276479194455,35.8180503284508,0 -78.9276505417951,35.8180878247861,0 -78.9276531654375,35.8181238790148,0 -78.9276557897275,35.81815921219,0 -78.9276593006119,35.8181931037841,0 -78.9276619268421,35.8182262737992,0 -78.9276654390222,35.8182587232864,0 -78.9276689524952,35.8182897306671,0 -78.9276715806676,35.818320737522,0 -78.9276750947907,35.8183510238488,0 -78.9276786102064,35.8183798680694,0 -78.9276812396753,35.8184094328172,0 -78.9276847550957,35.8184382770369,0 -78.9276891558235,35.8184671217815,0 -78.9276926712492,35.8184959660005,0 -78.9276970713381,35.8185255317972,0 -78.9277005861244,35.8185550970683,0 -78.9277058715257,35.8185846633893,0 -78.9277102709796,35.8186149502375,0 -78.9277155557436,35.8186452376104,0 -78.9277199552044,35.8186755244577,0 -78.9277252399761,35.8187058118295,0 -78.9277305253962,35.8187353781478,0 -78.9277358108201,35.8187649444656,0 -78.927741096248,35.818794510783,0 -78.927746382324,35.8188233560469,0 -78.9277516684039,35.8188522013103,0 -78.9277569544875,35.8188810465732,0 -78.9277622412191,35.8189091707827,0 -78.9277684119761,35.8189387376221,0 -78.9277736980713,35.8189675828834,0 -78.9277807541477,35.8189971502462,0 -78.9277869236301,35.8190281591894,0 -78.9277939777847,35.8190598897092,0 -78.9278027999929,35.8190945054883,0 -78.9278125049456,35.8191320060019,0 -78.9278230907141,35.8191745544081,0 -78.927836327928,35.8192221517546,0 -78.9278522153077,35.8192762401459,0 -78.9278707515758,35.819338261686,0 -78.9279654872871,35.8193303861278,0 -78.9280175038524,35.8195741328051,0 -78.9280898375508,35.8198690861912,0 -78.9282257396784,35.8203616454477,0 -78.9283183421518,35.8207640474173,0 -78.928417150549,35.8211578002737,0 -78.9285627242177,35.8217311225008,0 -78.9286720986931,35.8221933811925,0 -78.9288282551907,35.822817903802,0 -78.9289685485847,35.8233616589965,0 -78.9290885405652,35.8238369021783,0 -78.9292349833124,35.8244397867061,0 -78.9292799763601,35.8246236810385,0 -78.9294052880874,35.8250946004779,0 -78.9294838401449,35.8253772982,0 -78.9295508940739,35.8256470102709,0 -78.9295976297712,35.825864794838,0 -78.9296401282952,35.8258648193763,0 -78.9296497815796,35.8259636090036,0 -78.9296709342692,35.8260746631368,0 -78.9296964468711,35.8262628722792,0 -78.9297166472378,35.8264510783413,0 -78.9297367618432,35.8267380683678,0 -78.929741762151,35.8270971547739,0 </coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark id="kml_3">
<name>kml_3</name>
<snippet> </snippet>
<description><![CDATA[<center><table><tr><th colspan='2' align='center'><em>Attributes</em></th></tr><tr bgcolor="#E3E3F3">
<th>ProjectNumber</th>
<td>04-SB-009</td>
</tr><tr bgcolor="">
<th>ProjectName</th>
<td>Cameron Pond Phase 2</td>
</tr><tr bgcolor="#E3E3F3">
<th>Status</th>
<td>Active</td>
</tr><tr bgcolor="">
<th>Use</th>
<td>Residential</td>
</tr><tr bgcolor="#E3E3F3">
<th>Units</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Lots</th>
<td>100</td>
</tr><tr bgcolor="#E3E3F3">
<th>Building_Square__Footage</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Buildings</th>
<td>0</td>
</tr><tr bgcolor="#E3E3F3">
<th>Comments</th>
<td>100 SF lots</td>
</tr><tr bgcolor="">
<th>Submittal_Date</th>
<td>20040405</td>
</tr><tr bgcolor="#E3E3F3">
<th>Approval_Date</th>
<td>20040802</td>
</tr><tr bgcolor="">
<th>WebLink</th>
<td>CameronPondPhase2_04-SB-009</td>
</tr><tr bgcolor="#E3E3F3">
<th>Index</th>
<td>0</td>
</tr><tr bgcolor="">
<th>ExtWebLink</th>
<td>http://sitesubplans.townofcary.org/CameronPondPhase2_04-SB-009/planindex.htm</td>
</tr></table></center>]]></description>
<Style>
<LineStyle>
<color>ff70dcff</color>
</LineStyle>
</Style>
<ExtendedData>
<SchemaData schemaUrl="#kml_schema_ft_KML_GIS_DataRequest">
<SimpleData name="ProjectNumber">04-SB-009</SimpleData>
<SimpleData name="ProjectName">Cameron Pond Phase 2</SimpleData>
<SimpleData name="Status">Active</SimpleData>
<SimpleData name="Use">Residential</SimpleData>
<SimpleData name="Units">0</SimpleData>
<SimpleData name="Lots">100</SimpleData>
<SimpleData name="Building_Square__Footage">0</SimpleData>
<SimpleData name="Buildings">0</SimpleData>
<SimpleData name="Comments">100 SF lots</SimpleData>
<SimpleData name="Submittal_Date">20040405</SimpleData>
<SimpleData name="Approval_Date">20040802</SimpleData>
<SimpleData name="WebLink">CameronPondPhase2_04-SB-009</SimpleData>
<SimpleData name="Index">0</SimpleData>
<SimpleData name="ExtWebLink">http://sitesubplans.townofcary.org/CameronPondPhase2_04-SB-009/planindex.htm</SimpleData>
</SchemaData>
</ExtendedData>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>-78.8886402451851,35.8260750895328,0 -78.8887025460729,35.8245537268813,0 -78.8887052964851,35.8244852294416,0 -78.8887062771459,35.8244160093322,0 -78.8887283614863,35.8231657248152,0 -78.8887974529768,35.8231412720846,0 -78.8889320894586,35.8230959685363,0 -78.8890853172505,35.8230514028097,0 -78.8892420764125,35.8230140506238,0 -78.8894005972601,35.8229831893068,0 -78.8895617632131,35.8229602617575,0 -78.8897229202231,35.8229438234593,0 -78.8898858370716,35.8229353181154,0 -78.889965521832,35.8229332269181,0 -78.8904568939997,35.8229329484537,0 -78.8908570874083,35.8229232127169,0 -78.8925826680248,35.8229045561522,0 -78.8931252958365,35.824315411449,0 -78.8932321241084,35.8258845140835,0 -78.8932236432803,35.8262724324674,0 -78.8931156638212,35.826243495767,0 -78.8930590417969,35.8262109987799,0 -78.8929971389776,35.8261547024253,0 -78.8929759812828,35.8260854628886,0 -78.8929238016439,35.8260414329099,0 -78.8928963660926,35.8260327561861,0 -78.8928954807052,35.8260327554081,0 -78.892861850315,35.8260219100781,0 -78.8927812322526,35.8260578917786,0 -78.8927794614771,35.826057890221,0 -78.8927511118516,35.8260708442117,0 -78.8926510362128,35.826090945567,0 -78.8924455503914,35.826147727513,0 -78.8924048417032,35.8261332705531,0 -78.892346362851,35.8261656662465,0 -78.8923437018833,35.8261692691548,0 -78.8923428164943,35.8261692683728,0 -78.8923020204029,35.826220427004,0 -78.8921708798502,35.8262974635947,0 -78.8920928962044,35.8263493103035,0 -78.8920459935937,35.8263319635349,0 -78.8920079853622,35.826284340459,0 -78.8920204559446,35.826228109477,0 -78.8919646985621,35.8262114758837,0 -78.8919611560409,35.8262121937956,0 -78.8919292781662,35.826215049744,0 -78.8919248483272,35.8262172089715,0 -78.8919239629378,35.8262172081865,0 -78.8918123353543,35.8262683038314,0 -78.8916484927782,35.8263020477315,0 -78.891629940175,35.8262717470693,0 -78.8916334856014,35.8262688660146,0 -78.8916653924948,35.8262443786194,0 -78.8916309821451,35.8261549376242,0 -78.8914999300887,35.8261656368193,0 -78.8914476427662,35.8262023639026,0 -78.8914316621843,35.8262347969956,0 -78.8914245596993,35.8262492117029,0 -78.8913032438436,35.8262620825132,0 -78.8911588942162,35.8262850273613,0 -78.8910385015561,35.8262697777176,0 -78.8908745691114,35.8263698572493,0 -78.8907940384524,35.8263402220112,0 -78.8907100296497,35.8262637152428,0 -78.890685345978,35.8261843774244,0 -78.8906393252524,35.8261699151109,0 -78.8906375554499,35.8261691924713,0 -78.8906065804966,35.8261590699534,0 -78.8906332367792,35.8260891518575,0 -78.8906199783961,35.8260725557716,0 -78.8906190939838,35.8260718339262,0 -78.890612023564,35.8260624539091,0 -78.8905730381989,35.8260833294175,0 -78.8905013588827,35.8260558650835,0 -78.8904934060205,35.8260443211116,0 -78.890466013714,35.8260039176032,0 -78.8903350468428,35.8259518841213,0 -78.8902623825057,35.8259979660376,0 -78.8901207254768,35.8259942331679,0 -78.8901118863079,35.8259834094236,0 -78.8900420584285,35.8258968202432,0 -78.8899260493076,35.8259140207817,0 -78.889850746295,35.825947121139,0 -78.8897630733679,35.8259614629176,0 -78.8896771888948,35.8259628273204,0 -78.8896160568498,35.8259923350983,0 -78.8895266091166,35.8260095593065,0 -78.8894619738809,35.826010942814,0 -78.889353921117,35.8260368026433,0 -78.8893503785803,35.8260375204793,0 -78.8893016664717,35.8260490130792,0 -78.8892299826781,35.8260251532515,0 -78.8891529440927,35.8260322937371,0 -78.8891148190285,35.8260711958552,0 -78.8891130452859,35.8260733573969,0 -78.8890917672905,35.8260942485387,0 -78.8890695771823,35.826134607243,0 -78.8889916322981,35.8261568888876,0 -78.8889349892088,35.8261409741527,0 -78.8888243077,35.8261466416685,0 -78.8887083595033,35.8261191358964,0 -78.8886393160954,35.8261068149601,0 -78.8886402451851,35.8260750895328,0 </coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark id="kml_4">
<name>kml_4</name>
<snippet> </snippet>
<description><![CDATA[<center><table><tr><th colspan='2' align='center'><em>Attributes</em></th></tr><tr bgcolor="#E3E3F3">
<th>ProjectNumber</th>
<td>04-SP-067</td>
</tr><tr bgcolor="">
<th>ProjectName</th>
<td>Regency Park parcels A&C</td>
</tr><tr bgcolor="#E3E3F3">
<th>Status</th>
<td>Approved</td>
</tr><tr bgcolor="">
<th>Use</th>
<td>Commercial</td>
</tr><tr bgcolor="#E3E3F3">
<th>Units</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Lots</th>
<td>0</td>
</tr><tr bgcolor="#E3E3F3">
<th>Building_Square__Footage</th>
<td>281100</td>
</tr><tr bgcolor="">
<th>Buildings</th>
<td>1</td>
</tr><tr bgcolor="#E3E3F3">
<th>Comments</th>
<td>10 story office building: Vested Rights Certificate (5 year term) approved by Town Council on Sept. 6, 2012; plan valid until Sept. 2017</td>
</tr><tr bgcolor="">
<th>Submittal_Date</th>
<td>20040405</td>
</tr><tr bgcolor="#E3E3F3">
<th>Approval_Date</th>
<td>20040909</td>
</tr><tr bgcolor="">
<th>WebLink</th>
<td>RegencyParkParcelsAC10StoryOfficeBldg_04-SP-067</td>
</tr><tr bgcolor="#E3E3F3">
<th>Index</th>
<td>0</td>
</tr><tr bgcolor="">
<th>ExtWebLink</th>
<td>http://sitesubplans.townofcary.org/RegencyParkParcelsAC10StoryOfficeBldg_04-SP-067/planindex.htm</td>
</tr></table></center>]]></description>
<Style>
<LineStyle>
<color>ff70dcff</color>
</LineStyle>
</Style>
<ExtendedData>
<SchemaData schemaUrl="#kml_schema_ft_KML_GIS_DataRequest">
<SimpleData name="ProjectNumber">04-SP-067</SimpleData>
<SimpleData name="ProjectName">Regency Park parcels A&C</SimpleData>
<SimpleData name="Status">Approved</SimpleData>
<SimpleData name="Use">Commercial</SimpleData>
<SimpleData name="Units">0</SimpleData>
<SimpleData name="Lots">0</SimpleData>
<SimpleData name="Building_Square__Footage">281100</SimpleData>
<SimpleData name="Buildings">1</SimpleData>
<SimpleData name="Comments">10 story office building: Vested Rights Certificate (5 year term) approved by Town Council on Sept. 6, 2012; plan valid until Sept. 2017</SimpleData>
<SimpleData name="Submittal_Date">20040405</SimpleData>
<SimpleData name="Approval_Date">20040909</SimpleData>
<SimpleData name="WebLink">RegencyParkParcelsAC10StoryOfficeBldg_04-SP-067</SimpleData>
<SimpleData name="Index">0</SimpleData>
<SimpleData name="ExtWebLink">http://sitesubplans.townofcary.org/RegencyParkParcelsAC10StoryOfficeBldg_04-SP-067/planindex.htm</SimpleData>
</SchemaData>
</ExtendedData>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>-78.7868637818913,35.7354114999427,0 -78.7876402388946,35.7347545157372,0 -78.7876437840119,35.7347516376225,0 -78.7876464428496,35.7347494790364,0 -78.7876490997954,35.7347480415214,0 -78.7876517586329,35.7347458829352,0 -78.7876544155785,35.7347444454201,0 -78.787657072524,35.7347430079049,0 -78.7876597294694,35.7347415703897,0 -78.787663270802,35.7347401344168,0 -78.7876659277472,35.7347386969014,0 -78.7876685828006,35.7347379804572,0 -78.7876721241329,35.7347365444841,0 -78.7876747810778,35.7347351069685,0 -78.7876783205183,35.7347343920664,0 -78.7876818599587,35.7347336771641,0 -78.7876845150119,35.7347329607195,0 -78.7876880544522,35.7347322458171,0 -78.7876915938924,35.7347315309146,0 -78.7876942489454,35.7347308144698,0 -78.7876977864942,35.7347308206383,0 -78.7877013259343,35.7347301057355,0 -78.787704863483,35.7347301119037,0 -78.7877075185358,35.7347293954587,0 -78.7877110560845,35.7347294016268,0 -78.7877145936332,35.7347294077948,0 -78.7877181292907,35.7347301350338,0 -78.7877216668394,35.7347301412016,0 -78.787724320001,35.7347301458274,0 -78.7877278556586,35.7347308730662,0 -78.7877313932073,35.7347308792337,0 -78.787734928865,35.7347316064723,0 -78.7877375801356,35.734732332169,0 -78.7877411157934,35.7347330594074,0 -78.7877446514513,35.7347337866458,0 -78.787747302722,35.7347345123422,0 -78.7877508364891,35.7347359606516,0 -78.78775348776,35.7347366863479,0 -78.7877570215273,35.7347381346571,0 -78.7877596709074,35.7347395814245,0 -78.7877632046749,35.7347410297334,0 -78.7877658559461,35.7347417554295,0 -78.7877685034357,35.7347439232679,0 -78.7877711528163,35.7347453700351,0 -78.7877738021969,35.7347468168022,0 -78.7877764515776,35.7347482635692,0 -78.7877817484488,35.7347518781743,0 -78.7881744931599,35.735061181965,0 -78.7881797900693,35.7350647965525,0 -78.7881815531898,35.7350669628431,0 -78.7881842007012,35.7350691306722,0 -78.7881859638219,35.7350712969627,0 -78.7881877269426,35.7350734632532,0 -78.7881894900635,35.7350756295437,0 -78.7881912531844,35.7350777958342,0 -78.7881930144185,35.7350806831957,0 -78.7881947775397,35.7350828494861,0 -78.7881965406609,35.7350850157765,0 -78.7881983018953,35.735087903138,0 -78.7880901286612,35.7351937128505,0 -78.7875639807364,35.7358417628608,0 -78.7875497849218,35.7358590438734,0 -78.7874637179325,35.7359656126522,0 -78.787536274752,35.7359520388753,0 -78.7872640549593,35.7362212452978,0 -78.7866595721488,35.7363853136087,0 -78.7866636020337,35.7361985624617,0 -78.7861329140704,35.7358803587929,0 -78.7857240975156,35.7356301483011,0 -78.785975119773,35.7353515340393,0 -78.7860886269794,35.734901783066,0 -78.7863799748374,35.7350919371736,0 -78.7867737370095,35.7353493298869,0 -78.7868637818913,35.7354114999427,0 </coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark id="kml_5">
<name>kml_5</name>
<snippet> </snippet>
<description><![CDATA[<center><table><tr><th colspan='2' align='center'><em>Attributes</em></th></tr><tr bgcolor="#E3E3F3">
<th>ProjectNumber</th>
<td>04-SP-067-C</td>
</tr><tr bgcolor="">
<th>ProjectName</th>
<td>Regency Park Parcel A & C (IDT)</td>
</tr><tr bgcolor="#E3E3F3">
<th>Status</th>
<td>Approved</td>
</tr><tr bgcolor="">
<th>Use</th>
<td>Commercial</td>
</tr><tr bgcolor="#E3E3F3">
<th>Units</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Lots</th>
<td>0</td>
</tr><tr bgcolor="#E3E3F3">
<th>Building_Square__Footage</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Buildings</th>
<td>1</td>
</tr><tr bgcolor="#E3E3F3">
<th>Comments</th>
<td>submitted in accordance with Town of Cary's Resolution & Vested Rights Certificate</td>
</tr><tr bgcolor="">
<th>Submittal_Date</th>
<td>20121213</td>
</tr><tr bgcolor="#E3E3F3">
<th>Approval_Date</th>
<td>20130308</td>
</tr><tr bgcolor="">
<th>WebLink</th>
<td>RegencyParkOfficeBuilding_04-SP-067-C</td>
</tr><tr bgcolor="#E3E3F3">
<th>Index</th>
<td>0</td>
</tr><tr bgcolor="">
<th>ExtWebLink</th>
<td>http://sitesubplans.townofcary.org/RegencyParkOfficeBuilding_04-SP-067-C/planindex.htm</td>
</tr></table></center>]]></description>
<Style>
<LineStyle>
<color>ff70dcff</color>
</LineStyle>
</Style>
<ExtendedData>
<SchemaData schemaUrl="#kml_schema_ft_KML_GIS_DataRequest">
<SimpleData name="ProjectNumber">04-SP-067-C</SimpleData>
<SimpleData name="ProjectName">Regency Park Parcel A & C (IDT)</SimpleData>
<SimpleData name="Status">Approved</SimpleData>
<SimpleData name="Use">Commercial</SimpleData>
<SimpleData name="Units">0</SimpleData>
<SimpleData name="Lots">0</SimpleData>
<SimpleData name="Building_Square__Footage">0</SimpleData>
<SimpleData name="Buildings">1</SimpleData>
<SimpleData name="Comments">submitted in accordance with Town of Cary's Resolution & Vested Rights Certificate</SimpleData>
<SimpleData name="Submittal_Date">20121213</SimpleData>
<SimpleData name="Approval_Date">20130308</SimpleData>
<SimpleData name="WebLink">RegencyParkOfficeBuilding_04-SP-067-C</SimpleData>
<SimpleData name="Index">0</SimpleData>
<SimpleData name="ExtWebLink">http://sitesubplans.townofcary.org/RegencyParkOfficeBuilding_04-SP-067-C/planindex.htm</SimpleData>
</SchemaData>
</ExtendedData>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>-78.7867737370095,35.7353493298869,0 -78.7868637818913,35.7354114999427,0 -78.7876402388946,35.7347545157372,0 -78.7876437840119,35.7347516376225,0 -78.7876473291288,35.7347487595077,0 -78.787652644912,35.7347451634064,0 -78.7876588431903,35.7347422899185,0 -78.787663270802,35.7347401344168,0 -78.7876676984134,35.7347379789149,0 -78.7876721241329,35.7347365444841,0 -78.7876765498523,35.7347351100531,0 -78.7876827462375,35.7347329576351,0 -78.7876898251181,35.7347315278302,0 -78.7876960177198,35.7347308175541,0 -78.7877013259343,35.7347301057355,0 -78.7877066322574,35.7347301149878,0 -78.7877128248589,35.7347294047108,0 -78.7877198980651,35.7347301381178,0 -78.7877260887753,35.7347301489112,0 -78.7877331600906,35.7347316033886,0 -78.787739347019,35.7347330563238,0 -78.7877455339475,35.7347345092587,0 -78.7877508364891,35.7347359606516,0 -78.7877552546436,35.7347374105025,0 -78.7877614377912,35.734740305579,0 -78.7877667365518,35.7347431991135,0 -78.7877711528163,35.7347453700351,0 -78.7877755690809,35.7347475409565,0 -78.7877817484488,35.7347518781743,0 -78.7881744931599,35.735061181965,0 -78.788180670686,35.7350662402333,0 -78.7881842007012,35.7350691306722,0 -78.7881868463258,35.7350720195724,0 -78.7881894900635,35.7350756295437,0 -78.7881921338015,35.7350792395149,0 -78.7881956581568,35.7350842931669,0 -78.7881983018953,35.735087903138,0 -78.7880901286612,35.7351937128505,0 -78.7875639807364,35.7358417628608,0 -78.7875497849218,35.7358590438734,0 -78.7874637179325,35.7359656126522,0 -78.787536274752,35.7359520388753,0 -78.7872640549593,35.7362212452978,0 -78.7866595721488,35.7363853136087,0 -78.7866636020337,35.7361985624617,0 -78.7861329140704,35.7358803587929,0 -78.7857240975156,35.7356301483011,0 -78.785975119773,35.7353515340393,0 -78.7860886269794,35.734901783066,0 -78.7863799748374,35.7350919371736,0 -78.7867737370095,35.7353493298869,0 </coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark id="kml_6">
<name>kml_6</name>
<snippet> </snippet>
<description><![CDATA[<center><table><tr><th colspan='2' align='center'><em>Attributes</em></th></tr><tr bgcolor="#E3E3F3">
<th>ProjectNumber</th>
<td>04-SP-148-C</td>
</tr><tr bgcolor="">
<th>ProjectName</th>
<td>SRI Venkateswara Temple (IDT)</td>
</tr><tr bgcolor="#E3E3F3">
<th>Status</th>
<td>Active</td>
</tr><tr bgcolor="">
<th>Use</th>
<td>Public/Institutional</td>
</tr><tr bgcolor="#E3E3F3">
<th>Units</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Lots</th>
<td>0</td>
</tr><tr bgcolor="#E3E3F3">
<th>Building_Square__Footage</th>
<td>1658</td>
</tr><tr bgcolor="">
<th>Buildings</th>
<td>2</td>
</tr><tr bgcolor="#E3E3F3">
<th>Comments</th>
<td>convert 1658sf of residential to office space; grading to create open space; add retaining wall, parking, & accessible walkway</td>
</tr><tr bgcolor="">
<th>Submittal_Date</th>
<td>20120112</td>
</tr><tr bgcolor="#E3E3F3">
<th>Approval_Date</th>
<td>20120518</td>
</tr><tr bgcolor="">
<th>WebLink</th>
<td>SRIVenkateswaraTemple_04-SP-148-C</td>
</tr><tr bgcolor="#E3E3F3">
<th>Index</th>
<td>0</td>
</tr><tr bgcolor="">
<th>ExtWebLink</th>
<td>http://sitesubplans.townofcary.org/SRIVenkateswaraTemple_04-SP-148-C/planindex.htm</td>
</tr></table></center>]]></description>
<Style>
<LineStyle>
<color>ff70dcff</color>
</LineStyle>
</Style>
<ExtendedData>
<SchemaData schemaUrl="#kml_schema_ft_KML_GIS_DataRequest">
<SimpleData name="ProjectNumber">04-SP-148-C</SimpleData>
<SimpleData name="ProjectName">SRI Venkateswara Temple (IDT)</SimpleData>
<SimpleData name="Status">Active</SimpleData>
<SimpleData name="Use">Public/Institutional</SimpleData>
<SimpleData name="Units">0</SimpleData>
<SimpleData name="Lots">0</SimpleData>
<SimpleData name="Building_Square__Footage">1658</SimpleData>
<SimpleData name="Buildings">2</SimpleData>
<SimpleData name="Comments">convert 1658sf of residential to office space; grading to create open space; add retaining wall, parking, & accessible walkway</SimpleData>
<SimpleData name="Submittal_Date">20120112</SimpleData>
<SimpleData name="Approval_Date">20120518</SimpleData>
<SimpleData name="WebLink">SRIVenkateswaraTemple_04-SP-148-C</SimpleData>
<SimpleData name="Index">0</SimpleData>
<SimpleData name="ExtWebLink">http://sitesubplans.townofcary.org/SRIVenkateswaraTemple_04-SP-148-C/planindex.htm</SimpleData>
</SchemaData>
</ExtendedData>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>-78.8038208941384,35.80013626411,0 -78.8042476622241,35.8004412373147,0 -78.8045348929732,35.8006190788815,0 -78.8043132041998,35.8007888929654,0 -78.804469352607,35.8010025770297,0 -78.804486999068,35.801025679225,0 -78.8047678042796,35.800933112858,0 -78.8048418004091,35.8010796063205,0 -78.8046584287329,35.8011427656752,0 -78.8047279905738,35.8012928573816,0 -78.804845964404,35.8015547906741,0 -78.8049621791901,35.8018123946613,0 -78.8050783929787,35.8020707195712,0 -78.8044450742913,35.8022579011496,0 -78.8045612870683,35.8025162265143,0 -78.8046458048094,35.8027045582766,0 -78.8050972580448,35.8026901389481,0 -78.8065415507092,35.8013130554769,0 -78.8063683183782,35.8012082268211,0 -78.8054906813261,35.8006739666417,0 -78.805336012949,35.8005799820056,0 -78.8041658015012,35.7998880535386,0 -78.8038208941384,35.80013626411,0 </coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark id="kml_7">
<name>kml_7</name>
<snippet> </snippet>
<description><![CDATA[<center><table><tr><th colspan='2' align='center'><em>Attributes</em></th></tr><tr bgcolor="#E3E3F3">
<th>ProjectNumber</th>
<td>04-SP-148-D</td>
</tr><tr bgcolor="">
<th>ProjectName</th>
<td>SRI Venkateswara Temple (IDT)</td>
</tr><tr bgcolor="#E3E3F3">
<th>Status</th>
<td>Active</td>
</tr><tr bgcolor="">
<th>Use</th>
<td>Public/Institutional</td>
</tr><tr bgcolor="#E3E3F3">
<th>Units</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Lots</th>
<td>0</td>
</tr><tr bgcolor="#E3E3F3">
<th>Building_Square__Footage</th>
<td>3390</td>
</tr><tr bgcolor="">
<th>Buildings</th>
<td>1</td>
</tr><tr bgcolor="#E3E3F3">
<th>Comments</th>
<td>remove existing office building and construct 3,390sf temple</td>
</tr><tr bgcolor="">
<th>Submittal_Date</th>
<td>20130110</td>
</tr><tr bgcolor="#E3E3F3">
<th>Approval_Date</th>
<td>20130625</td>
</tr><tr bgcolor="">
<th>WebLink</th>
<td>SRIVenkateswaraTemple_04-SP-148-D</td>
</tr><tr bgcolor="#E3E3F3">
<th>Index</th>
<td>0</td>
</tr><tr bgcolor="">
<th>ExtWebLink</th>
<td>http://sitesubplans.townofcary.org/SRIVenkateswaraTemple_04-SP-148-D/planindex.htm</td>
</tr></table></center>]]></description>
<Style>
<LineStyle>
<color>ff70dcff</color>
</LineStyle>
</Style>
<ExtendedData>
<SchemaData schemaUrl="#kml_schema_ft_KML_GIS_DataRequest">
<SimpleData name="ProjectNumber">04-SP-148-D</SimpleData>
<SimpleData name="ProjectName">SRI Venkateswara Temple (IDT)</SimpleData>
<SimpleData name="Status">Active</SimpleData>
<SimpleData name="Use">Public/Institutional</SimpleData>
<SimpleData name="Units">0</SimpleData>
<SimpleData name="Lots">0</SimpleData>
<SimpleData name="Building_Square__Footage">3390</SimpleData>
<SimpleData name="Buildings">1</SimpleData>
<SimpleData name="Comments">remove existing office building and construct 3,390sf temple</SimpleData>
<SimpleData name="Submittal_Date">20130110</SimpleData>
<SimpleData name="Approval_Date">20130625</SimpleData>
<SimpleData name="WebLink">SRIVenkateswaraTemple_04-SP-148-D</SimpleData>
<SimpleData name="Index">0</SimpleData>
<SimpleData name="ExtWebLink">http://sitesubplans.townofcary.org/SRIVenkateswaraTemple_04-SP-148-D/planindex.htm</SimpleData>
</SchemaData>
</ExtendedData>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>-78.8038208941384,35.80013626411,0 -78.8042476622241,35.8004412373147,0 -78.8045348929732,35.8006190788815,0 -78.8043132041998,35.8007888929654,0 -78.804469352607,35.8010025770297,0 -78.804486999068,35.801025679225,0 -78.8047678042796,35.800933112858,0 -78.8048418004091,35.8010796063205,0 -78.8046584287329,35.8011427656752,0 -78.8047279905738,35.8012928573816,0 -78.804845964404,35.8015547906741,0 -78.8049621791901,35.8018123946613,0 -78.8050783929787,35.8020707195712,0 -78.8044450742913,35.8022579011496,0 -78.8045612870683,35.8025162265143,0 -78.8046458048094,35.8027045582766,0 -78.8050972580448,35.8026901389481,0 -78.8065415507092,35.8013130554769,0 -78.8063683183782,35.8012082268211,0 -78.8054906813261,35.8006739666417,0 -78.805336012949,35.8005799820056,0 -78.8041658015012,35.7998880535386,0 -78.8038208941384,35.80013626411,0 </coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark id="kml_8">
<name>kml_8</name>
<snippet> </snippet>
<description><![CDATA[<center><table><tr><th colspan='2' align='center'><em>Attributes</em></th></tr><tr bgcolor="#E3E3F3">
<th>ProjectNumber</th>
<td>05-SB-007</td>
</tr><tr bgcolor="">
<th>ProjectName</th>
<td>Churchill Estates</td>
</tr><tr bgcolor="#E3E3F3">
<th>Status</th>
<td>Active</td>
</tr><tr bgcolor="">
<th>Use</th>
<td>Residential</td>
</tr><tr bgcolor="#E3E3F3">
<th>Units</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Lots</th>
<td>110</td>
</tr><tr bgcolor="#E3E3F3">
<th>Building_Square__Footage</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Buildings</th>
<td>0</td>
</tr><tr bgcolor="#E3E3F3">
<th>Comments</th>
<td>110 SF lots</td>
</tr><tr bgcolor="">
<th>Submittal_Date</th>
<td>20050404</td>
</tr><tr bgcolor="#E3E3F3">
<th>Approval_Date</th>
<td>20050718</td>
</tr><tr bgcolor="">
<th>WebLink</th>
<td>ChurchillEstates_05-SB-007</td>
</tr><tr bgcolor="#E3E3F3">
<th>Index</th>
<td>0</td>
</tr><tr bgcolor="">
<th>ExtWebLink</th>
<td>http://sitesubplans.townofcary.org/ChurchillEstates_05-SB-007/planindex.htm</td>
</tr></table></center>]]></description>
<Style>
<LineStyle>
<color>ff70dcff</color>
</LineStyle>
</Style>
<ExtendedData>
<SchemaData schemaUrl="#kml_schema_ft_KML_GIS_DataRequest">
<SimpleData name="ProjectNumber">05-SB-007</SimpleData>
<SimpleData name="ProjectName">Churchill Estates</SimpleData>
<SimpleData name="Status">Active</SimpleData>
<SimpleData name="Use">Residential</SimpleData>
<SimpleData name="Units">0</SimpleData>
<SimpleData name="Lots">110</SimpleData>
<SimpleData name="Building_Square__Footage">0</SimpleData>
<SimpleData name="Buildings">0</SimpleData>
<SimpleData name="Comments">110 SF lots</SimpleData>
<SimpleData name="Submittal_Date">20050404</SimpleData>
<SimpleData name="Approval_Date">20050718</SimpleData>
<SimpleData name="WebLink">ChurchillEstates_05-SB-007</SimpleData>
<SimpleData name="Index">0</SimpleData>
<SimpleData name="ExtWebLink">http://sitesubplans.townofcary.org/ChurchillEstates_05-SB-007/planindex.htm</SimpleData>
</SchemaData>
</ExtendedData>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>-78.7722932464851,35.6895381530111,0 -78.7722260665339,35.6895394694486,0 -78.7720492797421,35.6895420227414,0 -78.7719679554589,35.6895440336237,0 -78.7714066526177,35.689553796737,0 -78.7710902024382,35.6895589705265,0 -78.7708320912371,35.6895635322923,0 -78.7708506060751,35.6895801521092,0 -78.7708320422652,35.6895808382341,0 -78.7707782354095,35.6904784872839,0 -78.7707309025981,35.6912744753712,0 -78.7707086005098,35.6916587713063,0 -78.7705891813294,35.6920025034265,0 -78.7704251622315,35.6924882048394,0 -78.7702620230512,35.6929746287092,0 -78.7700471815755,35.6936131033088,0 -78.7700347020138,35.6936498550044,0 -78.7687827161411,35.6928340998698,0 -78.7678404905959,35.692200636202,0 -78.7678210794501,35.6921883407354,0 -78.7678007905909,35.6921738803381,0 -78.7677910860573,35.6921673720619,0 -78.7677866726505,35.6921652003873,0 -78.7676552020623,35.6920834669145,0 -78.7676110846414,35.6920559814688,0 -78.7675404827552,35.6920169080682,0 -78.7674928214482,35.6919923001461,0 -78.7674292723938,35.6919597299142,0 -78.7674160301663,35.6919539359305,0 -78.7673851344045,35.691939455189,0 -78.7672968584922,35.6918989056902,0 -78.7670778788625,35.6918177252947,0 -78.7670788001121,35.6918047475401,0 -78.7671325472548,35.6909424334311,0 -78.7671409005244,35.6908040011856,0 -78.7671770189199,35.6902315291156,0 -78.7672122653465,35.6896547287607,0 -78.7672215271117,35.6895076451768,0 -78.7666355518277,35.6894906589434,0 -78.7667290501369,35.6892514380421,0 -78.7668082998018,35.6890489650796,0 -78.7677393100571,35.6886462170254,0 -78.7678751250086,35.688443851293,0 -78.7681858044529,35.6879829490991,0 -78.7702150678336,35.6870933735356,0 -78.7703596656123,35.6869076065011,0 -78.7707797278441,35.6868283580649,0 -78.7711126801475,35.6866097748732,0 -78.7715252196447,35.6866898695789,0 -78.7722952259568,35.6863192329016,0 -78.7722943500357,35.6869451333578,0 -78.7722950635987,35.6870057058574,0 -78.7722949743928,35.6870374334427,0 -78.7722941106266,35.6876590072765,0 -78.7722945260782,35.688139971809,0 -78.7722942522869,35.6885517108281,0 -78.7722939764654,35.6889641708776,0 -78.7722932464851,35.6895381530111,0 </coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark id="kml_9">
<name>kml_9</name>
<snippet> </snippet>
<description><![CDATA[<center><table><tr><th colspan='2' align='center'><em>Attributes</em></th></tr><tr bgcolor="#E3E3F3">
<th>ProjectNumber</th>
<td>05-SB-008</td>
</tr><tr bgcolor="">
<th>ProjectName</th>
<td>Renaissance at Regency, The</td>
</tr><tr bgcolor="#E3E3F3">
<th>Status</th>
<td>Active</td>
</tr><tr bgcolor="">
<th>Use</th>
<td>Residential</td>
</tr><tr bgcolor="#E3E3F3">
<th>Units</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Lots</th>
<td>95</td>
</tr><tr bgcolor="#E3E3F3">
<th>Building_Square__Footage</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Buildings</th>
<td>0</td>
</tr><tr bgcolor="#E3E3F3">
<th>Comments</th>
<td>95 SF lots</td>
</tr><tr bgcolor="">
<th>Submittal_Date</th>
<td>20050404</td>
</tr><tr bgcolor="#E3E3F3">
<th>Approval_Date</th>
<td>20050829</td>
</tr><tr bgcolor="">
<th>WebLink</th>
<td>RenaissanceAtRegencyCottages_05-SB-008</td>
</tr><tr bgcolor="#E3E3F3">
<th>Index</th>
<td>0</td>
</tr><tr bgcolor="">
<th>ExtWebLink</th>
<td>http://sitesubplans.townofcary.org/RenaissanceAtRegencyCottages_05-SB-008/planindex.htm</td>
</tr></table></center>]]></description>
<Style>
<LineStyle>
<color>ff70dcff</color>
</LineStyle>
</Style>
<ExtendedData>
<SchemaData schemaUrl="#kml_schema_ft_KML_GIS_DataRequest">
<SimpleData name="ProjectNumber">05-SB-008</SimpleData>
<SimpleData name="ProjectName">Renaissance at Regency, The</SimpleData>
<SimpleData name="Status">Active</SimpleData>
<SimpleData name="Use">Residential</SimpleData>
<SimpleData name="Units">0</SimpleData>
<SimpleData name="Lots">95</SimpleData>
<SimpleData name="Building_Square__Footage">0</SimpleData>
<SimpleData name="Buildings">0</SimpleData>
<SimpleData name="Comments">95 SF lots</SimpleData>
<SimpleData name="Submittal_Date">20050404</SimpleData>
<SimpleData name="Approval_Date">20050829</SimpleData>
<SimpleData name="WebLink">RenaissanceAtRegencyCottages_05-SB-008</SimpleData>
<SimpleData name="Index">0</SimpleData>
<SimpleData name="ExtWebLink">http://sitesubplans.townofcary.org/RenaissanceAtRegencyCottages_05-SB-008/planindex.htm</SimpleData>
</SchemaData>
</ExtendedData>
<MultiGeometry>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>-78.8027970551747,35.7227279505426,0 -78.8028085346985,35.7227344588309,0 -78.8030601969232,35.7228790816127,0 -78.8030681464741,35.7228826998576,0 -78.8030805102998,35.7228892095503,0 -78.8030981691529,35.722900054268,0 -78.8031370168929,35.7229246337117,0 -78.8033268311437,35.7230489657468,0 -78.8035113264082,35.7231790575102,0 -78.8036887341749,35.7233149061732,0 -78.8038590614343,35.7234536274703,0 -78.8040779087125,35.7236400176854,0 -78.8040884972217,35.7236494087237,0 -78.8041617256105,35.7237180288386,0 -78.8042278695167,35.7237909639752,0 -78.8042860446631,35.7238682127233,0 -78.8043371387915,35.7239483343675,0 -78.8043450623619,35.7239627686359,0 -78.8043459466318,35.7239627700571,0 -78.8043485872417,35.7239678218377,0 -78.8043503470675,35.7239714300494,0 -78.8043521068935,35.723975038261,0 -78.8043538684624,35.7239779253987,0 -78.8043547492469,35.7239793689676,0 -78.8043573898579,35.723984420748,0 -78.8043600304692,35.7239894725283,0 -78.8043626710809,35.7239945243086,0 -78.8043626693382,35.7239952453825,0 -78.8043644274226,35.7239995746677,0 -78.8043670680348,35.7240046264479,0 -78.8043688278623,35.7240082346593,0 -78.8043697086474,35.724009678228,0 -78.8043714684751,35.7240132864393,0 -78.8043732265603,35.7240176157245,0 -78.8043749863884,35.7240212239357,0 -78.8043767462165,35.7240248321469,0 -78.8043793868304,35.7240298839268,0 -78.8043820274445,35.7240349357066,0 -78.8043829047452,35.7240378214229,0 -78.8043837820458,35.7240407071393,0 -78.8043855418748,35.7240443153503,0 -78.8043864226606,35.7240457589189,0 -78.8043881824899,35.72404936713,0 -78.8043890632758,35.7240508106985,0 -78.8043908196203,35.7240558610572,0 -78.8043934602361,35.7240609128367,0 -78.8043952148387,35.7240666842692,0 -78.804396971184,35.7240717346278,0 -78.8043987310143,35.7240753428386,0 -78.8043996118007,35.7240767864071,0 -78.8044013681465,35.7240818367656,0 -78.8044031227502,35.7240876081979,0 -78.8044048825811,35.7240912164087,0 -78.8044057633677,35.7240926599771,0 -78.8044075197142,35.7240977103355,0 -78.8044092778033,35.72410203962,0 -78.8044101533633,35.7241056464099,0 -78.8044119097104,35.7241106967682,0 -78.8044136643155,35.7241164682003,0 -78.8044154241475,35.7241200764109,0 -78.8044171822374,35.7241244056952,0 -78.8044189385853,35.7241294560534,0 -78.8044206949335,35.7241345064115,0 -78.8044224495397,35.7241402778435,0 -78.8044233216165,35.7241453267809,0 -78.8044250762231,35.7241510982128,0 -78.8044268325721,35.7241561485708,0 -78.8044285889213,35.7241611989288,0 -78.8044303435287,35.7241669703606,0 -78.8044320998784,35.7241720207185,0 -78.804432970214,35.7241777907296,0 -78.8044338457759,35.7241813975193,0 -78.8044356038682,35.7241857268033,0 -78.8044364794303,35.7241893335929,0 -78.8044373532505,35.7241936614564,0 -78.8044382288128,35.724197268246,0 -78.8044391026332,35.7242015961095,0 -78.8044408572422,35.724207367541,0 -78.8044417293208,35.7242124164782,0 -78.8044434839302,35.7242181879097,0 -78.804444359493,35.7242217946992,0 -78.804445233314,35.7242261225626,0 -78.804446108877,35.7242297293521,0 -78.8044469826981,35.7242340572155,0 -78.8044478530355,35.7242398272264,0 -78.8044496093878,35.7242448775839,0 -78.804449605904,35.7242463197315,0 -78.8044496024202,35.7242477618792,0 -78.8044504779836,35.7242513686687,0 -78.8044504744998,35.7242528108163,0 -78.8044513448376,35.7242585808271,0 -78.8044531011906,35.7242636311846,0 -78.8044530977068,35.7242650733322,0 -78.8044530907393,35.7242679576274,0 -78.8044539645612,35.7242722854907,0 -78.8044548401251,35.7242758922801,0 -78.8044557139472,35.7242802201433,0 -78.8044565842857,35.7242859901541,0 -78.8044565825439,35.7242867112279,0 -78.8044565755764,35.7242895955231,0 -78.8044574493988,35.7242939233862,0 -78.8044583214794,35.7242989723232,0 -78.8044591953019,35.7243033001863,0 -78.8044591883346,35.7243061844815,0 -78.8044591848509,35.7243076266291,0 -78.8044600586736,35.7243119544922,0 -78.8044609342382,35.7243155612816,0 -78.8044609307546,35.7243170034291,0 -78.8044609237873,35.7243198877243,0 -78.8044609203037,35.7243213298719,0 -78.8044617958684,35.7243249366612,0 -78.8044617889012,35.7243278209564,0 -78.8044617854176,35.724329263104,0 -78.8044626592406,35.724333590967,0 -78.8044626522734,35.7243364752622,0 -78.8044626487898,35.7243379174098,0 -78.8044635243548,35.724341524199,0 -78.8044635173876,35.7243444084942,0 -78.8044635139041,35.7243458506418,0 -78.8044643842438,35.7243516206524,0 -78.804464382502,35.7243523417262,0 -78.8044643755349,35.7243552260213,0 -78.8044643685677,35.7243581103165,0 -78.8044643650842,35.724359552464,0 -78.8044652389077,35.7243638803271,0 -78.8044652336823,35.7243660435484,0 -78.8044652301988,35.724367485696,0 -78.8044661005389,35.7243732557065,0 -78.8044660866047,35.7243790242968,0 -78.8044660744123,35.7243840718132,0 -78.8044669447527,35.7243898418238,0 -78.8044669412692,35.7243912839713,0 -78.8044669325603,35.7243948893402,0 -78.8044669186262,35.7244006579304,0 -78.8044669046921,35.7244064265206,0 -78.8044668924998,35.724411474037,0 -78.8044668820492,35.7244158004796,0 -78.8044668715986,35.7244201269223,0 -78.804466861148,35.7244244533649,0 -78.8044668594062,35.7244251744387,0 -78.8044668454721,35.7244309430288,0 -78.8044668402468,35.7244331062501,0 -78.804466831538,35.7244367116189,0 -78.8044668193456,35.7244417591353,0 -78.804466808895,35.7244460855779,0 -78.8044667984444,35.7244504120205,0 -78.8044667897356,35.7244540173893,0 -78.804466779285,35.7244583438319,0 -78.8044667653509,35.7244641124219,0 -78.8044667531585,35.7244691599383,0 -78.8044658584325,35.7244734849605,0 -78.8044658514654,35.7244763692555,0 -78.8044658444983,35.7244792535506,0 -78.804465839273,35.7244814167719,0 -78.8044658357894,35.7244828589194,0 -78.8044649375796,35.7244886260891,0 -78.8044649236453,35.7244943946791,0 -78.8044649149364,35.7244980000479,0 -78.8044649114529,35.7244994421954,0 -78.8044640132428,35.7245052093651,0 -78.8044640097592,35.7245066515126,0 -78.8044640045338,35.7245088147339,0 -78.8044640010503,35.7245102568814,0 -78.80446310284,35.724516024051,0 -78.8044630993564,35.7245174661985,0 -78.8044630923892,35.7245203504935,0 -78.8044621994042,35.7245239544419,0 -78.8044621976624,35.7245246755157,0 -78.8044621959206,35.7245253965894,0 -78.8044621889534,35.7245282808844,0 -78.8044612942265,35.7245326059065,0 -78.8044603977576,35.7245376520024,0 -78.804460394274,35.7245390941499,0 -78.8044603873066,35.7245419784448,0 -78.804460383823,35.7245434205923,0 -78.8044594890958,35.7245477456144,0 -78.8044585961104,35.7245513495628,0 -78.8044585926267,35.7245527917103,0 -78.8044585856593,35.7245556760052,0 -78.8044576909319,35.7245600010273,0 -78.8044567944625,35.7245650471231,0 -78.8044567909788,35.7245664892706,0 -78.8044567840114,35.7245693735655,0 -78.8044558892837,35.7245736985875,0 -78.8044549962978,35.7245773025358,0 -78.80445410157,35.7245816275578,0 -78.8044532051001,35.7245866736536,0 -78.8044532016163,35.724588115801,0 -78.8044531946488,35.724591000096,0 -78.8044522999207,35.7245953251179,0 -78.8044514034506,35.7246003712136,0 -78.8044505052384,35.724606138383,0 -78.8044496157358,35.7246083001838,0 -78.8044487140396,35.7246155095006,0 -78.8044460333374,35.7246270424189,0 -78.8044451403505,35.7246306463671,0 -78.8044442473634,35.7246342503152,0 -78.8044433526344,35.7246385753371,0 -78.804441571886,35.7246436200122,0 -78.8044406736726,35.7246493871814,0 -78.8044397806852,35.7246529911295,0 -78.8044388859557,35.7246573161513,0 -78.8044379947102,35.7246601990256,0 -78.8044371034646,35.7246630819,0 -78.8044370999805,35.7246645240474,0 -78.804436213961,35.7246652437006,0 -78.8044362069928,35.7246681279955,0 -78.8044344279853,35.7246724515967,0 -78.8044335349974,35.7246760555447,0 -78.8044326402673,35.7246803805664,0 -78.8044317472792,35.7246839845144,0 -78.8044299647869,35.724689750263,0 -78.8044281840365,35.7246947949378,0 -78.8044281805523,35.7246962370852,0 -78.8044255102973,35.7247034435605,0 -78.8044255050709,35.7247056067816,0 -78.8044237243199,35.7247106514563,0 -78.8044219453108,35.7247149750573,0 -78.8044210523219,35.7247185790052,0 -78.8044192733125,35.7247229026061,0 -78.8044183803233,35.7247265065539,0 -78.8044165978292,35.7247322723022,0 -78.8044148205615,35.7247358748294,0 -78.8044139258297,35.7247401998509,0 -78.8044121450772,35.7247452445253,0 -78.8044103643245,35.7247502891998,0 -78.8044076975508,35.7247560535272,0 -78.8044068045607,35.7247596574749,0 -78.8044050255497,35.7247639810756,0 -78.8044032482808,35.7247675836025,0 -78.8044023535481,35.7247719086239,0 -78.8044005762789,35.7247755111508,0 -78.8043943445097,35.7247928069736,0 -78.8043712260463,35.7248454084084,0 -78.8043472285013,35.7248958451958,0 -78.8043419001635,35.7249052106263,0 -78.8040957138121,35.7254175000328,0 -78.8040930452488,35.7254239854256,0 -78.8040912679516,35.7254275879473,0 -78.8040894923993,35.7254304693953,0 -78.8040886046231,35.7254319101193,0 -78.8040868273254,35.7254355126409,0 -78.8040850500276,35.7254391151625,0 -78.8040832709845,35.7254434387575,0 -78.8040814936863,35.725447041279,0 -78.8040797128976,35.7254520859475,0 -78.8040779355991,35.7254556884689,0 -78.8040761565552,35.7254600120638,0 -78.8040743792564,35.7254636145852,0 -78.8040726002121,35.7254679381801,0 -78.804069935136,35.7254729814252,0 -78.8040681543459,35.7254780260935,0 -78.8040654892692,35.7254830693386,0 -78.8040637119694,35.7254866718598,0 -78.804061932924,35.7254909954544,0 -78.8040601556239,35.7254945979756,0 -78.8040592608648,35.7254989229934,0 -78.8040565957868,35.7255039662383,0 -78.8040548149953,35.7255090109063,0 -78.8040521499167,35.7255140541511,0 -78.8040503708701,35.7255183777455,0 -78.8040485935689,35.7255219802664,0 -78.8040468127764,35.7255270249344,0 -78.8040450302382,35.7255327906758,0 -78.8040423651582,35.7255378339202,0 -78.804040584365,35.725542878588,0 -78.8040388035716,35.7255479232558,0 -78.8040361367451,35.7255536875736,0 -78.8040343559512,35.7255587322413,0 -78.8040325786483,35.7255623347619,0 -78.8040307995996,35.7255666583561,0 -78.8040290188051,35.7255717030236,0 -78.8040272415017,35.7255753055442,0 -78.80402634674,35.7255796305617,0 -78.8040245659449,35.7255846752292,0 -78.8040227868953,35.7255889988232,0 -78.8040210095913,35.7255926013436,0 -78.8040192287955,35.725597646011,0 -78.8040174497453,35.7256019696049,0 -78.8040165567286,35.7256055735488,0 -78.8040147776781,35.7256098971426,0 -78.8040138846611,35.7256135010865,0 -78.8040112178307,35.7256192654037,0 -78.8040103248135,35.7256228693475,0 -78.8040085457623,35.7256271929413,0 -78.8040076527449,35.7256307968851,0 -78.8040058736934,35.7256351204787,0 -78.8040040928958,35.7256401651459,0 -78.8040023120979,35.7256452098129,0 -78.8040014173341,35.7256495348302,0 -78.8039996400278,35.7256531373502,0 -78.8039978574834,35.7256589030907,0 -78.8039960766847,35.7256639477577,0 -78.8039942958859,35.7256689924246,0 -78.8039934011213,35.7256733174418,0 -78.8039916238142,35.7256769199617,0 -78.8039898412687,35.725682685702,0 -78.8039880604691,35.7256877303688,0 -78.803987165704,35.7256920553859,0 -78.8039862726849,35.7256956593295,0 -78.8039844936308,35.7256999829228,0 -78.8039836006115,35.7257035868664,0 -78.8039818215571,35.7257079104596,0 -78.8039809285376,35.7257115144031,0 -78.8039800337719,35.7257158394201,0 -78.803978254717,35.7257201630132,0 -78.8039782512247,35.7257216051602,0 -78.8039773651895,35.7257223248098,0 -78.8039773582049,35.7257252091037,0 -78.8039755774035,35.7257302537703,0 -78.8039737948557,35.7257360195102,0 -78.8039720140539,35.7257410641767,0 -78.8039711192874,35.7257453891936,0 -78.803970226267,35.725748993137,0 -78.8039684472109,35.72575331673,0 -78.8039675541903,35.7257569206734,0 -78.8039666594233,35.7257612456902,0 -78.8039657646563,35.7257655707071,0 -78.8039639838533,35.7257706153734,0 -78.803963089086,35.7257749403902,0 -78.8039621960649,35.7257785443335,0 -78.8039604135151,35.7257843100732,0 -78.8039595170012,35.7257893561635,0 -78.8039577379436,35.7257936797562,0 -78.8039568449221,35.7257972836995,0 -78.8039559501541,35.7258016087162,0 -78.8039550553861,35.7258059337329,0 -78.8039532745816,35.725810978399,0 -78.8039523780669,35.7258160244891,0 -78.8039514832985,35.7258203495057,0 -78.80395058853,35.7258246745224,0 -78.8039496955078,35.7258282784656,0 -78.8039488007391,35.7258326034822,0 -78.80394702168,35.7258369270747,0 -78.8039461286575,35.7258405310179,0 -78.8039452303957,35.7258462981813,0 -78.8039443338801,35.7258513442713,0 -78.8039434426038,35.725854227141,0 -78.8039425513274,35.7258571100106,0 -78.8039416548116,35.7258621561006,0 -78.8039407565491,35.725867923264,0 -78.8039389757423,35.7258729679298,0 -78.8039380809726,35.7258772929463,0 -78.8039371879492,35.7258808968893,0 -78.8039362949258,35.7258845008323,0 -78.8039362896863,35.7258866640526,0 -78.8039353931697,35.7258917101425,0 -78.8039344949065,35.7258974773058,0 -78.8039336001362,35.7259018023222,0 -78.8039327071124,35.7259054062652,0 -78.8039318088488,35.7259111734285,0 -78.8039309158249,35.7259147773714,0 -78.8039300210542,35.7259191023878,0 -78.8039291262835,35.7259234274041,0 -78.8039282332593,35.725927031347,0 -78.8039273384883,35.7259313563634,0 -78.8039264437173,35.7259356813797,0 -78.8039264402241,35.7259371235265,0 -78.8039264349843,35.7259392867468,0 -78.8039255402131,35.7259436117631,0 -78.8039246454419,35.7259479367794,0 -78.8039237524171,35.7259515407222,0 -78.8039228541524,35.7259573078853,0 -78.8039219576343,35.725962353975,0 -78.8039210593693,35.725968121138,0 -78.8039201645975,35.7259724461543,0 -78.8039201593575,35.7259746093745,0 -78.8039201558642,35.7259760515214,0 -78.8039192575989,35.7259818186844,0 -78.8039183610803,35.725986864774,0 -78.8039174628148,35.725992631937,0 -78.8039165645491,35.7259983991,0 -78.8039156715235,35.7260020030427,0 -78.8039147732577,35.7260077702056,0 -78.8038428014906,35.7265145708043,0 -78.8036437210235,35.7272901276717,0 -78.8036365626114,35.7273247277706,0 -78.8034020094644,35.7274115994105,0 -78.8032394748276,35.7277019304108,0 -78.803238590517,35.7277019289816,0 -78.8032377027007,35.7277033696984,0 -78.8030058413251,35.7277736601735,0 -78.8025665583809,35.7276828140892,0 -78.8021700788983,35.7278083587378,0 -78.8020039770932,35.7281087773256,0 -78.802002208463,35.7281087744492,0 -78.8020013206203,35.7281102151567,0 -78.8017589670669,35.7281307319593,0 -78.8015023439118,35.7278397202647,0 -78.801225345585,35.7272040004288,0 -78.8009466534263,35.7268992509905,0 -78.8004963899023,35.7266021516774,0 -78.8003118665548,35.7261237756337,0 -78.8001045864666,35.7259092758072,0 -78.7998658956335,35.7258814827471,0 -78.8003205996782,35.7243759006622,0 -78.8003830145397,35.7241668907902,0 -78.8010974547938,35.723829154131,0 -78.8018641189789,35.7238289621942,0 -78.8020988703282,35.7232957472155,0 -78.8022233541544,35.7230147295354,0 -78.8022544776181,35.7229433934806,0 -78.8022847150078,35.7228727770541,0 -78.8023941000792,35.7226184144903,0 -78.8024216721431,35.7225528412357,0 -78.8025153063601,35.7225926524054,0 -78.8026884234637,35.7226736937448,0 -78.8027970551747,35.7227279505426,0 </coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>-78.8043186475664,35.7239158561953,0 -78.8043195266065,35.7239180208384,0 -78.8043195248635,35.7239187419122,0 -78.8043186475664,35.7239158561953,0 </coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</MultiGeometry>
</Placemark>
<Placemark id="kml_10">
<name>kml_10</name>
<snippet> </snippet>
<description><![CDATA[<center><table><tr><th colspan='2' align='center'><em>Attributes</em></th></tr><tr bgcolor="#E3E3F3">
<th>ProjectNumber</th>
<td>05-SB-010</td>
</tr><tr bgcolor="">
<th>ProjectName</th>
<td>Amberly Village Square</td>
</tr><tr bgcolor="#E3E3F3">
<th>Status</th>
<td>Active</td>
</tr><tr bgcolor="">
<th>Use</th>
<td>Residential</td>
</tr><tr bgcolor="#E3E3F3">
<th>Units</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Lots</th>
<td>453</td>
</tr><tr bgcolor="#E3E3F3">
<th>Building_Square__Footage</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Buildings</th>
<td>0</td>
</tr><tr bgcolor="#E3E3F3">
<th>Comments</th>
<td>453 lots</td>
</tr><tr bgcolor="">
<th>Submittal_Date</th>
<td>20050404</td>
</tr><tr bgcolor="#E3E3F3">
<th>Approval_Date</th>
<td>20050829</td>
</tr><tr bgcolor="">
<th>WebLink</th>
<td>VillageSqare_at_Amberly_05-SB-010</td>
</tr><tr bgcolor="#E3E3F3">
<th>Index</th>
<td>0</td>
</tr><tr bgcolor="">
<th>ExtWebLink</th>
<td>http://sitesubplans.townofcary.org/VillageSqare_at_Amberly_05-SB-010/planindex.htm</td>
</tr></table></center>]]></description>
<Style>
<LineStyle>
<color>ff70dcff</color>
</LineStyle>
</Style>
<ExtendedData>
<SchemaData schemaUrl="#kml_schema_ft_KML_GIS_DataRequest">
<SimpleData name="ProjectNumber">05-SB-010</SimpleData>
<SimpleData name="ProjectName">Amberly Village Square</SimpleData>
<SimpleData name="Status">Active</SimpleData>
<SimpleData name="Use">Residential</SimpleData>
<SimpleData name="Units">0</SimpleData>
<SimpleData name="Lots">453</SimpleData>
<SimpleData name="Building_Square__Footage">0</SimpleData>
<SimpleData name="Buildings">0</SimpleData>
<SimpleData name="Comments">453 lots</SimpleData>
<SimpleData name="Submittal_Date">20050404</SimpleData>
<SimpleData name="Approval_Date">20050829</SimpleData>
<SimpleData name="WebLink">VillageSqare_at_Amberly_05-SB-010</SimpleData>
<SimpleData name="Index">0</SimpleData>
<SimpleData name="ExtWebLink">http://sitesubplans.townofcary.org/VillageSqare_at_Amberly_05-SB-010/planindex.htm</SimpleData>
</SchemaData>
</ExtendedData>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>-78.9129336635806,35.833364495173,0 -78.9129336620274,35.8333659372714,0 -78.9129290941133,35.8334964440117,0 -78.9129156714763,35.833626944421,0 -78.9128925093783,35.8337567168145,0 -78.9128613794975,35.8338850414035,0 -78.9128213971002,35.8340111964999,0 -78.9127725621482,35.8341351820952,0 -78.9124351464403,35.8341803663227,0 -78.9111545582815,35.8343510495567,0 -78.9106203315812,35.834606631617,0 -78.9099269561619,35.8346450579533,0 -78.9079188243623,35.8337422457091,0 -78.9062772495141,35.8336631213406,0 -78.905185813717,35.8333637627471,0 -78.904232742777,35.8336225956807,0 -78.9042508399362,35.833295253291,0 -78.9043231451806,35.832055104087,0 -78.9043287796157,35.8317832725943,0 -78.9043297145601,35.8317414524158,0 -78.9043792746082,35.8295170505373,0 -78.9002291535689,35.8296197189326,0 -78.9012415563858,35.8278763210258,0 -78.9036167580851,35.8281695268711,0 -78.9039886555755,35.827403342937,0 -78.9029891831696,35.8272799728898,0 -78.9020543383943,35.8271645781513,0 -78.9016152458366,35.8271101456909,0 -78.9016844858701,35.8269631070711,0 -78.9017741440797,35.8267713796695,0 -78.9018549339229,35.8265911818737,0 -78.901915311282,35.826450625425,0 -78.901954388338,35.8263518728,0 -78.9019924496633,35.8263605560271,0 -78.9020358215966,35.8263706856135,0 -78.9021402881633,35.8263787010929,0 -78.9022198826852,35.8264537543274,0 -78.9022047699618,35.8265042158107,0 -78.902337420337,35.8266355535363,0 -78.9027030100218,35.8267007405303,0 -78.902863321941,35.8266547210908,0 -78.902994353386,35.8266605938487,0 -78.9030252954854,35.8266995552484,0 -78.9031509990969,35.8267184025255,0 -78.9032457458617,35.8267105462008,0 -78.9032731758519,35.8267249889994,0 -78.9034857249175,35.8266797312334,0 -78.9035892679373,35.8267201920543,0 -78.9035945536527,35.82674254883,0 -78.9035980745985,35.8267598568495,0 -78.9036068890059,35.8267930321866,0 -78.9036644122436,35.8268161513074,0 -78.9037441133497,35.8268032353439,0 -78.9038451908573,35.826683620577,0 -78.903912481711,35.8266829525877,0 -78.904013430403,35.8266714952977,0 -78.9040470950799,35.8266549376183,0 -78.9040630415911,35.8266470186036,0 -78.9041064515698,35.8266254212169,0 -78.9041551773077,35.8266009437885,0 -78.9042145345728,35.8265707062832,0 -78.9042569711216,35.8266233763808,0 -78.9044465340792,35.8265485357707,0 -78.9044675686918,35.8259810846745,0 -78.9059673723643,35.8260183034662,0 -78.906252642703,35.8258671023534,0 -78.9067926847976,35.8259050111804,0 -78.9074082933977,35.8264469900812,0 -78.9077022345308,35.8264551445704,0 -78.9086028096719,35.8263397338544,0 -78.9086453692592,35.8270694698054,0 -78.9086611312887,35.8272245076512,0 -78.9081651406489,35.8273705084014,0 -78.9082003635088,35.827540703027,0 -78.9081586725157,35.8276084504374,0 -78.9081754460682,35.8276517261463,0 -78.9081639054922,35.8276783963466,0 -78.9081921860658,35.8277245649255,0 -78.9080857463175,35.8278924896341,0 -78.9080786573147,35.8278975316466,0 -78.9080724307614,35.8279227637409,0 -78.9080245440618,35.8279883432709,0 -78.9080139027447,35.8280027562636,0 -78.9080014922463,35.8280157258178,0 -78.9079864263363,35.8280279723153,0 -78.9079704774746,35.8280380549909,0 -78.9079527594315,35.8280466942263,0 -78.9079341584383,35.8280531696389,0 -78.9079137882653,35.8280582016099,0 -78.9078934213758,35.8280603493757,0 -78.907906587527,35.8281613064757,0 -78.9078072956953,35.8282715522336,0 -78.9077656500648,35.8282989206693,0 -78.907761205726,35.8283140593783,0 -78.9077549905601,35.828329196747,0 -78.907746119976,35.8283436110547,0 -78.9077354802084,35.8283565819205,0 -78.9077230704341,35.8283688303944,0 -78.9077088914757,35.8283796354255,0 -78.9076938279234,35.8283897187341,0 -78.9076769960106,35.8283976375484,0 -78.9076592803282,35.8284041135889,0 -78.9076362340372,35.8284264487101,0 -78.9075839632996,35.8284538090313,0 -78.907531675207,35.8284963113876,0 -78.9075281005575,35.8285251507156,0 -78.907571395204,35.8286044991587,0 -78.9075340931049,35.828704696952,0 -78.9075305398908,35.8287147889699,0 -78.9074959871773,35.8287335100787,0 -78.9074933160741,35.8287464869685,0 -78.9074577838241,35.8288474071278,0 -78.9074391669212,35.8288675824184,0 -78.9075169847758,35.8289541675895,0 -78.9076250801188,35.8288893549715,0 -78.9076800139672,35.8288562282463,0 -78.9081363180132,35.8293598664589,0 -78.9081881600457,35.829710336173,0 -78.9082119781797,35.8297882275834,0 -78.9083473384153,35.8298856712698,0 -78.9082964828489,35.8302259689086,0 -78.9081564909639,35.830308063279,0 -78.908115678205,35.830380858627,0 -78.9081014407486,35.8304428582392,0 -78.9080142971812,35.8307687073259,0 -78.9080062904812,35.8308018696035,0 -78.9080009392747,35.8308357549348,0 -78.9079964743249,35.8308689198839,0 -78.9079946648736,35.8309028078872,0 -78.9079787743568,35.8316389882565,0 -78.9079769394358,35.8316952287876,0 -78.9079733327909,35.8317521890304,0 -78.9079679552392,35.831809147935,0 -78.9079608067769,35.8318661055012,0 -78.9079277757022,35.8321025850008,0 -78.9082164353701,35.8321013605783,0 -78.9084918115859,35.8321015676018,0 -78.9086972426318,35.8320966742859,0 -78.9088947378848,35.8320622116391,0 -78.9090506166658,35.8320277176303,0 -78.9092198094962,35.8319643913324,0 -78.9093128402573,35.8319125449659,0 -78.9094120747151,35.8318556557866,0 -78.9094785312068,35.8318131631936,0 -78.9095698068591,35.8317468943217,0 -78.9096548898565,35.8316755734394,0 -78.9097328955558,35.831598478854,0 -78.909789634268,35.8315357894853,0 -78.9102604298393,35.8309751598415,0 -78.9102569096849,35.8309556888901,0 -78.9097253181378,35.8304548873784,0 -78.90977582823,35.8304188722482,0 -78.9100009054896,35.8302604075133,0 -78.9100779983946,35.8302063856149,0 -78.91018236016,35.8303138990846,0 -78.910341566435,35.8304690421439,0 -78.910508748648,35.8306184224385,0 -78.9106812488957,35.8307634800899,0 -78.9107847545935,35.8308457556314,0 -78.9107918317507,35.8308515292138,0 -78.9107997895756,35.8308616297426,0 -78.9108015572742,35.8308645152376,0 -78.910892688503,35.8309273132691,0 -78.9112616380966,35.831182113172,0 -78.9114341811866,35.8312903961952,0 -78.9116359342237,35.8314080738,0 -78.9116748702352,35.8314297335247,0 -78.9116819498703,35.8314333439053,0 -78.9118111417199,35.8315098687599,0 -78.9119350156248,35.8315914369852,0 -78.9120535708077,35.8316787696465,0 -78.9121650371591,35.8317711444334,0 -78.9122703001272,35.831868562002,0 -78.9123693597093,35.8319710223678,0 -78.9124356858695,35.8320475013383,0 -78.9124427593449,35.8320568800701,0 -78.912445410239,35.8320619293246,0 -78.9124489395589,35.8320734686607,0 -78.9124507003147,35.8320828435763,0 -78.9125090637941,35.8321535483844,0 -78.9126116136264,35.8323043213996,0 -78.9126178071441,35.8323086521395,0 -78.9126284232687,35.8323173123489,0 -78.9126319611981,35.8323209201347,0 -78.9126390347202,35.8323302988542,0 -78.9126894099569,35.8324190240947,0 -78.9127494918837,35.8325387614079,0 -78.9128016017355,35.8326613771839,0 -78.9128448547974,35.8327861497504,0 -78.9128801372718,35.8329123586999,0 -78.9129065628821,35.8330407244558,0 -78.9129241331417,35.8331698049252,0 -78.9129328487851,35.8332988790625,0 -78.9129336635806,35.833364495173,0 </coordinates>
</LinearRing>
</outerBoundaryIs>
<innerBoundaryIs>
<LinearRing>
<coordinates>-78.9078914761928,35.8320989523285,0 -78.9079277757022,35.8321025850008,0 -78.9078994354211,35.8321076109433,0 -78.9078914761928,35.8320989523285,0 </coordinates>
</LinearRing>
</innerBoundaryIs>
<innerBoundaryIs>
<LinearRing>
<coordinates>-78.9107819844759,35.8309488638085,0 -78.9107890759648,35.8309416584948,0 -78.9107917346761,35.8309394972893,0 -78.9107997139914,35.8309301294735,0 -78.9108059240138,35.8309193182618,0 -78.9108103639479,35.8309077847043,0 -78.9108112629128,35.8308955275056,0 -78.9108103902003,35.8308839900609,0 -78.910806857984,35.8308753348719,0 -78.9108236670392,35.8308883260765,0 -78.9108422453912,35.8309027606735,0 -78.9107819844759,35.8309488638085,0 </coordinates>
</LinearRing>
</innerBoundaryIs>
<innerBoundaryIs>
<LinearRing>
<coordinates>-78.9105120732928,35.8308145505954,0 -78.9104669621715,35.8307726965476,0 -78.9105068460639,35.8307373943639,0 -78.9105546166963,35.8307763661473,0 -78.9105120732928,35.8308145505954,0 </coordinates>
</LinearRing>
</innerBoundaryIs>
</Polygon>
</Placemark>
<Placemark id="kml_11">
<name>kml_11</name>
<snippet> </snippet>
<description><![CDATA[<center><table><tr><th colspan='2' align='center'><em>Attributes</em></th></tr><tr bgcolor="#E3E3F3">
<th>ProjectNumber</th>
<td>05-SB-013</td>
</tr><tr bgcolor="">
<th>ProjectName</th>
<td>Renaissance @ Regency Estates, The</td>
</tr><tr bgcolor="#E3E3F3">
<th>Status</th>
<td>Active</td>
</tr><tr bgcolor="">
<th>Use</th>
<td>Residential</td>
</tr><tr bgcolor="#E3E3F3">
<th>Units</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Lots</th>
<td>32</td>
</tr><tr bgcolor="#E3E3F3">
<th>Building_Square__Footage</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Buildings</th>
<td>0</td>
</tr><tr bgcolor="#E3E3F3">
<th>Comments</th>
<td>single family lots</td>
</tr><tr bgcolor="">
<th>Submittal_Date</th>
<td>20050502</td>
</tr><tr bgcolor="#E3E3F3">
<th>Approval_Date</th>
<td>20050815</td>
</tr><tr bgcolor="">
<th>WebLink</th>
<td>RenaissanceAtRegencyTheEstates_05-SB-013</td>
</tr><tr bgcolor="#E3E3F3">
<th>Index</th>
<td>0</td>
</tr><tr bgcolor="">
<th>ExtWebLink</th>
<td>http://sitesubplans.townofcary.org/RenaissanceAtRegencyTheEstates_05-SB-013/planindex.htm</td>
</tr></table></center>]]></description>
<Style>
<LineStyle>
<color>ff70dcff</color>
</LineStyle>
</Style>
<ExtendedData>
<SchemaData schemaUrl="#kml_schema_ft_KML_GIS_DataRequest">
<SimpleData name="ProjectNumber">05-SB-013</SimpleData>
<SimpleData name="ProjectName">Renaissance @ Regency Estates, The</SimpleData>
<SimpleData name="Status">Active</SimpleData>
<SimpleData name="Use">Residential</SimpleData>
<SimpleData name="Units">0</SimpleData>
<SimpleData name="Lots">32</SimpleData>
<SimpleData name="Building_Square__Footage">0</SimpleData>
<SimpleData name="Buildings">0</SimpleData>
<SimpleData name="Comments">single family lots</SimpleData>
<SimpleData name="Submittal_Date">20050502</SimpleData>
<SimpleData name="Approval_Date">20050815</SimpleData>
<SimpleData name="WebLink">RenaissanceAtRegencyTheEstates_05-SB-013</SimpleData>
<SimpleData name="Index">0</SimpleData>
<SimpleData name="ExtWebLink">http://sitesubplans.townofcary.org/RenaissanceAtRegencyTheEstates_05-SB-013/planindex.htm</SimpleData>
</SchemaData>
</ExtendedData>
<Polygon>
<outerBoundaryIs>
<LinearRing>
<coordinates>-78.8024492036893,35.7225038526795,0 -78.8024216721431,35.7225528412357,0 -78.8018641189789,35.7238289621942,0 -78.8010974547938,35.723829154131,0 -78.8003830145397,35.7241668907902,0 -78.7998676659978,35.7258807645811,0 -78.7995335005375,35.7258412766565,0 -78.7994217851505,35.7259600702372,0 -78.7990883624845,35.7259775473436,0 -78.79879533571,35.7261082992843,0 -78.7978463486777,35.7261629711118,0 -78.7975651017857,35.7261790885228,0 -78.7974202993834,35.7250301729397,0 -78.7959470248713,35.7243506214617,0 -78.7955299490164,35.7238805006825,0 -78.7956043095264,35.723848177099,0 -78.7956441452945,35.7238309381327,0 -78.7956822161494,35.7238122540374,0 -78.7957211712547,35.723793571414,0 -78.7957592438936,35.7237741662207,0 -78.7957964340658,35.7237540384583,0 -78.7958336242196,35.7237339106843,0 -78.7958708161731,35.7237130618251,0 -78.7959071256588,35.7236914903981,0 -78.7959425526763,35.7236691964041,0 -78.7959779796742,35.7236469023997,0 -78.7960125242037,35.7236238858292,0 -78.7960470705303,35.7236001481749,0 -78.7960807325712,35.7235764090295,0 -78.7961143964085,35.7235519488007,0 -78.7961471759605,35.7235274870817,0 -78.7961790748591,35.7235015817255,0 -78.7962109737374,35.7234756763606,0 -78.7962419883311,35.7234497695072,0 -78.7962730047196,35.7234231415718,0 -78.7963031386388,35.7233957910748,0 -78.7963323882743,35.7233684390907,0 -78.7963607554411,35.7233403645463,0 -78.796389124402,35.7233115689211,0 -78.7964166090803,35.7232827718103,0 -78.7964440937391,35.723253974693,0 -78.7964698116681,35.7232244535386,0 -78.796495531391,35.7231942113045,0 -78.7965212510947,35.7231639690647,0 -78.7965452022579,35.7231337238635,0 -78.7965691552153,35.7231027575833,0 -78.7965922257062,35.7230710687467,0 -78.7966144119195,35.7230393784281,0 -78.7966365981154,35.7230076881051,0 -78.7966570175873,35.7229752737497,0 -78.7966774370429,35.7229428593906,0 -78.7966978582931,35.7229097239537,0 -78.7967165110109,35.7228765855598,0 -78.7967342794559,35.7228434456863,0 -78.7967520496968,35.7228095847359,0 -78.7967689356661,35.7227757223062,0 -78.7971698131997,35.7219471521866,0 -78.7971715889219,35.7219442708364,0 -78.7971724803963,35.7219413880128,0 -78.7971742543116,35.7219392277367,0 -78.7971760282267,35.7219370674606,0 -78.7971769197009,35.721934184637,0 -78.7971786936159,35.7219320243608,0 -78.79717958509,35.7219291415372,0 -78.7971813590048,35.721926981261,0 -78.7971831347261,35.7219240999106,0 -78.7971840243933,35.7219219381611,0 -78.7971858001144,35.7219190568106,0 -78.7971866897815,35.7219168950611,0 -78.7971884655024,35.7219140137106,0 -78.7971893551694,35.7219118519611,0 -78.7971911308901,35.7219089706105,0 -78.7971920205569,35.721906808861,0 -78.7971937962774,35.7219039275104,0 -78.7971955701913,35.721901767234,0 -78.7971964616644,35.7218988844102,0 -78.7971982355782,35.7218967241337,0 -78.7971991270511,35.7218938413099,0 -78.7972009009646,35.7218916810334,0 -78.7972017924374,35.7218887982095,0 -78.7972035663508,35.721886637933,0 -78.7972044578234,35.7218837551091,0 -78.7972062317366,35.7218815948326,0 -78.7972071232091,35.7218787120087,0 -78.7972088971221,35.721876551732,0 -78.7972097885944,35.7218736689081,0 -78.7972115625072,35.7218715086315,0 -78.7972124539794,35.7218686258075,0 -78.7972133436452,35.7218664640578,0 -78.7972151193641,35.7218635827068,0 -78.7972160090298,35.7218614209571,0 -78.7972177847484,35.7218585396061,0 -78.797218674414,35.7218563778563,0 -78.7972204501324,35.7218534965053,0 -78.7972213397979,35.7218513347555,0 -78.7972231155161,35.7218484534044,0 -78.7972240051814,35.7218462916546,0 -78.7972248966529,35.7218434088306,0 -78.7972266705646,35.7218412485537,0 -78.7972275620359,35.7218383657296,0 -78.7972302274187,35.7218333226285,0 -78.7972328928011,35.7218282795274,0 -78.7972346667123,35.7218261192504,0 -78.7972373248697,35.7218239604461,0 -78.7972390987807,35.721821800169,0 -78.7972408726916,35.7218196398919,0 -78.7972435308487,35.7218174810875,0 -78.7972453047594,35.7218153208103,0 -78.7972479629162,35.7218131620058,0 -78.7972506192669,35.7218117242756,0 -78.7972523931773,35.7218095639982,0 -78.7972550495278,35.7218081262678,0 -78.7972585901243,35.72180669001,0 -78.7972612482805,35.7218045312053,0 -78.7972639046307,35.7218030934747,0 -78.7972665591749,35.7218023768183,0 -78.7972700997711,35.7218009405602,0 -78.797272756121,35.7217995028294,0 -78.7972762949111,35.7217987876453,0 -78.7972789512608,35.7217973499144,0 -78.7972824900508,35.7217966347302,0 -78.7972860288407,35.7217959195459,0 -78.7972886833845,35.721795202889,0 -78.7972922203687,35.7217952087787,0 -78.7972957591585,35.7217944935941,0 -78.7972992961426,35.7217944994836,0 -78.7973019506862,35.7217937828265,0 -78.7973054876704,35.7217937887158,0 -78.7973090246545,35.7217937946051,0 -78.7973125598332,35.7217945215685,0 -78.7973160968173,35.7217945274575,0 -78.7973187495554,35.7217945318742,0 -78.7973222847343,35.7217952588374,0 -78.7973258199131,35.7217959858004,0 -78.7973293550921,35.7217967127633,0 -78.797332006025,35.721797438254,0 -78.797335541204,35.7217981652167,0 -78.7973381903319,35.7217996117815,0 -78.7973434921981,35.7218010627624,0 -78.7977754634402,35.7219719553472,0 -78.797781645971,35.7219748499263,0 -78.7977842969138,35.7219755754071,0 -78.7977878303035,35.7219770234309,0 -78.7977904794453,35.7219784699858,0 -78.7977940146363,35.7219791969351,0 -78.7977966637783,35.7219806434899,0 -78.7977993129203,35.7219820900445,0 -78.7978028481116,35.7219828169937,0 -78.7978054972538,35.7219842635482,0 -78.7978090324453,35.7219849904972,0 -78.7978116815877,35.7219864370516,0 -78.7978152149783,35.7219878850745,0 -78.7978178659219,35.7219886105546,0 -78.7978213993127,35.7219900585774,0 -78.7978240502564,35.7219907840573,0 -78.7978275836475,35.7219922320799,0 -78.7978302345913,35.7219929575597,0 -78.7978328837343,35.7219944041137,0 -78.7978364171257,35.721995852136,0 -78.7978390680697,35.7219965776156,0 -78.7978426014613,35.7219980256378,0 -78.7978452524054,35.7219987511173,0 -78.7978487857972,35.7220001991393,0 -78.7978514367414,35.7220009246186,0 -78.7978549701334,35.7220023726404,0 -78.7978567368294,35.7220030966513,0 -78.7978576210778,35.7220030981196,0 -78.79786115447,35.7220045461412,0 -78.7978638054145,35.7220052716203,0 -78.7978673388069,35.7220067196418,0 -78.7978699897515,35.7220074451207,0 -78.7978735231441,35.7220088931419,0 -78.7978761740889,35.7220096186207,0 -78.7978797074817,35.7220110666418,0 -78.7978823584265,35.7220117921204,0 -78.7978858918196,35.7220132401414,0 -78.7978885427646,35.7220139656199,0 -78.7978920761578,35.7220154136406,0 -78.7978947271029,35.722016139119,0 -78.7978982604964,35.7220175871396,0 -78.7979009114416,35.7220183126178,0 -78.7979044448353,35.7220197606382,0 -78.7979079800292,35.7220204875842,0 -78.7979106291745,35.7220219341365,0 -78.7979141643685,35.7220226610824,0 -78.7979168153141,35.7220233865603,0 -78.7979203487082,35.7220248345801,0 -78.7979229996539,35.7220255600579,0 -78.7979265330483,35.7220270080777,0 -78.7979291839941,35.7220277335553,0 -78.7979327173886,35.7220291815748,0 -78.7979353683346,35.7220299070523,0 -78.7979389035292,35.7220306339975,0 -78.7979415526754,35.7220320805491,0 -78.7979450878702,35.722032807494,0 -78.797948623065,35.7220335344389,0 -78.7979512722115,35.7220349809903,0 -78.7979548074065,35.7220357079349,0 -78.7979574565532,35.7220371544862,0 -78.7979609917483,35.7220378814307,0 -78.7979636426948,35.7220386069075,0 -78.7979671760904,35.7220400549261,0 -78.7979698270371,35.7220407804028,0 -78.7979733622324,35.722041507347,0 -78.7979768956284,35.7220429553652,0 -78.7979795465752,35.7220436808418,0 -78.7979830817708,35.7220444077856,0 -78.7979857309183,35.7220458543362,0 -78.797989266114,35.7220465812799,0 -78.797991917061,35.7220473067562,0 -78.7979954504576,35.7220487547739,0 -78.7979989856536,35.7220494817173,0 -78.7980016366008,35.7220502071934,0 -78.7980051717969,35.7220509341366,0 -78.7980078209449,35.7220523806867,0 -78.7980113561412,35.7220531076298,0 -78.7980148913375,35.7220538345727,0 -78.7980175404858,35.7220552811226,0 -78.7980210756823,35.7220560080654,0 -78.7980237266299,35.7220567335409,0 -78.7980272618265,35.7220574604835,0 -78.7980307952241,35.7220589085002,0 -78.7980334461719,35.7220596339755,0 -78.7980369813687,35.7220603609179,0 -78.7980396323166,35.7220610863931,0 -78.7980431657146,35.7220625344094,0 -78.7980467009116,35.7220632613514,0 -78.7980493518597,35.7220639868264,0 -78.7980528870568,35.7220647137683,0 -78.798055538005,35.7220654392431,0 -78.7980590714035,35.722066887259,0 -78.7980626066008,35.7220676142005,0 -78.7980652575492,35.7220683396752,0 -78.7980687927466,35.7220690666166,0 -78.7980714436951,35.7220697920911,0 -78.798074977094,35.7220712401065,0 -78.7980785122917,35.7220719670476,0 -78.7980811632404,35.7220726925219,0 -78.7980846984382,35.7220734194628,0 -78.7980882336361,35.7220741464036,0 -78.7980908845849,35.7220748718777,0 -78.7980944197828,35.7220755988183,0 -78.7980979531824,35.7220770468331,0 -78.7981006041314,35.722077772307,0 -78.7981041393296,35.7220784992473,0 -78.7981067902787,35.7220792247211,0 -78.798110325477,35.7220799516612,0 -78.7981138606754,35.7220806786013,0 -78.7981165116247,35.7220814040748,0 -78.7981200468232,35.7220821310147,0 -78.7981235802235,35.7220835790287,0 -78.7981262311729,35.722084304502,0 -78.7981297663717,35.7220850314416,0 -78.7981333015704,35.7220857583811,0 -78.79813595252,35.7220864838542,0 -78.7981394877189,35.7220872107936,0 -78.7981430229179,35.7220879377328,0 -78.7981456738676,35.7220886632057,0 -78.7981492090667,35.7220893901447,0 -78.7981527442658,35.7220901170836,0 -78.7981553952158,35.7220908425563,0 -78.798158930415,35.7220915694951,0 -78.7981624656143,35.7220922964337,0 -78.7981651165644,35.7220930219062,0 -78.7981686517638,35.7220937488447,0 -78.7981721869634,35.7220944757831,0 -78.7981748379136,35.7220952012553,0 -78.7981783731132,35.7220959281935,0 -78.7981819083129,35.7220966551316,0 -78.7981845592633,35.7220973806036,0 -78.7981880944631,35.7220981075415,0 -78.798191629663,35.7220988344793,0 -78.7981942806135,35.7220995599512,0 -78.7981978158135,35.7221002868888,0 -78.7982013510135,35.7221010138263,0 -78.7982040019643,35.722101739298,0 -78.7982075371644,35.7221024662353,0 -78.7982110723647,35.7221031931725,0 -78.7982137233155,35.7221039186439,0 -78.7982172585159,35.722104645581,0 -78.7982207937163,35.722105372518,0 -78.7982234446673,35.7221060979892,0 -78.7982269798678,35.7221068249259,0 -78.7982305150685,35.7221075518626,0 -78.7982340502691,35.7221082787992,0 -78.7982367012203,35.7221090042701,0 -78.7982402364211,35.7221097312065,0 -78.7982437734191,35.7221097370686,0 -78.7982464243705,35.7221104625393,0 -78.7982499595714,35.7221111894754,0 -78.7982534947724,35.7221119164114,0 -78.7982561457239,35.7221126418819,0 -78.7982596809251,35.7221133688177,0 -78.7982632161262,35.7221140957534,0 -78.7982667513275,35.722114822689,0 -78.7982694040762,35.722114827085,0 -78.7982729392775,35.7221155540205,0 -78.7982764744789,35.7221162809558,0 -78.7982791254307,35.7221170064258,0 -78.7982826606323,35.722117733361,0 -78.7982861958338,35.722118460296,0 -78.7982897310355,35.722119187231,0 -78.7982923837843,35.7221191916265,0 -78.798295918986,35.7221199185612,0 -78.7982994541878,35.7221206454959,0 -78.7983029893897,35.7221213724305,0 -78.7983056403419,35.7221220978999,0 -78.7983091773405,35.7221221037601,0 -78.7983127125425,35.7221228306944,0 -78.7983153634949,35.7221235561635,0 -78.798318898697,35.7221242830976,0 -78.7983224338992,35.7221250100317,0 -78.7983259708979,35.7221250158913,0 -78.7983286218505,35.7221257413602,0 -78.7983321570528,35.722126468294,0 -78.7983356922552,35.7221271952276,0 -78.798339229254,35.7221272010869,0 -78.7983418802068,35.7221279265555,0 -78.7983454154093,35.7221286534888,0 -78.7983489506119,35.7221293804221,0 -78.7983524876108,35.722129386281,0 -78.7983551385638,35.7221301117493,0 -78.7983586737666,35.7221308386823,0 -78.7983622107655,35.7221308445409,0 -78.7983648617186,35.722131570009,0 -78.7983683969215,35.7221322969417,0 -78.7983719321245,35.7221330238743,0 -78.7983754691235,35.7221330297325,0 -78.7983781200768,35.7221337552004,0 -78.79838165528,35.7221344821326,0 -78.7983851922791,35.7221344879906,0 -78.7983887274823,35.7221352149227,0 -78.7983913784358,35.7221359403902,0 -78.7983949154349,35.7221359462479,0 -78.7983984506383,35.7221366731797,0 -78.7984019858418,35.7221374001114,0 -78.7984046385912,35.7221374045045,0 -78.7984081737947,35.722138131436,0 -78.7984117107939,35.7221381372932,0 -78.7984152459976,35.7221388642245,0 -78.7984187812012,35.7221395911557,0 -78.7984214339507,35.7221395955484,0 -78.7984249691545,35.7221403224794,0 -78.7984285043584,35.7221410494103,0 -78.7984320413577,35.7221410552669,0 -78.7984346923118,35.7221417807335,0 -78.7984382293112,35.72214178659,0 -78.7984417645152,35.7221425135205,0 -78.7984453015147,35.7221425193767,0 -78.7984479524689,35.722143244843,0 -78.7984514876731,35.7221439717733,0 -78.7984550246726,35.7221439776292,0 -78.7984585598769,35.7221447045593,0 -78.7984612126265,35.7221447089511,0 -78.7984647478309,35.722145435881,0 -78.7984682848304,35.7221454417365,0 -78.7984718200349,35.7221461686662,0 -78.7984753570345,35.7221461745216,0 -78.7984780079891,35.7221468999872,0 -78.7984815449888,35.7221469058424,0 -78.7984850801934,35.7221476327717,0 -78.7984886153981,35.7221483597008,0 -78.7984912681479,35.722148364092,0 -78.7984948033527,35.722149091021,0 -78.7984983403524,35.7221490968757,0 -78.7985018773521,35.7221491027303,0 -78.798505412557,35.722149829659,0 -78.7985080653069,35.7221498340498,0 -78.7985116005119,35.7221505609783,0 -78.7985151375117,35.7221505668325,0 -78.7985186727168,35.7221512937608,0 -78.7985213254666,35.7221512981513,0 -78.7985248606718,35.7221520250794,0 -78.7985283976717,35.7221520309332,0 -78.798531932877,35.7221527578611,0 -78.7985354698769,35.7221527637147,0 -78.7985381226268,35.7221527681049,0 -78.7985416578322,35.7221534950325,0 -78.7985451948321,35.7221535008858,0 -78.7985487300376,35.7221542278132,0 -78.7985522670376,35.7221542336664,0 -78.7985549179931,35.7221549591304,0 -78.7985584549931,35.7221549649833,0 -78.7985619919931,35.7221549708362,0 -78.7985655271988,35.7221556977631,0 -78.7985681799489,35.7221557021526,0 -78.7985717169489,35.7221557080051,0 -78.7985752521547,35.7221564349318,0 -78.7985787891548,35.7221564407841,0 -78.7985823243607,35.7221571677106,0 -78.7985849771108,35.7221571720997,0 -78.7985885141108,35.7221571779518,0 -78.7985920493169,35.7221579048779,0 -78.798595586317,35.7221579107298,0 -78.7985991233171,35.7221579165816,0 -78.7986017742733,35.7221586420445,0 -78.7986053112734,35.7221586478961,0 -78.7986088482736,35.7221586537476,0 -78.7986123852737,35.722158659599,0 -78.7986159204801,35.7221593865245,0 -78.7986185732302,35.7221593909128,0 -78.7986221102304,35.722159396764,0 -78.7986256454368,35.7221601236891,0 -78.7986291824371,35.72216012954,0 -78.7986327194373,35.7221601353908,0 -78.7986353721875,35.7221601397788,0 -78.7986389073941,35.7221608667036,0 -78.7986424443943,35.7221608725541,0 -78.7986477516882,35.7221601602555,0 -78.7986521693515,35.7221616097167,0 -78.7986557063518,35.7221616155668,0 -78.7986592433521,35.7221616214169,0 -78.7986627803524,35.7221616272668,0 -78.7986663155593,35.7221623541908,0 -78.7986725053098,35.7221623644277,0 -78.7986760423102,35.7221623702772,0 -78.7986795793105,35.7221623761266,0 -78.7986831145176,35.7221631030502,0 -78.7986866515179,35.7221631088994,0 -78.7986893042682,35.7221631132863,0 -78.7986928412686,35.7221631191353,0 -78.7986963782689,35.7221631249842,0 -78.7986999134762,35.7221638519073,0 -78.7987034504766,35.722163857756,0 -78.7987061032269,35.7221638621425,0 -78.7987096402273,35.7221638679911,0 -78.7987131772277,35.7221638738395,0 -78.798716714228,35.7221638796879,0 -78.7987202512284,35.7221638855361,0 -78.7987229021859,35.7221646109964,0 -78.7987264391863,35.7221646168445,0 -78.7987299761867,35.7221646226924,0 -78.7987335131871,35.7221646285403,0 -78.7987370501876,35.7221646343881,0 -78.7987397029379,35.7221646387738,0 -78.7987432399383,35.7221646446214,0 -78.7987467769387,35.7221646504689,0 -78.7987503139392,35.7221646563162,0 -78.7987538509396,35.7221646621635,0 -78.7987565018973,35.7221653876231,0 -78.7987600388978,35.7221653934702,0 -78.7987635758982,35.7221653993172,0 -78.7987671128987,35.7221654051641,0 -78.7987706498992,35.7221654110108,0 -78.7987741868996,35.7221654168575,0 -78.79877683965,35.7221654212425,0 -78.7987803766505,35.722165427089,0 -78.7987839136509,35.7221654329354,0 -78.7987874506514,35.7221654387817,0 -78.7987909876519,35.7221654446279,0 -78.7987936404022,35.7221654490124,0 -78.7987971774027,35.7221654548584,0 -78.7988007144031,35.7221654607043,0 -78.7988042514036,35.7221654665502,0 -78.7988077884041,35.7221654723959,0 -78.7988104411544,35.7221654767801,0 -78.7988139781549,35.7221654826256,0 -78.7988175151554,35.722165488471,0 -78.7988210521558,35.7221654943163,0 -78.7988245891563,35.7221655001615,0 -78.7988272419067,35.7221655045454,0 -78.7988307789071,35.7221655103904,0 -78.7988343159076,35.7221655162354,0 -78.7988378529081,35.7221655220802,0 -78.7988413899085,35.7221655279249,0 -78.798844926909,35.7221655337695,0 -78.7988475814511,35.7221648170788,0 -78.7988511184516,35.7221648229232,0 -78.798854655452,35.7221648287675,0 -78.7988581924525,35.7221648346118,0 -78.7988617294529,35.7221648404559,0 -78.7988643822033,35.722164844839,0 -78.7988679192037,35.7221648506829,0 -78.7988714562041,35.7221648565268,0 -78.7988749932046,35.7221648623705,0 -78.798878530205,35.7221648682142,0 -78.7988811847468,35.7221641515226,0 -78.7988847217473,35.7221641573661,0 -78.7988882587477,35.7221641632095,0 -78.7988917957481,35.7221641690527,0 -78.7988953327485,35.7221641748959,0 -78.7988979854988,35.7221641792782,0 -78.7989015224993,35.7221641851212,0 -78.7989050612909,35.7221634698899,0 -78.7989085982913,35.7221634757326,0 -78.7989121352917,35.7221634815753,0 -78.7989156722921,35.7221634874179,0 -78.7989183250424,35.7221634917997,0 -78.7989218638339,35.7221627765679,0 -78.7989254008343,35.7221627824102,0 -78.7989289378346,35.7221627882524,0 -78.798932474835,35.7221627940945,0 -78.7989351275852,35.722162798476,0 -78.7989386663766,35.7221620832437,0 -78.7989422033769,35.7221620890855,0 -78.7989457403772,35.7221620949272,0 -78.7989492773775,35.7221621007688,0 -78.7989519319186,35.7221613840757,0 -78.7989554689189,35.7221613899171,0 -78.7989590059192,35.7221613957584,0 -78.7989625429195,35.7221614015996,0 -78.7989660817106,35.7221606863666,0 -78.7989687344608,35.7221606907473,0 -78.798972271461,35.7221606965882,0 -78.7989758084613,35.7221607024291,0 -78.800090132739,35.7220940351225,0 -78.8001653028349,35.7220905531565,0 -78.8002413553942,35.7220877936694,0 -78.8003165219204,35.7220857537585,0 -78.8003925691361,35.7220851573996,0 -78.800467730324,35.722085280618,0 -78.8005428879588,35.7220868459385,0 -78.8006189280699,35.7220891337351,0 -78.8006940803852,35.722092862185,0 -78.8007692309328,35.7220973116627,0 -78.8008443779408,35.7221032032425,0 -78.8009195231863,35.7221098158501,0 -78.8009946648989,35.7221178705598,0 -78.8010698048544,35.7221266462973,0 -78.8011440570337,35.7221368626925,0 -78.8012183074612,35.7221478001165,0 -78.8012925543687,35.7221601796437,0 -78.8013659152793,35.7221732787569,0 -78.8014401569268,35.7221878214167,0 -78.8015126283317,35.7222030822218,0 -78.8015859822473,35.7222190654991,0 -78.8016584484075,35.7222364894399,0 -78.8017309128328,35.7222546344117,0 -78.8018024895084,35.722274220049,0 -78.8018731802022,35.7222945252792,0 -78.8019447516548,35.7223162740552,0 -78.8020145546419,35.7223380199128,0 -78.8020843523775,35.7223619289528,0 -78.8021541501545,35.7223858379526,0 -78.8022230584347,35.7224119086981,0 -78.8022910825061,35.7224379779684,0 -78.8023591031003,35.7224654893487,0 -78.8024262377271,35.7224937203299,0 -78.8024492036893,35.7225038526795,0 </coordinates>
</LinearRing>
</outerBoundaryIs>
</Polygon>
</Placemark>
<Placemark id="kml_12">
<name>kml_12</name>
<snippet> </snippet>
<description><![CDATA[<center><table><tr><th colspan='2' align='center'><em>Attributes</em></th></tr><tr bgcolor="#E3E3F3">
<th>ProjectNumber</th>
<td>05-SB-016-B</td>
</tr><tr bgcolor="">
<th>ProjectName</th>
<td>Copperleaf Subdivision</td>
</tr><tr bgcolor="#E3E3F3">
<th>Status</th>
<td>Active</td>
</tr><tr bgcolor="">
<th>Use</th>
<td>Residential</td>
</tr><tr bgcolor="#E3E3F3">
<th>Units</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Lots</th>
<td>5</td>
</tr><tr bgcolor="#E3E3F3">
<th>Building_Square__Footage</th>
<td>0</td>
</tr><tr bgcolor="">
<th>Buildings</th>
<td>0</td>
</tr><tr bgcolor="#E3E3F3">
<th>Comments</th>
<td>addition of five single-family lots to existing subdivision</td>
</tr><tr bgcolor="">
<th>Submittal_Date</th>
<td>20130425</td>
</tr><tr bgcolor="#E3E3F3">
<th>Approval_Date</th>
<td>20130808</td>
</tr><tr bgcolor="">
<th>WebLink</th>
<td>Copperleaf_05-SB-016-B</td>
</tr><tr bgcolor="#E3E3F3">
<th>Index</th>
<td>0</td>
</tr><tr bgcolor="">
<th>ExtWebLink</th>
<td>http://sitesubplans.townofcary.org/Copperleaf_05-SB-016-B/planindex.htm</td>
</tr></table></center>]]></description>
<Style>
<LineStyle>
<color>ff70dcff</color>
</LineStyle>
</Style>
<ExtendedData>
<SchemaData schemaUrl="#kml_schema_ft_KML_GIS_DataRequest">
<SimpleData name="ProjectNumber">05-SB-016-B</SimpleData>
<SimpleData name="ProjectName">Copperleaf Subdivision</SimpleData>
<SimpleData name="Status">Active</SimpleData>
<SimpleData name="Use">Residential</SimpleData>
<SimpleData name="Units">0</SimpleData>
<SimpleData name="Lots">5</SimpleData>
<SimpleData name="Building_Square__Footage">0</SimpleData>
<SimpleData name="Buildings">0</SimpleData>
<SimpleData name="Comments">addition of five single-family lots to existing subdivision</SimpleData>