-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathchennai_rail_map.kml
1062 lines (1062 loc) · 136 KB
/
chennai_rail_map.kml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<?xml version='1.0' encoding='UTF-8'?>
<kml xmlns='http://www.opengis.net/kml/2.2'>
<Document>
<name>EMU</name>
<Placemark>
<styleUrl>#icon-503-CDDC39</styleUrl>
<name>Beach</name>
<description><![CDATA[0 km
]]></description>
<Point>
<coordinates>80.2921199798584,13.091861807254858,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Fort</name>
<description><![CDATA[2 km
]]></description>
<Point>
<coordinates>80.28285026550293,13.083553938067203,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Park</name>
<description><![CDATA[4 km
]]></description>
<Point>
<coordinates>80.27324795722961,13.080502423979885,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Egmore</name>
<description><![CDATA[5 km
]]></description>
<Point>
<coordinates>80.26137113571167,13.078600433766884,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Chetpet</name>
<description><![CDATA[7 km]]></description>
<Point>
<coordinates>80.2431669831276,13.074469824836997,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Nungambakkam</name>
<description><![CDATA[9 km]]></description>
<Point>
<coordinates>80.23253202438354,13.063613910041386,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Kodambakkam</name>
<description><![CDATA[10 km]]></description>
<Point>
<coordinates>80.23081541061401,13.051761998190834,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Mambalam</name>
<description><![CDATA[12 km]]></description>
<Point>
<coordinates>80.22792935371399,13.038278973608666,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Saidapet</name>
<description><![CDATA[13 km]]></description>
<Point>
<coordinates>80.22398114204407,13.023990346464174,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Guindy</name>
<description><![CDATA[16 km]]></description>
<Point>
<coordinates>80.21295189857483,13.00857192009273,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>St. Thomas Mount
</name>
<description><![CDATA[18 km
]]></description>
<Point>
<coordinates>80.19976615905762,12.995034274082709,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Pazhavanthangal</name>
<description><![CDATA[19 km
]]></description>
<Point>
<coordinates>80.18641948699951,12.989859457580762,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Meenambakkam</name>
<description><![CDATA[21 km
]]></description>
<Point>
<coordinates>80.17540097236633,12.984663624257477,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Tirusulam</name>
<description><![CDATA[22 km
]]></description>
<Point>
<coordinates>80.16578793525696,12.980199511669424,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Pallavaram</name>
<description><![CDATA[24 km
]]></description>
<Point>
<coordinates>80.15281677246094,12.968437707105686,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Chromepet</name>
<description><![CDATA[26 km
]]></description>
<Point>
<coordinates>80.14040350914001,12.950757362062944,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Tambaram Sanatorium</name>
<description><![CDATA[29 km
]]></description>
<Point>
<coordinates>80.13161659240723,12.938241303104267,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-CDDC39</styleUrl>
<name>Tambaram</name>
<description><![CDATA[30 km
]]></description>
<Point>
<coordinates>80.12004017829895,12.926874880778733,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Perungalathur</name>
<description><![CDATA[34 km
]]></description>
<Point>
<coordinates>80.09513854980469,12.905290847972912,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Vandalur</name>
<description><![CDATA[36 km
]]></description>
<Point>
<coordinates>80.08465647697449,12.891527962695502,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Urapakkam</name>
<description><![CDATA[39 km
]]></description>
<Point>
<coordinates>80.0722861289978,12.868068657088228,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Guduvancheri</name>
<description><![CDATA[42 km
]]></description>
<Point>
<coordinates>80.05713701248169,12.845036031568817,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Potheri</name>
<description><![CDATA[44 km
]]></description>
<Point>
<coordinates>80.03761053085327,12.822126830224235,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Kattangalathur</name>
<description><![CDATA[46 km
]]></description>
<Point>
<coordinates>80.02676367759705,12.806465778944109,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Maraimalai Nagar
</name>
<description><![CDATA[47 km
]]></description>
<Point>
<coordinates>80.02031564712524,12.797290482495287,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Singaperumal Koil
</name>
<description><![CDATA[51 km
]]></description>
<Point>
<coordinates>80.00077843666077,12.761925330599421,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Paranur</name>
<description><![CDATA[55 km
]]></description>
<Point>
<coordinates>79.9838376045227,12.73087734775165,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-CDDC39</styleUrl>
<name>Chengalpattu</name>
<description><![CDATA[60 km
]]></description>
<Point>
<coordinates>79.98112320899963,12.693650337497237,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-CDDC39</styleUrl>
<name>Central</name>
<description><![CDATA[0 km
]]></description>
<Point>
<coordinates>80.27422964572906,13.083663666466206,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Basin Bridge
</name>
<description><![CDATA[3 km
]]></description>
<Point>
<coordinates>80.27135968208313,13.102813136295524,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Vyasarpadi Jeeva
</name>
<description><![CDATA[5 km
]]></description>
<Point>
<coordinates>80.25689721107483,13.108988718678814,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Perambur</name>
<description><![CDATA[6 km
]]></description>
<Point>
<coordinates>80.24462342262268,13.107640762141807,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Perambur Carriage Works
</name>
<description><![CDATA[7 km
]]></description>
<Point>
<coordinates>80.23845434188843,13.10757806630921,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Perambur Loco Works
</name>
<description><![CDATA[8 km
]]></description>
<Point>
<coordinates>80.22552609443665,13.108476705050034,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Villivakkam</name>
<description><![CDATA[10 km
]]></description>
<Point>
<coordinates>80.20895004272461,13.110200828328496,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Korattur</name>
<description><![CDATA[13 km
]]></description>
<Point>
<coordinates>80.18391966819763,13.113346016030476,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Pattaravakkam</name>
<description><![CDATA[14 km
]]></description>
<Point>
<coordinates>80.16615271568298,13.114589451238322,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Ambattur</name>
<description><![CDATA[16 km
]]></description>
<Point>
<coordinates>80.15248417854309,13.114223735653308,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Thirumullaivoyal</name>
<Point>
<coordinates>80.13703465461731,13.115508962306508,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Annanur</name>
<Point>
<coordinates>80.12704610824585,13.116459816726893,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-CDDC39</styleUrl>
<name>Avadi</name>
<description><![CDATA[22 km
]]></description>
<Point>
<coordinates>80.10117888450623,13.118162986332175,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Hindu College
</name>
<Point>
<coordinates>80.07487177848816,13.118716775134454,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Pattabiram</name>
<description><![CDATA[25 km
]]></description>
<Point>
<coordinates>80.06469011306763,13.119009342299995,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Nemilicherry</name>
<description><![CDATA[27 km
]]></description>
<Point>
<coordinates>80.04506707191467,13.121443905566375,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Thiruninravur</name>
<description><![CDATA[29 km
]]></description>
<Point>
<coordinates>80.02763271331787,13.123805304409354,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Veppampattu</name>
<description><![CDATA[32 km
]]></description>
<Point>
<coordinates>79.99836444854736,13.12376350993681,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Sevvapet Rd
</name>
<description><![CDATA[36 km
]]></description>
<Point>
<coordinates>79.96574878692627,13.125038238151953,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Putlur</name>
<Point>
<coordinates>79.9369740486145,13.123136591995568,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-CDDC39</styleUrl>
<name>Thiruvallur</name>
<description><![CDATA[42 km
]]></description>
<Point>
<coordinates>79.91349935531616,13.116209042291677,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Egattur</name>
<Point>
<coordinates>79.88396286964417,13.106752569690146,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Kadambattur</name>
<description><![CDATA[48 km
]]></description>
<Point>
<coordinates>79.86285924911499,13.099960403789705,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Senjipanampakkam</name>
<Point>
<coordinates>79.83522176742554,13.09458923531053,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Manavur</name>
<Point>
<coordinates>79.80129718780518,13.096167158825077,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Tiruvalangadu</name>
<description><![CDATA[59 km
]]></description>
<Point>
<coordinates>79.76339221000671,13.090304756243329,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Mosur</name>
<Point>
<coordinates>79.7189211845398,13.085518591534038,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Puliyamangalam</name>
<Point>
<coordinates>79.68602657318115,13.083083672946902,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-CDDC39</styleUrl>
<name>Arakkonam</name>
<description><![CDATA[69 km
]]></description>
<Point>
<coordinates>79.66874241828918,13.081568368124248,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-CDDC39</styleUrl>
<name>Tiruttani</name>
<description><![CDATA[84 km
]]></description>
<Point>
<coordinates>79.61212635040283,13.17940654584603,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Royapuram</name>
<Point>
<coordinates>80.29377222061157,13.103952130149318,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Washermanpet</name>
<Point>
<coordinates>80.28287172317505,13.10861254550437,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Reddypalayam</name>
<description><![CDATA[5 km
]]></description>
<Point>
<coordinates>79.95285272598267,12.729014557107527,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Villiyambakkam</name>
<description><![CDATA[8 km
]]></description>
<Point>
<coordinates>79.93366956710815,12.752246135282384,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Palur</name>
<description><![CDATA[12 km
]]></description>
<Point>
<coordinates>79.9069333076477,12.766382867906582,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Palayasivaram</name>
<description><![CDATA[15 km
]]></description>
<Point>
<coordinates>79.87823367118835,12.776500976667922,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Walajabad</name>
<description><![CDATA[22 km
]]></description>
<Point>
<coordinates>79.81818974018097,12.797133547497214,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Nathapettai</name>
<description><![CDATA[29 km
]]></description>
<Point>
<coordinates>79.75574791431427,12.823876476372666,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Old Kanchipuram
</name>
<description><![CDATA[34 km
]]></description>
<Point>
<coordinates>79.71234977245331,12.840708026154417,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Kanchipuram</name>
<description><![CDATA[35 km
]]></description>
<Point>
<coordinates>79.70512926578522,12.848561143431871,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-CDDC39</styleUrl>
<name>Thirumalpur</name>
<description><![CDATA[49 km
]]></description>
<Point>
<coordinates>79.67384666204453,12.956408726539186,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#line-000000-2</styleUrl>
<name>Beach - Tambaram Line
</name>
<description><![CDATA[30 km
]]></description>
<LineString>
<tessellate>0</tessellate>
<coordinates>80.2921199798584,13.091861807254858,0.0 80.29201805591583,13.09158749529071,0.0 80.2917954325676,13.090866445242785,0.0 80.29157817363739,13.090184580756233,0.0 80.29141187667847,13.089633340270941,0.0 80.29119193553925,13.088912284504545,0.0 80.29112219810486,13.088643194311997,0.0 80.29109001159668,13.088462929843901,0.0 80.29099613428116,13.08805276237441,0.0 80.2909854054451,13.088008349295345,0.0 80.29093980789185,13.087872497474432,0.0 80.29082715511322,13.08761908137757,0.0 80.29071718454361,13.087373502643356,0.0 80.29068499803543,13.087308189109017,0.0 80.290607213974,13.087156661642688,0.0 80.29053211212158,13.087012971717867,0.0 80.29044091701508,13.086890182079381,0.0 80.2903738617897,13.086746491999211,0.0 80.29025584459305,13.086521812796878,0.0 80.29014319181442,13.086323258912687,0.0 80.29002785682678,13.086145605301805,0.0 80.28993666172028,13.08602020267586,0.0 80.28984010219574,13.085897412542787,0.0 80.28971403837204,13.085758947000203,0.0 80.28957456350327,13.085628319058529,0.0 80.28944849967957,13.085526429215975,0.0 80.28941631317139,13.085497691047646,0.0 80.28935998678207,13.085461115192189,0.0 80.28930902481079,13.085437602139391,0.0 80.28912663459778,13.085330487092682,0.0 80.28884500265121,13.085160670459842,0.0 80.28834342956543,13.084975178311835,0.0 80.28810203075409,13.084935989811997,0.0 80.28793841600418,13.084928152111283,0.0 80.28776943683624,13.084928152111283,0.0 80.28758436441422,13.084933377245122,0.0 80.28734564781189,13.084949052645968,0.0 80.28708279132843,13.084969953178872,0.0 80.28672337532043,13.084998691408739,0.0 80.28652489185333,13.085014366805437,0.0 80.28542250394821,13.085108419164673,0.0 80.28521329164505,13.085124094554386,0.0 80.28506845235825,13.085126707119251,0.0 80.28482168912888,13.085118869424592,0.0 80.28467416763306,13.085095356339137,0.0 80.2844300866127,13.085040492464383,0.0 80.28433352708817,13.085009141673314,0.0 80.2842128276825,13.084956890346009,0.0 80.28408139944077,13.084888963603978,0.0 80.28400897979736,13.08485500022592,0.0 80.2839070558548,13.084802748865958,0.0 80.28381049633026,13.084740047219382,0.0 80.28372198343277,13.084666895278207,0.0 80.28359323740005,13.084554554754845,0.0 80.28349667787552,13.084460502184307,0.0 80.28341352939606,13.084366449577866,0.0 80.28332501649857,13.084259334065727,0.0 80.28324455022812,13.084165281382534,0.0 80.28318017721176,13.084063390935254,0.0 80.2830970287323,13.08392492436249,0.0 80.2829521894455,13.08368456710809,0.0 80.28285026550293,13.083553938067203,0.0 80.28277784585953,13.083402408293063,0.0 80.28265982866287,13.083206464481506,0.0 80.28252840042114,13.0829896198152,0.0 80.28220921754837,13.082482777321157,0.0 80.28207510709763,13.082260706827979,0.0 80.28187394142151,13.081968095990383,0.0 80.28179079294205,13.08183746604005,0.0 80.28159767389297,13.081565755521687,0.0 80.2811712026596,13.080990982284705,0.0 80.28101563453674,13.080792423946034,0.0 80.28085201978683,13.080596478060336,0.0 80.28073400259018,13.080484135682303,0.0 80.2806106209755,13.080395306789026,0.0 80.28028875589371,13.080194135353597,0.0 80.28013586997986,13.080136657770492,0.0 80.27998566627502,13.080087018028822,0.0 80.27985692024231,13.08003737827718,0.0 80.2797281742096,13.079990351134814,0.0 80.27959406375885,13.079964224940746,0.0 80.27941435575485,13.079932873504204,0.0 80.27922928333282,13.079917197784438,0.0 80.27901202440262,13.079891071582608,0.0 80.27883231639862,13.079875395860183,0.0 80.27723908424377,13.079752602666728,0.0 80.27653366327286,13.079716025958984,0.0 80.27639955282211,13.079716025958984,0.0 80.27630567550659,13.079716025958984,0.0 80.2761635184288,13.07972125120328,0.0 80.27605086565018,13.079731701691536,0.0 80.2758926153183,13.079752602666728,0.0 80.27574241161346,13.07979179199043,0.0 80.2756217122078,13.07981791820278,0.0 80.27543127536774,13.07986494537802,0.0 80.27425110340118,13.080178459650446,0.0 80.2739480137825,13.080264676005488,0.0 80.27366369962692,13.080353504945824,0.0 80.27329087257385,13.080471072611763,0.0 80.27324795722961,13.080502423979885,0.0 80.27313530445099,13.08052332488975,0.0 80.27285903692245,13.080604315898743,0.0 80.27260690927505,13.080661793372858,0.0 80.27242183685303,13.080700982552074,0.0 80.27231723070145,13.080721883445118,0.0 80.27209997177124,13.080737559113729,0.0 80.27186125516891,13.080750622170147,0.0 80.27171105146408,13.080750622170147,0.0 80.27147769927979,13.08074800955891,0.0 80.27091979980469,13.080674856433296,0.0 80.27068108320236,13.080633054637486,0.0 80.27051210403442,13.080604315898743,0.0 80.27027070522308,13.080559901477752,0.0 80.26997834444046,13.080518099662452,0.0 80.2689778804779,13.08037963109866,0.0 80.26885986328125,13.080350892330376,0.0 80.2685996890068,13.08031170309554,0.0 80.26844143867493,13.080277739086956,0.0 80.26824563741684,13.08023593722382,0.0 80.2680766582489,13.080186297502149,0.0 80.26777356863022,13.080079180173964,0.0 80.26761263608932,13.080019089945106,0.0 80.26750802993774,13.079972062799255,0.0 80.26730686426163,13.079893684202917,0.0 80.26704400777817,13.079783954126185,0.0 80.26631981134415,13.079457376227982,0.0 80.26551246643066,13.079068094808346,0.0 80.26525229215622,13.078953139103819,0.0 80.26503503322601,13.07885647176536,0.0 80.26463270187378,13.078694488572715,0.0 80.26423573493958,13.078634398006464,0.0 80.26392191648483,13.078608271668736,0.0 80.26365369558334,13.07863701064008,0.0 80.26318699121475,13.078689263306666,0.0 80.2629429101944,13.078720614901309,0.0 80.26268273591995,13.078728452799345,0.0 80.26251643896103,13.078733678064568,0.0 80.26228845119476,13.078710164370202,0.0 80.26147037744522,13.078587370596576,0.0 80.26137113571167,13.078600433766884,0.0 80.26124775409698,13.07854818108148,0.0 80.25949090719223,13.078294755400208,0.0 80.2590724825859,13.078234664736554,0.0 80.25865405797958,13.078145835033036,0.0 80.25844216346741,13.078075293775099,0.0 80.25823831558228,13.077978626092566,0.0 80.25800496339798,13.077868895163775,0.0 80.25781184434891,13.077777452685817,0.0 80.25764554738998,13.077699073392036,0.0 80.25709301233292,13.077471773299175,0.0 80.25466829538345,13.077087714045629,0.0 80.25191366672516,13.076656626416055,0.0 80.25043576955795,13.076421487391478,0.0 80.24947017431259,13.076173284844582,0.0 80.24735659360886,13.075569759714973,0.0 80.2459779381752,13.07518047215969,0.0 80.2448782324791,13.074947944400748,0.0 80.24452149868011,13.074864338860822,0.0 80.24372488260269,13.074634423479905,0.0 80.2431669831276,13.07446982483719,0.0 80.24238646030426,13.07423990908841,0.0 80.24092465639114,13.073814041851792,0.0 80.24017632007599,13.073505744865976,0.0 80.23966938257217,13.073265377457249,0.0 80.23747265338898,13.072633105546611,0.0 80.2364856004715,13.07235615948874,0.0 80.23609936237335,13.072204622834933,0.0 80.23579895496368,13.07205831149468,0.0 80.2354234457016,13.071838844321627,0.0 80.2350264787674,13.071582799039719,0.0 80.23482263088226,13.071420811071091,0.0 80.2345758676529,13.071196117906315,0.0 80.23437738418579,13.070992326254357,0.0 80.2342164516449,13.070783309000612,0.0 80.23399651050568,13.070480233668231,0.0 80.23382484912872,13.070182383409971,0.0 80.23370683193207,13.069952463666544,0.0 80.2335673570633,13.069628485482685,0.0 80.23341715335846,13.069121615535444,0.0 80.2333152294159,13.068562489747029,0.0 80.23305237293243,13.0667962709932,0.0 80.2326500415802,13.064272332914038,0.0 80.23253202438354,13.063613910041386,0.0 80.23218333721161,13.061408703189315,0.0 80.2318400144577,13.05908328600843,0.0 80.2314805984497,13.056292756494189,0.0 80.23116409778595,13.054186774212774,0.0 80.23112118244171,13.053815743216648,0.0 80.23100852966309,13.052937808500218,0.0 80.23091733455658,13.05233683948544,0.0 80.23081541061401,13.051761998190834,0.0 80.23070275783539,13.050988573248535,0.0 80.230633020401,13.050507794361913,0.0 80.23053646087646,13.0499277229387,0.0 80.23027896881104,13.048234533701889,0.0 80.23004829883575,13.046604044217492,0.0 80.22994101047516,13.045705180032337,0.0 80.22980690002441,13.045072837572137,0.0 80.22956013679504,13.044048543875096,0.0 80.22914707660675,13.042569581715343,0.0 80.22897005081177,13.041911101017993,0.0 80.2285248041153,13.040369413163797,0.0 80.22807955741882,13.038822489592198,0.0 80.22792935371399,13.038278973608666,0.0 80.22732317447662,13.036125802402076,0.0 80.22661507129669,13.033575420036588,0.0 80.22617518901825,13.032096395273124,0.0 80.22602498531342,13.031605127142127,0.0 80.22588551044464,13.03108772667348,0.0 80.22570848464966,13.0303769525494,0.0 80.22556364536285,13.029822965420008,0.0 80.22522032260895,13.02862613993717,0.0 80.22505939006805,13.02809305423545,0.0 80.22496283054352,13.027748115816902,0.0 80.22467315196991,13.026650581288582,0.0 80.22427082061768,13.024978138368574,0.0 80.22409379482269,13.024298705206466,0.0 80.22398114204407,13.023990346464174,0.0 80.2239328622818,13.023692440196054,0.0 80.22369682788849,13.022783039898256,0.0 80.22363245487213,13.02250081154082,0.0 80.22349834442139,13.022134959487836,0.0 80.22323548793793,13.021549595079259,0.0 80.22275805473328,13.020582695482544,0.0 80.2224737405777,13.020060045480838,0.0 80.22224843502045,13.01961056559762,0.0 80.22174417972565,13.018617525755847,0.0 80.22151350975037,13.01817849634669,0.0 80.22117555141449,13.0175669898021,0.0 80.22097170352936,13.017211583595673,0.0 80.22059619426727,13.016521675975348,0.0 80.22026896476746,13.015842219623803,0.0 80.21983981132507,13.01494847035581,0.0 80.21940529346466,13.014101757550442,0.0 80.21916389465332,13.013678400063213,0.0 80.21894931793213,13.01333344157613,0.0 80.2187991142273,13.01312960224449,0.0 80.21864891052246,13.012941442712696,0.0 80.21847724914551,13.012748056378417,0.0 80.21828949451447,13.012565123220687,0.0 80.21752774715424,13.011958829504321,0.0 80.21596670150757,13.01077759783343,0.0 80.21589159965515,13.010720104112902,0.0 80.21532833576202,13.010307194273913,0.0 80.21471679210663,13.009842016543086,0.0 80.21359026432037,13.009021419991674,0.0 80.21316111087799,13.008707815496937,0.0 80.21295189857483,13.00857192009273,0.0 80.21268904209137,13.00836285009469,0.0 80.21198630332947,13.007829720801992,0.0 80.2116858959198,13.007615423410453,0.0 80.2113425731659,13.007317497460921,0.0 80.21087050437927,13.006815726631755,0.0 80.21055936813354,13.006366222735338,0.0 80.21030187606812,13.005869676786585,0.0 80.21000146865845,13.005263366701367,0.0 80.2094167470932,13.004097783667996,0.0 80.20915389060974,13.0036116868835,0.0 80.20903050899506,13.003392158991216,0.0 80.20886421203613,13.003057639924734,0.0 80.20802736282349,13.00144253371151,0.0 80.20763039588928,13.000658497778982,0.0 80.20735681056976,13.00014103270655,0.0 80.20719587802887,12.999884913231131,0.0 80.20707249641418,12.999686289782497,0.0 80.20695984363556,12.99952425474614,0.0 80.20686328411102,12.999383127370207,0.0 80.20668089389801,12.999095645430282,0.0 80.20651459693909,12.998870886590765,0.0 80.20618200302124,12.998473637911523,0.0 80.20588159561157,12.998123431311713,0.0 80.20555973052979,12.997794132117873,0.0 80.20537197589874,12.997632095846237,0.0 80.20522177219391,12.99747005946883,0.0 80.20507156848907,12.997360292830487,0.0 80.20492672920227,12.997240072170916,0.0 80.20474970340729,12.997109397474885,0.0 80.20455658435822,12.99698917669379,0.0 80.20343542098999,12.996487384978787,0.0 80.20189046859741,12.995854916893101,0.0 80.20000219345093,12.995123133626269,0.0 80.19976615905762,12.995034274082709,0.0 80.19690155982971,12.993973184134795,0.0 80.1941066980362,12.992912089652261,0.0 80.1935487985611,12.992718687706317,0.0 80.19315719604492,12.992551421036985,0.0 80.18916070461273,12.991019880357449,0.0 80.18853306770325,12.99077943284004,0.0 80.18801271915436,12.99053898508984,0.0 80.18732070922852,12.99024103864167,0.0 80.18641948699951,12.989859457580762,0.0 80.18501400947571,12.989232199768448,0.0 80.18395721912384,12.988725165212427,0.0 80.1828145980835,12.98819722091507,0.0 80.18216013908386,12.98788881729149,0.0 80.18184900283813,12.987737228929381,0.0 80.18154323101044,12.987590867664407,0.0 80.1808512210846,12.987266781699374,0.0 80.1771068572998,12.985489528568463,0.0 80.17540097236633,12.984663624257477,0.0 80.17154932022095,12.982907261659921,0.0 80.17027795314789,12.982342713902996,0.0 80.1700633764267,12.982232940579117,0.0 80.16929626464844,12.981835665287422,0.0 80.1687490940094,12.981579526933706,0.0 80.16795516014099,12.981203159894237,0.0 80.16709685325623,12.980805882956505,0.0 80.16661942005157,12.980581107565737,0.0 80.16578793525696,12.980199511669424,0.0 80.16499400138855,12.979797005774087,0.0 80.16455411911011,12.979540865319525,0.0 80.1641571521759,12.979258587778183,0.0 80.16370117664337,12.978918808831063,0.0 80.1631486415863,12.978427435378416,0.0 80.16268193721771,12.978030154004522,0.0 80.16104578971863,12.976498523818783,0.0 80.1597261428833,12.975311895993922,0.0 80.15856206417084,12.974245494351056,0.0 80.15727996826172,12.973074538260153,0.0 80.1568615436554,12.972661565823751,0.0 80.15571355819702,12.971574242711814,0.0 80.15455484390259,12.97050259749401,0.0 80.15427589416504,12.970230764802261,0.0 80.15395402908325,12.969906656204643,0.0 80.15353560447693,12.96944663037336,0.0 80.15326738357544,12.969075472548546,0.0 80.15296697616577,12.968646810709709,0.0 80.15281677246094,12.968437707105686,0.0 80.15223741531372,12.967601290932206,0.0 80.15104651451111,12.965917994860133,0.0 80.15028476715088,12.964841097611773,0.0 80.14964640140533,12.963931481742554,0.0 80.14880955219269,12.962682061422633,0.0 80.14847695827484,12.96219065589642,0.0 80.14821946620941,12.96184562590469,0.0 80.14756500720978,12.960920315838667,0.0 80.14721095561981,12.960460273395856,0.0 80.14669597148895,12.959764980363326,0.0 80.14628827571869,12.959169013361413,0.0 80.14590740203857,12.958625322922394,0.0 80.14561235904694,12.958160048430939,0.0 80.14512419700623,12.957417698565807,0.0 80.14454483985901,12.956664890808787,0.0 80.14419615268707,12.956199612654387,0.0 80.14389038085938,12.955770928641613,0.0 80.14309108257294,12.95458420197716,0.0 80.1426512002945,12.953946399407366,0.0 80.14179825782776,12.952738752363132,0.0 80.1416802406311,12.95257145880441,0.0 80.14146029949188,12.952231643417383,0.0 80.14106333255768,12.951672254001492,0.0 80.14060735702515,12.95100307622785,0.0 80.14040350914001,12.950757362062944,0.0 80.13987243175507,12.949988850238318,0.0 80.13916969299316,12.948969392119407,0.0 80.13873517513275,12.948310663116713,0.0 80.13854742050171,12.948049262236228,0.0 80.13839721679688,12.947850597383681,0.0 80.13801097869873,12.947301654204562,0.0 80.13662159442902,12.945356817211483,0.0 80.13524830341339,12.943422421278797,0.0 80.13371407985687,12.941237058627753,0.0 80.13278603553772,12.939877732483836,0.0 80.13252317905426,12.939511758794405,0.0 80.13227641582489,12.939161469188633,0.0 80.13205647468567,12.938863461226221,0.0 80.13187408447266,12.938581137564903,0.0 80.13161659240723,12.938241303104267,0.0 80.13064563274384,12.93684013459149,0.0 80.13000726699829,12.935883362017453,0.0 80.1296478509903,12.935365762210035,0.0 80.12935817241669,12.934952727249843,0.0 80.1290363073349,12.934466495344392,0.0 80.12879490852356,12.934168481772627,0.0 80.12843012809753,12.933839097937051,0.0 80.12808680534363,12.933504485341345,0.0 80.12642920017242,12.932155573764005,0.0 80.12521147727966,12.931167412980846,0.0 80.12457847595215,12.930665488544783,0.0 80.12402594089508,12.930231532229065,0.0 80.1234519481659,12.92980280356166,0.0 80.12282967567444,12.929327018446626,0.0 80.12240052223206,12.928934887175494,0.0 80.1221376657486,12.928715293394546,0.0 80.12163877487183,12.928328389596144,0.0 80.12120962142944,12.92796762740596,0.0 80.1208770275116,12.927669606072955,0.0 80.1205176115036,12.92735067056805,0.0 80.12004017829895,12.926874880778733,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<styleUrl>#line-000000-2</styleUrl>
<name>Tambaram - Chengalpattu Line
</name>
<description><![CDATA[30 km
]]></description>
<LineString>
<tessellate>0</tessellate>
<coordinates>80.12004017829895,12.926874880778733,0.0 80.11938571929932,12.926252692762848,0.0 80.11905312538147,12.925933755447648,0.0 80.11862397193909,12.925515476383872,0.0 80.11818408966064,12.92514425312781,0.0 80.11752963066101,12.924610945512148,0.0 80.11716485023499,12.924312920171936,0.0 80.11661767959595,12.92395738070426,0.0 80.1161938905716,12.92374301107468,0.0 80.11594712734222,12.923622754860437,0.0 80.11536240577698,12.92318878630133,0.0 80.11451482772827,12.922472475102074,0.0 80.11416614055634,12.922179675772073,0.0 80.11373698711395,12.9218293618369,0.0 80.11319518089294,12.921400618740018,0.0 80.11205792427063,12.920449015578107,0.0 80.11152684688568,12.920041184541642,0.0 80.11123180389404,12.919816354326535,0.0 80.1107007265091,12.919371921910534,0.0 80.11043787002563,12.919141862466928,0.0 80.10883927345276,12.917871303086901,0.0 80.10773420333862,12.916987659214199,0.0 80.10667204856873,12.916145841730179,0.0 80.10536849498749,12.91514716016699,0.0 80.10498225688934,12.914838666102275,0.0 80.10476231575012,12.914645203528394,0.0 80.1044350862503,12.91435762374985,0.0 80.10378062725067,12.913808606889951,0.0 80.10230004787445,12.912600765552387,0.0 80.10155975818634,12.912009914633257,0.0 80.10113060474396,12.911654357654747,0.0 80.0996607542038,12.910462192329712,0.0 80.09905993938446,12.909965455099412,0.0 80.09878635406494,12.909698785231726,0.0 80.09844839572906,12.909395513271754,0.0 80.09819626808167,12.909154986972922,0.0 80.09790658950806,12.9088621720359,0.0 80.09765446186066,12.908574585603176,0.0 80.09740769863129,12.908271312279384,0.0 80.09710192680359,12.907910521121892,0.0 80.09626507759094,12.90675494014208,0.0 80.09594321250916,12.9063261711802,0.0 80.09568572044373,12.90596014831395,0.0 80.09550869464874,12.905730076523787,0.0 80.09513854980469,12.905290847972912,0.0 80.09459137916565,12.904600630119937,0.0 80.0940603017807,12.903926097195756,0.0 80.09377062320709,12.903591444527146,0.0 80.09352385997772,12.903314309946985,0.0 80.09267091751099,12.902210997535834,0.0 80.09186089038849,12.901170428290447,0.0 80.09034812450409,12.89920954483291,0.0 80.08880853652954,12.897144064303797,0.0 80.08823990821838,12.896380616551973,0.0 80.08788585662842,12.89592045513815,0.0 80.0876659154892,12.895627624706979,0.0 80.08720457553864,12.895036733686489,0.0 80.0862443447113,12.893750364339542,0.0 80.08521974086761,12.892275737686555,0.0 80.08465647697449,12.891527962695502,0.0 80.08443653583527,12.891188064233887,0.0 80.08421659469604,12.890832477657044,0.0 80.08391618728638,12.890351389131515,0.0 80.08382499217987,12.890189283007075,0.0 80.08369088172913,12.889901675108636,0.0 80.08356750011444,12.889655900824529,0.0 80.08335292339325,12.889232331811282,0.0 80.08263945579529,12.88783088848727,0.0 80.08207082748413,12.886706590598308,0.0 80.0817221403122,12.886011092167923,0.0 80.08134126663208,12.885237151794511,0.0 80.0811105966568,12.884766511208891,0.0 80.08098721504211,12.884510273184912,0.0 80.08055806159973,12.883610823352328,0.0 80.08007526397705,12.882538800437969,0.0 80.07952272891998,12.881356955225726,0.0 80.07936179637909,12.88101181353672,0.0 80.07910966873169,12.880457494071512,0.0 80.0786429643631,12.879442981685564,0.0 80.0783908367157,12.87888865874971,0.0 80.07820308208466,12.878475530481166,0.0 80.07764518260956,12.877251830094501,0.0 80.07743060588837,12.87678117450866,0.0 80.07714092731476,12.876132714253753,0.0 80.07631480693817,12.874427883322564,0.0 80.07618069648743,12.874124568629066,0.0 80.07599294185638,12.87377941697972,0.0 80.0757622718811,12.873355821124232,0.0 80.07535457611084,12.872707352008339,0.0 80.07487177848816,12.871980437053917,0.0 80.07456600666046,12.871483623462595,0.0 80.074303150177,12.871096631140997,0.0 80.07414758205414,12.87087175695004,0.0 80.07397055625916,12.8705893565176,0.0 80.07311224937439,12.869323780303032,0.0 80.07292985916138,12.869062296817944,0.0 80.07279574871063,12.868847880156737,0.0 80.07250607013702,12.868403357226349,0.0 80.0722861289978,12.868068657088228,0.0 80.07161557674408,12.867054094565619,0.0 80.07096111774445,12.866044757674656,0.0 80.07078945636749,12.865798959993004,0.0 80.07038176059723,12.865129552319747,0.0 80.0697648525238,12.86415158633611,0.0 80.06955027580261,12.863806420961131,0.0 80.0692069530487,12.863299131593674,0.0 80.067999958992,12.86142162903308,0.0 80.06748497486115,12.860621463505504,0.0 80.06657302379608,12.85917279132115,0.0 80.06633698940277,12.85884853864004,0.0 80.06619215011597,12.85861842357997,0.0 80.06593465805054,12.858257560901853,0.0 80.06490468978882,12.856651977189884,0.0 80.06419658660889,12.855590298932338,0.0 80.06380498409271,12.854994083558047,0.0 80.0635689496994,12.854622755723476,0.0 80.0627213716507,12.853283878971546,0.0 80.06177723407745,12.85186654463148,0.0 80.05974411964417,12.848686665790941,0.0 80.05925059318542,12.847912610244085,0.0 80.05886971950531,12.847410518884343,0.0 80.05855858325958,12.846965957988655,0.0 80.0580221414566,12.84619712728893,0.0 80.05743205547333,12.845391683080155,0.0 80.05729794502258,12.845219087556641,0.0 80.05713701248169,12.845036031568817,0.0 80.05657374858856,12.844434560955616,0.0 80.05635380744934,12.844204432688038,0.0 80.05585491657257,12.843712794319421,0.0 80.05504488945007,12.842975334963079,0.0 80.05463182926178,12.842562147569309,0.0 80.05428314208984,12.84223264321146,0.0 80.05380034446716,12.841777612673766,0.0 80.05352139472961,12.841500409758511,0.0 80.05322635173798,12.841191825021552,0.0 80.05244314670563,12.840412516118013,0.0 80.05186378955841,12.839831955565794,0.0 80.05119860172272,12.83917816955501,0.0 80.050528049469,12.83849823030014,0.0 80.04992723464966,12.837896744041778,0.0 80.04931032657623,12.83729002601032,0.0 80.04829108715057,12.836264878423544,0.0 80.04776000976562,12.835726151230718,0.0 80.04730939865112,12.835292030420034,0.0 80.04631698131561,12.834293026671757,0.0 80.04565715789795,12.833618304617481,0.0 80.04500269889832,12.832896506927584,0.0 80.04464328289032,12.832441459493271,0.0 80.04406929016113,12.831641201663645,0.0 80.04342555999756,12.830715410017802,0.0 80.04309833049774,12.830239436715571,0.0 80.04228830337524,12.829078267299002,0.0 80.04130125045776,12.827645104864418,0.0 80.04081308841705,12.826949442783656,0.0 80.04029273986816,12.826191012008113,0.0 80.03977239131927,12.82544827068848,0.0 80.03879606723785,12.824025548800655,0.0 80.03836691379547,12.823408336068711,0.0 80.03819525241852,12.823136343536914,0.0 80.03793239593506,12.822686509089367,0.0 80.03761053085327,12.822126830224235,0.0 80.03703653812408,12.821295155593623,0.0 80.03645718097687,12.820447786163161,0.0 80.03596365451813,12.819720719995805,0.0 80.03553450107574,12.819108727421812,0.0 80.0352931022644,12.81878442306169,0.0 80.03442406654358,12.81754473964182,0.0 80.03416657447815,12.817178587253306,0.0 80.03393590450287,12.816833357370852,0.0 80.03366231918335,12.816441050111791,0.0 80.03213346004486,12.814244118168617,0.0 80.03079235553741,12.812313940720752,0.0 80.03042221069336,12.811780393126261,0.0 80.02989113330841,12.811032378419789,0.0 80.02927422523499,12.810122203684138,0.0 80.0290596485138,12.809813580469909,0.0 80.02894699573517,12.80959388235827,0.0 80.02879679203033,12.809379414969301,0.0 80.0275844335556,12.807684593085048,0.0 80.02714455127716,12.807051647421304,0.0 80.02683877944946,12.806633170076548,0.0 80.02676367759705,12.806465778944109,0.0 80.02665638923645,12.806345466498982,0.0 80.02616286277771,12.805665438555732,0.0 80.02563178539276,12.804922636705957,0.0 80.02533674240112,12.804519848872193,0.0 80.02522945404053,12.804373380409448,0.0 80.02511143684387,12.803808429827448,0.0 80.02445161342621,12.802945308438154,0.0 80.02439260482788,12.80283022536301,0.0 80.02426385879517,12.802673293812227,0.0 80.02414584159851,12.8024745137077,0.0 80.02391517162323,12.802134494744525,0.0 80.02297639846802,12.800873805048804,0.0 80.02272427082062,12.800544246122357,0.0 80.02241849899292,12.800136220188168,0.0 80.02226829528809,12.799937438083633,0.0 80.02224147319794,12.799843278084694,0.0 80.02193033695221,12.799414326533533,0.0 80.0213348865509,12.798551190103726,0.0 80.0208842754364,12.798111774059345,0.0 80.020632147789,12.797735131126274,0.0 80.02046585083008,12.797468342041755,0.0 80.02031564712524,12.797290482495287,0.0 80.0201815366745,12.797028924110935,0.0 80.01984357833862,12.79651626889083,0.0 80.01925885677338,12.795663584941721,0.0 80.0188136100769,12.795025377891513,0.0 80.01832008361816,12.794329625743345,0.0 80.01722037792206,12.792781177985797,0.0 80.01678049564362,12.792169120001878,0.0 80.01661419868469,12.791912787584659,0.0 80.01644253730774,12.79164076106118,0.0 80.01629769802094,12.791373965532207,0.0 80.01611530780792,12.791065319372262,0.0 80.01591145992279,12.790714822427846,0.0 80.01578271389008,12.790380018921903,0.0 80.0155359506607,12.7899929018145,0.0 80.01549303531647,12.789741798508429,0.0 80.0152462720871,12.789150658489106,0.0 80.01435577869415,12.787126124216591,0.0 80.01422703266144,12.786827935626318,0.0 80.01407146453857,12.786514052519241,0.0 80.01391589641571,12.78624202017742,0.0 80.01379251480103,12.785969987542492,0.0 80.01343846321106,12.785237590530079,0.0 80.01300930976868,12.784275008368576,0.0 80.01199543476105,12.781978398064563,0.0 80.01100301742554,12.779823018144192,0.0 80.01006424427032,12.77772516711355,0.0 80.00898599624634,12.775365717834385,0.0 80.00805795192719,12.77328875644504,0.0 80.00738739967346,12.771850045223944,0.0 80.00695824623108,12.770939729166782,0.0 80.00668466091156,12.77044794786395,0.0 80.00648617744446,12.770118349221269,0.0 80.00635743141174,12.769893384821573,0.0 80.0061696767807,12.769610871105842,0.0 80.00592291355133,12.769260344390048,0.0 80.00580489635468,12.769082464975241,0.0 80.00566005706787,12.768836572636934,0.0 80.00538647174835,12.768459886037874,0.0 80.00500023365021,12.767941941047807,0.0 80.00488758087158,12.767779756034797,0.0 80.00474274158478,12.767591412018161,0.0 80.00460863113403,12.76739783607711,0.0 80.00438332557678,12.767115319572833,0.0 80.00387370586395,12.766382867906582,0.0 80.00366985797882,12.766095118457239,0.0 80.00326752662659,12.765503923106634,0.0 80.00287055969238,12.764933653715532,0.0 80.00245749950409,12.764347687497143,0.0 80.00224828720093,12.764075631291405,0.0 80.00199615955353,12.76370416946102,0.0 80.0017386674881,12.763317011479723,0.0 80.0010359287262,12.762291563152365,0.0 80.00089108943939,12.76208751936686,0.0 80.00077843666077,12.761925330599421,0.0 80.00065505504608,12.761742214124126,0.0 80.00018835067749,12.761124849030624,0.0 79.99988794326782,12.760701063645246,0.0 79.99975383281708,12.760497018576896,0.0 79.99939441680908,12.76012031955679,0.0 79.99912619590759,12.759832562983018,0.0 79.99892234802246,12.759633749159052,0.0 79.99875068664551,12.759403543483502,0.0 79.99854683876038,12.759131481960551,0.0 79.9983537197113,12.758906507787902,0.0 79.99802649021149,12.758498414592133,0.0 79.99767780303955,12.758090320738177,0.0 79.99735057353973,12.757682226226088,0.0 79.99706625938416,12.75733691497105,0.0 79.99614357948303,12.756123089850526,0.0 79.9949848651886,12.754600568214405,0.0 79.99362766742706,12.752800737011285,0.0 79.99265134334564,12.751497944232476,0.0 79.9923187494278,12.751068910604987,0.0 79.99200224876404,12.750639876250503,0.0 79.9908596277237,12.749117321637131,0.0 79.99029636383057,12.748348192630475,0.0 79.99000668525696,12.747961011158148,0.0 79.98861730098724,12.746066952722751,0.0 79.98829007148743,12.745622213191472,0.0 79.9878716468811,12.745088524723204,0.0 79.9868631362915,12.743785692269151,0.0 79.98669683933258,12.74355023990597,0.0 79.98648762702942,12.743225838513816,0.0 79.98638033866882,12.743032243936712,0.0 79.98623013496399,12.742754932528017,0.0 79.98611211776733,12.74254040839985,0.0 79.98600482940674,12.742331116392451,0.0 79.98587608337402,12.742059036524378,0.0 79.98566687107086,12.741561966780152,0.0 79.98552203178406,12.741159077956208,0.0 79.98542547225952,12.740824208835816,0.0 79.9853128194809,12.740421318838871,0.0 79.98521625995636,12.740028892901345,0.0 79.98511970043182,12.73953705153487,0.0 79.98503923416138,12.738940561788349,0.0 79.98494803905487,12.738260352469387,0.0 79.98486757278442,12.737642930122389,0.0 79.98462080955505,12.73582204868002,0.0 79.98443305492401,12.734540098439703,0.0 79.98437404632568,12.734090106206047,0.0 79.98432576656342,12.733781390141974,0.0 79.984250664711,12.733341861537788,0.0 79.98420238494873,12.733038377056907,0.0 79.98390197753906,12.731343043274846,0.0 79.98386442661285,12.73106048654257,0.0 79.9838376045227,12.73087734775165,0.0 79.98371958732605,12.730087233166156,0.0 79.98368740081787,12.729846535518513,0.0 79.98361766338348,12.729103510904405,0.0 79.9835479259491,12.728114552231638,0.0 79.98352110385895,12.727763968072738,0.0 79.98344600200653,12.727209311548084,0.0 79.98339772224426,12.72667558431337,0.0 79.98310267925262,12.724566827492213,0.0 79.98277544975281,12.722123159328813,0.0 79.98246431350708,12.719700398713323,0.0 79.98229265213013,12.718470694953034,0.0 79.98218536376953,12.717664843300534,0.0 79.98210489749908,12.717052603646843,0.0 79.9818205833435,12.716115926447658,0.0 79.9816381931305,12.715603107299412,0.0 79.98074769973755,12.713933821470931,0.0 79.98044729232788,12.71347855979514,0.0 79.97980892658234,12.712411046458403,0.0 79.97957825660706,12.71203427597416,0.0 79.97937440872192,12.711631340254515,0.0 79.97917056083679,12.711291199214399,0.0 79.97905790805817,12.71109234731843,0.0 79.97889161109924,12.710694643059488,0.0 79.97877895832062,12.710249841505945,0.0 79.97867166996002,12.709784107279901,0.0 79.97858047485352,12.709307906233352,0.0 79.97852683067322,12.709020091981237,0.0 79.97851073741913,12.708695646433341,0.0 79.97843027114868,12.707444957299257,0.0 79.97835516929626,12.706351253387396,0.0 79.97833371162415,12.706131465430355,0.0 79.97826933860779,12.705754685633154,0.0 79.97793674468994,12.70397544015451,0.0 79.97786164283752,12.703598657160867,0.0 79.97752368450165,12.701866494823456,0.0 79.97735738754272,12.700950694255829,0.0 79.97722327709198,12.700385512830671,0.0 79.97715353965759,12.699893594641651,0.0 79.97716426849365,12.699574370626774,0.0 79.97719645500183,12.699276078971938,0.0 79.97721254825592,12.699040585313032,0.0 79.97733056545258,12.698616696177375,0.0 79.9774968624115,12.698224205606854,0.0 79.97764706611633,12.697978244540552,0.0 79.97806549072266,12.697454922331286,0.0 79.9789023399353,12.69650770639373,0.0 79.9805223941803,12.694618497220771,0.0 79.98112320899963,12.693650337497237,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<styleUrl>#line-000000-2</styleUrl>
<name>Chengalpattu - Thirumalpur Line
</name>
<description><![CDATA[49 km
]]></description>
<LineString>
<tessellate>0</tessellate>
<coordinates>79.98112320899963,12.693650337497237,0.0 79.9805223941803,12.694618497220771,0.0 79.97806549072266,12.697454922331286,0.0 79.97772216796875,12.697884046622368,0.0 79.97764706611633,12.697978244540552,0.0 79.9774432182312,12.698302703769428,0.0 79.97727692127228,12.698501565672808,0.0 79.97699797153473,12.699040585313032,0.0 79.97650980949402,12.699747065635405,0.0 79.97620403766632,12.700081988954167,0.0 79.97563004493713,12.700704735827085,0.0 79.97421383857727,12.702243280384774,0.0 79.97283518314362,12.703750417044919,0.0 79.9724006652832,12.704247560858107,0.0 79.97183740139008,12.704844132150283,0.0 79.97131705284119,12.705404070597849,0.0 79.97002422809601,12.706827459975491,0.0 79.96940195560455,12.707502520532639,0.0 79.96911764144897,12.707806035547508,0.0 79.96880114078522,12.708156647268535,0.0 79.96854364871979,12.70843399649615,0.0 79.96708989143372,12.709998659108079,0.0 79.96563076972961,12.711584243829975,0.0 79.96478319168091,12.712573266911443,0.0 79.96462762355804,12.712756418911294,0.0 79.96401071548462,12.713405299219346,0.0 79.96347963809967,12.71401231478083,0.0 79.96305584907532,12.714472808376847,0.0 79.96192932128906,12.715697298649193,0.0 79.96044874191284,12.717303779067985,0.0 79.959756731987,12.71808346785486,0.0 79.95891451835632,12.718978275524991,0.0 79.95863556861877,12.719292242381036,0.0 79.9584424495697,12.719517251722312,0.0 79.95797038078308,12.720035295726571,0.0 79.9574339389801,12.720736484916978,0.0 79.95708525180817,12.721207431793236,0.0 79.95690286159515,12.721516163160139,0.0 79.95662927627563,12.722018504920548,0.0 79.95627522468567,12.722656896139656,0.0 79.95526671409607,12.724535431476596,0.0 79.95414018630981,12.726623258053454,0.0 79.95285272598267,12.729014557107527,0.0 79.95231628417969,12.729987814600252,0.0 79.95203197002411,12.730505837226653,0.0 79.95168328285217,12.731191299883685,0.0 79.95120048522949,12.73212792143483,0.0 79.95057284832001,12.733279071674994,0.0 79.94989156723022,12.734524401049647,0.0 79.94952142238617,12.735052879313727,0.0 79.9488240480423,12.735879605477525,0.0 79.94864702224731,12.736088902812837,0.0 79.94833588600159,12.736423778189902,0.0 79.94767606258392,12.737182478579486,0.0 79.94642078876495,12.7386161544947,0.0 79.94520843029022,12.74001842820135,0.0 79.9447363615036,12.740583521382208,0.0 79.94409799575806,12.741326512350449,0.0 79.94349718093872,12.741996248821014,0.0 79.94311094284058,12.742430530117526,0.0 79.94281053543091,12.742796790873301,0.0 79.94222581386566,12.743487452572161,0.0 79.94202196598053,12.743806621357521,0.0 79.94174301624298,12.744345544787276,0.0 79.94104564189911,12.744607157689337,0.0 79.94089007377625,12.74496295080256,0.0 79.93900179862976,12.747139556614822,0.0 79.93714570999146,12.749248125657532,0.0 79.93605673313141,12.750472448012504,0.0 79.93568122386932,12.750864857770944,0.0 79.93532180786133,12.751173553020182,0.0 79.93498921394348,12.751445623097311,0.0 79.9341470003128,12.751958369755629,0.0 79.93366956710815,12.752246135282384,0.0 79.9332457780838,12.752465883282575,0.0 79.9296623468399,12.754328501527988,0.0 79.92872893810272,12.754841242347087,0.0 79.92737710475922,12.755537103225926,0.0 79.9255907535553,12.756499794821309,0.0 79.92407262325287,12.757310755008284,0.0 79.9218624830246,12.758472254749437,0.0 79.91934657096863,12.759795939395602,0.0 79.91759777069092,12.760737687101647,0.0 79.91664290428162,12.761245183023004,0.0 79.91536617279053,12.761909634906738,0.0 79.9121367931366,12.76359430036439,0.0 79.9094545841217,12.765038290397381,0.0 79.9081939458847,12.765744586867473,0.0 79.9074375629425,12.766136972942943,0.0 79.9069333076477,12.766382867906582,0.0 79.9052220582962,12.767282736798657,0.0 79.90166544914246,12.769171404698293,0.0 79.90016341209412,12.769919543482985,0.0 79.89951968193054,12.770275301009477,0.0 79.8989886045456,12.77057350913861,0.0 79.89825904369354,12.770944960877628,0.0 79.89758312702179,12.771269326738508,0.0 79.89724516868591,12.771415814410203,0.0 79.89573776721954,12.771991300870033,0.0 79.89551246166229,12.77204361775595,0.0 79.89518523216248,12.772137788123317,0.0 79.89138722419739,12.773121343196717,0.0 79.88676846027374,12.774303696888841,0.0 79.88292753696442,12.775302938395235,0.0 79.87967669963837,12.77612953309485,0.0 79.87823367118835,12.776500976667922,0.0 79.87623810768127,12.777008440948496,0.0 79.87236499786377,12.778002440194003,0.0 79.87032651901245,12.778593606311723,0.0 79.86930191516876,12.778897036171186,0.0 79.86870646476746,12.779017361704192,0.0 79.86741900444031,12.779200465666179,0.0 79.86381411552429,12.779697461465423,0.0 79.86180245876312,12.779969500857224,0.0 79.8604828119278,12.780262466028432,0.0 79.85988199710846,12.780204919325195,0.0 79.85807418823242,12.780440337573747,0.0 79.85728561878204,12.780586819928786,0.0 79.85634684562683,12.780733302198854,0.0 79.85483407974243,12.780932099429522,0.0 79.85397040843964,12.781094276001799,0.0 79.85174417495728,12.781120433503707,0.0 79.85077321529388,12.781277378458253,0.0 79.84730243682861,12.782940988980453,0.0 79.846111536026,12.78362630962479,0.0 79.84481871128082,12.784348248444624,0.0 79.84337031841278,12.78510157370816,0.0 79.84255492687225,12.785541012407275,0.0 79.8412835597992,12.78624202017742,0.0 79.84053254127502,12.786634374423082,0.0 79.83957767486572,12.787094735960522,0.0 79.83715832233429,12.78825609883601,0.0 79.83537197113037,12.789108807815792,0.0 79.83324229717255,12.790866530120256,0.0 79.83211040496826,12.791802930754704,0.0 79.82910096645355,12.7932833782997,0.0 79.82897758483887,12.79335138451537,0.0 79.82863962650299,12.793461240671187,0.0 79.82833921909332,12.79368095283934,0.0 79.82755601406097,12.794083757984046,0.0 79.82634902000427,12.794721967416198,0.0 79.82571065425873,12.79504107152686,0.0 79.8251473903656,12.795239857490147,0.0 79.82395648956299,12.79520847024319,0.0 79.82277631759644,12.795281707146662,0.0 79.82256174087524,12.795334019207552,0.0 79.82149958610535,12.79550664893152,0.0 79.82043206691742,12.795778671287136,0.0 79.82014775276184,12.796040230967856,0.0 79.81818974018097,12.797133547497214,0.0 79.8145204782486,12.799189388233394,0.0 79.81093168258667,12.801198132460659,0.0 79.80851233005524,12.802547748501281,0.0 79.80783641338348,12.802872073760053,0.0 79.80761647224426,12.802976694722279,0.0 79.80410277843475,12.804174601645322,0.0 79.7996985912323,12.805686362519808,0.0 79.7956109046936,12.807077802232286,0.0 79.79313790798187,12.80793044758366,0.0 79.79271948337555,12.808040297388507,0.0 79.79093313217163,12.808662778711533,0.0 79.78671669960022,12.810096049189113,0.0 79.78468894958496,12.810796988717149,0.0 79.7841739654541,12.810948684328489,0.0 79.78326737880707,12.811346231014598,0.0 79.78278994560242,12.811613005412791,0.0 79.78235006332397,12.811958242449967,0.0 79.78111624717712,12.813077644134886,0.0 79.7803008556366,12.813736728781835,0.0 79.77959275245667,12.814364426842392,0.0 79.77801024913788,12.815745357069716,0.0 79.7772216796875,12.816237050095578,0.0 79.77589130401611,12.816880434200872,0.0 79.77358996868134,12.817963198862492,0.0 79.76949155330658,12.81987764092902,0.0 79.76798415184021,12.82053670778055,0.0 79.76676642894745,12.820913316635401,0.0 79.76617097854614,12.821054544810721,0.0 79.76569890975952,12.821195772906831,0.0 79.76103723049164,12.82244589963628,0.0 79.75682616233826,12.823586177180582,0.0 79.75574791431427,12.823876476372666,0.0 79.75199818611145,12.824872906187693,0.0 79.75118279457092,12.825118743908076,0.0 79.75059807300568,12.825270430892328,0.0 79.74594712257385,12.826525767942565,0.0 79.74206864833832,12.827561416294815,0.0 79.73873198032379,12.828461066959338,0.0 79.73418831825256,12.829669313662707,0.0 79.72971439361572,12.830872324095878,0.0 79.72534775733948,12.8320544070047,0.0 79.72067534923553,12.833309710206445,0.0 79.71540749073029,12.834737609981731,0.0 79.71468329429626,12.835025281116442,0.0 79.71429169178009,12.835244957034082,0.0 79.71406638622284,12.835443711270393,0.0 79.71380889415741,12.835673847558288,0.0 79.71354603767395,12.835914444361354,0.0 79.71343338489532,12.836055664116817,0.0 79.71331000328064,12.836175962364456,0.0 79.71318662166595,12.8364113283347,0.0 79.71295058727264,12.836793143773393,0.0 79.71280038356781,12.837195879977669,0.0 79.71268773078918,12.837598615536866,0.0 79.71255362033844,12.838414545341674,0.0 79.71244096755981,12.83955475050486,0.0 79.71234977245331,12.840708026154417,0.0 79.71214056015015,12.842666752037012,0.0 79.71193134784698,12.844105059052787,0.0 79.7118616104126,12.844361338347886,0.0 79.71174359321594,12.844675149373659,0.0 79.71161484718323,12.8449000470344,0.0 79.71142172813416,12.845182476369738,0.0 79.71123397350311,12.845381222748768,0.0 79.71100330352783,12.845647961063008,0.0 79.71074044704437,12.845862397541678,0.0 79.71053123474121,12.846008841860973,0.0 79.71022009849548,12.84612390519482,0.0 79.70848739147186,12.846934577189828,0.0 79.70751106739044,12.847384368265194,0.0 79.70650255680084,12.847891689790794,0.0 79.70512926578522,12.848561143431871,0.0 79.70362722873688,12.849251515630627,0.0 79.70265626907349,12.849873895001672,0.0 79.70245778560638,12.850025567051679,0.0 79.70173358917236,12.850904217125363,0.0 79.70161020755768,12.851092498884093,0.0 79.70151364803314,12.85128078050168,0.0 79.70064997673035,12.853043298798545,0.0 79.69977557659149,12.85487902428774,0.0 79.69912111759186,12.856238812293258,0.0 79.6986436843872,12.857216809112881,0.0 79.69756543636322,12.859465664350468,0.0 79.69651401042938,12.861620362559439,0.0 79.69549477100372,12.86371751465127,0.0 79.69468474388123,12.865422418396589,0.0 79.69413220882416,12.866593879284878,0.0 79.69391226768494,12.867017486562832,0.0 79.6927535533905,12.86939699562999,0.0 79.69156801700592,12.871844467116224,0.0 79.6906453371048,12.873810794422031,0.0 79.69044148921967,12.874396505957503,0.0 79.68998551368713,12.876143173303428,0.0 79.68948662281036,12.87832387562941,0.0 79.68901455402374,12.88030584041927,0.0 79.68851029872894,12.882434212590953,0.0 79.68794703483582,12.884593942772582,0.0 79.68739449977875,12.886931450579908,0.0 79.68677222728729,12.889619296123273,0.0 79.68612313270569,12.89224959174553,0.0 79.68583345413208,12.893509822996215,0.0 79.68560814857483,12.894393549839462,0.0 79.68546330928802,12.894932151059667,0.0 79.68481957912445,12.89746303835953,0.0 79.68438506126404,12.899319354712802,0.0 79.68376278877258,12.901876342572367,0.0 79.68339800834656,12.903345683688453,0.0 79.68319416046143,12.904381014949033,0.0 79.6828293800354,12.906493495740614,0.0 79.68250751495361,12.90843340668787,0.0 79.68208372592926,12.910911869392141,0.0 79.68179404735565,12.912888347352734,0.0 79.68148291110992,12.914613831204997,0.0 79.68112349510193,12.916731454193258,0.0 79.68079626560211,12.918577170206984,0.0 79.68047440052032,12.920386272385079,0.0 79.68014180660248,12.922399275301757,0.0 79.67985212802887,12.924156064586843,0.0 79.67945516109467,12.926404318556687,0.0 79.67911183834076,12.928317932728406,0.0 79.67877924442291,12.930158334703838,0.0 79.67845737934113,12.931967352964156,0.0 79.67822670936584,12.933384233830138,0.0 79.67792630195618,12.935193228702246,0.0 79.67762589454651,12.937059721221825,0.0 79.67739522457123,12.938419062726052,0.0 79.676992893219,12.939862047908159,0.0 79.67676758766174,12.940452832910596,0.0 79.67653691768646,12.940980878498074,0.0 79.67641890048981,12.94140958795451,0.0 79.67630088329315,12.941796471465388,0.0 79.67601656913757,12.943474702447313,0.0 79.6756786108017,12.945372501441472,0.0 79.67523872852325,12.947772177003545,0.0 79.67491686344147,12.94969085521958,0.0 79.67459499835968,12.95152064356963,0.0 79.67433214187622,12.952906045809515,0.0 79.67412829399109,12.953904576230977,0.0 79.67399954795837,12.9547724057021,0.0 79.67389762401581,12.955310876685129,0.0 79.67384666204453,12.956408726539186,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<styleUrl>#line-000000-2</styleUrl>
<name>Central - Tiruttani Line
</name>
<description><![CDATA[84 km
]]></description>
<LineString>
<tessellate>0</tessellate>
<coordinates>80.27422964572906,13.083663666466206,0.0 80.27347326278687,13.088277440181102,0.0 80.27349472045898,13.089343350705487,0.0 80.2736234664917,13.091287058027184,0.0 80.27358055114746,13.091914057118155,0.0 80.27334451675415,13.092582854389738,0.0 80.27293682098389,13.093502447673597,0.0 80.27248620986938,13.094296639110736,0.0 80.27207851409912,13.095132627330887,0.0 80.27175664901733,13.096031311502959,0.0 80.2716064453125,13.097055389469068,0.0 80.27154207229614,13.098581048745066,0.0 80.27145624160767,13.10058738080096,0.0 80.27135968208313,13.102813136295524,0.0 80.271155834198,13.104056624734353,0.0 80.2707052230835,13.105038871665116,0.0 80.27040481567383,13.105498645477285,0.0 80.26986837387085,13.106125608382358,0.0 80.26905298233032,13.10685706308615,0.0 80.26791572570801,13.107901994605713,0.0 80.26692867279053,13.108779733652892,0.0 80.26572704315186,13.109385789739001,0.0 80.26480436325073,13.10959477425012,0.0 80.26345252990723,13.109573875806992,0.0 80.26111364364624,13.109469383564752,0.0 80.25689721107483,13.108988718678814,0.0 80.25280952453613,13.108445357242225,0.0 80.25092124938965,13.108194574636013,0.0 80.24783134460449,13.107860197430117,0.0 80.24462342262268,13.107640762141807,0.0 80.24165153503418,13.107567617002237,0.0 80.23845434188843,13.10757806630921,0.0 80.23251056671143,13.107839298839666,0.0 80.2286696434021,13.108131878944517,0.0 80.22678136825562,13.108319965971065,0.0 80.22552609443665,13.108476705050034,0.0 80.21512985229492,13.109615672691465,0.0 80.2128553390503,13.109908250683958,0.0 80.21158933639526,13.109908250683958,0.0 80.20895004272461,13.110200828328496,0.0 80.20343542098999,13.111057660857298,0.0 80.19892930984497,13.111621914795256,0.0 80.19386529922485,13.112207065660131,0.0 80.18391966819763,13.113346016030476,0.0 80.17822265625,13.114025204107985,0.0 80.17405986785889,13.11440136900538,0.0 80.17058372497559,13.114589451238322,0.0 80.16749382019043,13.114589451238322,0.0 80.16615271568298,13.114589451238322,0.0 80.16303062438965,13.114484961126673,0.0 80.15811681747437,13.114255082724767,0.0 80.15451192855835,13.114213286628601,0.0 80.15248417854309,13.114223735653308,0.0 80.1508641242981,13.114234184677581,0.0 80.14910459518433,13.114359572934086,0.0 80.14635801315308,13.114484961126673,0.0 80.14365434646606,13.114798431328444,0.0 80.14107942581177,13.115070105180111,0.0 80.13856887817383,13.115320880776801,0.0 80.13749599456787,13.115425370533284,0.0 80.13703465461731,13.115508962306508,0.0 80.12704610824585,13.116459816726893,0.0 80.11848449707031,13.117327076343669,0.0 80.11434316635132,13.117745031693172,0.0 80.11121034622192,13.117933111368641,0.0 80.10842084884644,13.11807939546121,0.0 80.1037859916687,13.118121190900249,0.0 80.10117888450623,13.118162986332175,0.0 80.09807825088501,13.118267474880913,0.0 80.09535312652588,13.118288372585324,0.0 80.0907826423645,13.11839286108078,0.0 80.08606195449829,13.11847645184516,0.0 80.08256435394287,13.118497349531811,0.0 80.07707118988037,13.118685428631778,0.0 80.07487177848816,13.118716775134454,0.0 80.0699257850647,13.118810814618499,0.0 80.06469011306763,13.119009342299995,0.0 80.06155729293823,13.119061586400063,0.0 80.0567078590393,13.119542231599741,0.0 80.0542402267456,13.119876592923537,0.0 80.052330493927,13.12021095379255,0.0 80.04971265792847,13.120733391739895,0.0 80.04506707191467,13.121443905566375,0.0 80.03868341445923,13.122655953824253,0.0 80.0337266921997,13.123345564820335,0.0 80.03065824508667,13.12361722922689,0.0 80.02763271331787,13.123805304409354,0.0 80.02426385879517,13.123909790559647,0.0 80.01267671585083,13.123888893333147,0.0 80.00774145126343,13.123867996104863,0.0 79.99836444854736,13.12376350993681,0.0 79.99523162841797,13.123784407173973,0.0 79.99177694320679,13.12395158500732,0.0 79.9830436706543,13.12422324874396,0.0 79.97727155685425,13.124515809355255,0.0 79.97300148010254,13.124682986691036,0.0 79.96832370758057,13.12485016391308,0.0 79.96574878692627,13.125038238151953,0.0 79.96315240859985,13.125038238151953,0.0 79.95965480804443,13.125142723778001,0.0 79.9571442604065,13.125205415132314,0.0 79.95394706726074,13.125100929532918,0.0 79.95051383972168,13.124912855342034,0.0 79.9470591545105,13.124620295203446,0.0 79.94319677352905,13.124160557139083,0.0 79.93980646133423,13.12372171545714,0.0 79.93832588195801,13.123533640210708,0.0 79.9369740486145,13.123136591995568,0.0 79.93523597717285,13.12273954313896,0.0 79.93429183959961,13.122509672455116,0.0 79.9319314956665,13.121966340893197,0.0 79.92759704589844,13.120670699244846,0.0 79.91920709609985,13.117995804561836,0.0 79.91585969924927,13.116950915921684,0.0 79.91349935531616,13.116209042291677,0.0 79.89777088165283,13.11116215242494,0.0 79.88396286964417,13.106752569690146,0.0 79.88275051116943,13.106397291811847,0.0 79.88017559051514,13.105268758678575,0.0 79.86616373062134,13.10090086870786,0.0 79.86285924911499,13.099960403789705,0.0 79.86159324645996,13.099563317523453,0.0 79.86024141311646,13.099061733955983,0.0 79.85897541046143,13.098643746869264,0.0 79.85279560089111,13.09663739897683,0.0 79.84648704528809,13.095529720741494,0.0 79.8415732383728,13.09465193445098,0.0 79.83882665634155,13.094401137793406,0.0 79.83794689178467,13.094819132080824,0.0 79.83676671981812,13.09469373386907,0.0 79.83522176742554,13.09458923531053,0.0 79.8331618309021,13.094401137793406,0.0 79.83146667480469,13.094024942328286,0.0 79.82511520385742,13.093690545876957,0.0 79.81666088104248,13.094066741852773,0.0 79.81475114822388,13.094505636431766,0.0 79.81312036514282,13.0947982323833,0.0 79.81067419052124,13.09540432289152,0.0 79.80696201324463,13.095864114695972,0.0 79.80129718780518,13.096167158825077,0.0 79.7985291481018,13.096303006072239,0.0 79.78840112686157,13.095278924977695,0.0 79.78503227233887,13.094233939879844,0.0 79.78089094161987,13.093314349326617,0.0 79.77758646011353,13.092520154722639,0.0 79.77602005004883,13.092123056460556,0.0 79.77569818496704,13.092143956385046,0.0 79.77481842041016,13.091914057118155,0.0 79.77389574050903,13.091725957558404,0.0 79.76932525634766,13.091057157960702,0.0 79.76339221000671,13.090304756243329,0.0 79.75209474563599,13.088988047709636,0.0 79.74595785140991,13.088277440181102,0.0 79.73761081695557,13.08725332572679,0.0 79.72849130630493,13.086208306590859,0.0 79.7189211845398,13.085518591534038,0.0 79.7064757347107,13.084745272357205,0.0 79.6981930732727,13.084222758026524,0.0 79.6934723854065,13.083762944499405,0.0 79.68602657318115,13.083083672946902,0.0 79.67686414718628,13.082237193469938,0.0 79.67304468154907,13.081902781023867,0.0 79.66874241828918,13.081568368124248,0.0 79.65959072113037,13.080899540964381,0.0 79.65437650680542,13.080293414783808,0.0 79.65315341949463,13.080147108241142,0.0 79.65212345123291,13.080126207299385,0.0 79.65128660202026,13.080188910119329,0.0 79.65017080307007,13.080690532104896,0.0 79.64922666549683,13.081463864000106,0.0 79.64871168136597,13.082174491170841,0.0 79.64834690093994,13.08313592467123,0.0 79.64826107025146,13.084201857430262,0.0 79.64836835861206,13.085309586590336,0.0 79.64866876602173,13.086187406162951,0.0 79.65130805969238,13.092373855437401,0.0 79.6542477607727,13.09929162655124,0.0 79.65448379516602,13.10002310156267,0.0 79.65452671051025,13.100712776011619,0.0 79.65450525283813,13.101318851962786,0.0 79.6543550491333,13.101904027327436,0.0 79.65411901473999,13.102489201301116,0.0 79.6513295173645,13.108027386089857,0.0 79.64680194854736,13.116888222462073,0.0 79.64409828186035,13.122196212085205,0.0 79.64388370513916,13.122781337785646,0.0 79.6437120437622,13.123241078430164,0.0 79.64328289031982,13.124014276665516,0.0 79.63886260986328,13.132707365033228,0.0 79.63510751724243,13.139979231437275,0.0 79.63386297225952,13.143238963688553,0.0 79.6329402923584,13.146415071408981,0.0 79.63268280029297,13.147647891617227,0.0 79.63236093521118,13.149235922076146,0.0 79.63122367858887,13.153394005749025,0.0 79.62916374206543,13.157238603285286,0.0 79.62523698806763,13.163068068195967,0.0 79.62448596954346,13.16407097290741,0.0 79.62068796157837,13.168813820811772,0.0 79.61598873138428,13.17485193918756,0.0 79.61212635040283,13.17940654584603,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Korukkupet</name>
<description><![CDATA[3 km
]]></description>
<Point>
<coordinates>80.27857214212418,13.120585803132304,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Tondiarpet</name>
<description><![CDATA[4 km
]]></description>
<Point>
<coordinates>80.28140187263489,13.126720451330726,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>VOC Nagar
</name>
<description><![CDATA[6 km
]]></description>
<Point>
<coordinates>80.2876889705658,13.140527747105583,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Tiruvottiyur</name>
<description><![CDATA[8 km
]]></description>
<Point>
<coordinates>80.29623985290527,13.15921311499522,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Wimco Nagar
</name>
<Point>
<coordinates>80.30589044094086,13.18032842552451,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Kathivakkam</name>
<Point>
<coordinates>80.3169572353363,13.204546761562703,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Ennore</name>
<description><![CDATA[14 km
]]></description>
<Point>
<coordinates>80.32175838947296,13.217709937178023,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Attipattu Pudunagar
</name>
<Point>
<coordinates>80.2995228767395,13.249626577627811,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Attipattu</name>
<description><![CDATA[20 km
]]></description>
<Point>
<coordinates>80.2890408039093,13.261338392168156,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Nandiampakkam H
</name>
<Point>
<coordinates>80.27591943740845,13.268825721180162,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Minjur</name>
<description><![CDATA[25 km
]]></description>
<Point>
<coordinates>80.25992274284363,13.281847067315779,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Anupampattu</name>
<Point>
<coordinates>80.23087441921234,13.304363889121834,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Ponneri</name>
<description><![CDATA[33 km
]]></description>
<Point>
<coordinates>80.19909024238586,13.332542207569778,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Kavaraipettai</name>
<description><![CDATA[40 km
]]></description>
<Point>
<coordinates>80.14732360839844,13.363530389407087,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Gummidipundi</name>
<description><![CDATA[46 km
]]></description>
<Point>
<coordinates>80.12347340583801,13.409611223821466,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Elavur</name>
<description><![CDATA[52 km
]]></description>
<Point>
<coordinates>80.11581838130951,13.458771766396394,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Arambakkam</name>
<description><![CDATA[61 km
]]></description>
<Point>
<coordinates>80.07488787174225,13.533369846580236,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-EE9C96</styleUrl>
<name>Tada</name>
<description><![CDATA[68 km
]]></description>
<Point>
<coordinates>80.03633916378021,13.588579599527025,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-CDDC39</styleUrl>
<name>Sullurupetta</name>
<description><![CDATA[81 km
]]></description>
<Point>
<coordinates>80.01838445663452,13.696688124868661,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#line-000000-1</styleUrl>
<name>Central - Sullurupetta Line
</name>
<description><![CDATA[81 km
]]></description>
<LineString>
<tessellate>0</tessellate>
<coordinates>80.27422964572906,13.083663666466206,0.0 80.27386486530304,13.085879124645393,0.0 80.27373611927032,13.086668115556542,0.0 80.27347326278687,13.088277440181102,0.0 80.27349472045898,13.089343350705487,0.0 80.2735698223114,13.090471956823533,0.0 80.2736234664917,13.091287058027184,0.0 80.27358055114746,13.091914057118155,0.0 80.27332842350006,13.092629879129577,0.0 80.27293682098389,13.093502447673597,0.0 80.27248620986938,13.094296639110736,0.0 80.27207851409912,13.095132627330887,0.0 80.27175664901733,13.096031311502959,0.0 80.2716064453125,13.097055389469068,0.0 80.27154743671417,13.0985183506049,0.0 80.27148306369781,13.099887256367717,0.0 80.27153134346008,13.100869519935134,0.0 80.27154207229614,13.101475595500423,0.0 80.27152061462402,13.102128692499694,0.0 80.27147769927979,13.102719090695896,0.0 80.27135968208313,13.102813136295524,0.0 80.27145087718964,13.103063924385522,0.0 80.2714079618454,13.103617747179138,0.0 80.27145624160767,13.104124546190825,0.0 80.27157962322235,13.104709714885661,0.0 80.27167618274689,13.10509634343862,0.0 80.27184784412384,13.10561358879612,0.0 80.27212142944336,13.106313696942403,0.0 80.27236819267273,13.10690408509987,0.0 80.27288317680359,13.108048284664354,0.0 80.27361810207367,13.109641795740652,0.0 80.27421355247498,13.110953169245267,0.0 80.27487337589264,13.112426496875589,0.0 80.27542054653168,13.113659487683929,0.0 80.2759301662445,13.114772308826899,0.0 80.27650952339172,13.116031410245325,0.0 80.27682065963745,13.116700141987318,0.0 80.2770084142685,13.117118098402496,0.0 80.27721226215363,13.117609196282508,0.0 80.27751803398132,13.11824657717472,0.0 80.2778559923172,13.118977995834621,0.0 80.27824223041534,13.119840022175897,0.0 80.27857214212418,13.120585803132418,0.0 80.27892351150513,13.121349867089625,0.0 80.27967989444733,13.12300075956417,0.0 80.28031289577484,13.12437475338972,0.0 80.28140187263489,13.126720451330726,0.0 80.28180420398712,13.127650365473981,0.0 80.28226554393768,13.128627293956812,0.0 80.28235673904419,13.12886238311874,0.0 80.28257668018341,13.129322112385232,0.0 80.28288245201111,13.129964687077335,0.0 80.28312385082245,13.130476655954032,0.0 80.28374075889587,13.131814039005198,0.0 80.28478145599365,13.13408130457016,0.0 80.28582215309143,13.136348549200902,0.0 80.28676092624664,13.138438157047334,0.0 80.2876889705658,13.140527747105583,0.0 80.2886974811554,13.142789708290616,0.0 80.28931438922882,13.14391284524319,0.0 80.28941631317139,13.144111352635061,0.0 80.28955578804016,13.144325531483027,0.0 80.2901941537857,13.14568373445931,0.0 80.29104173183441,13.14754341556868,0.0 80.29188394546509,13.149371739993363,0.0 80.29220044612885,13.150118737193624,0.0 80.29238283634186,13.150604545340583,0.0 80.2926617860794,13.151247064314864,0.0 80.29355227947235,13.153237295331445,0.0 80.29420137405396,13.154699922000146,0.0 80.29505431652069,13.15662744167511,0.0 80.29569268226624,13.158016918001525,0.0 80.29623985290527,13.15921311499522,0.0 80.29706597328186,13.160957776124654,0.0 80.29793500900269,13.162890470058754,0.0 80.29855191707611,13.164259017083717,0.0 80.29880404472351,13.164791808132694,0.0 80.2994692325592,13.166223025408952,0.0 80.30031681060791,13.168056433861683,0.0 80.30109465122223,13.169832371982261,0.0 80.30201733112335,13.171817228756693,0.0 80.30295610427856,13.173843855386073,0.0 80.30390560626984,13.175922697227522,0.0 80.30476927757263,13.177844826736685,0.0 80.30547738075256,13.179416992094138,0.0 80.30589044094086,13.18032842552451,0.0 80.30654489994049,13.181767386578493,0.0 80.30756950378418,13.184008074961033,0.0 80.30831515789032,13.185632430628083,0.0 80.30913054943085,13.187366457568894,0.0 80.30995666980743,13.189178815957844,0.0 80.31080961227417,13.19103294392272,0.0 80.31149089336395,13.192526681857434,0.0 80.31258523464203,13.194908287096546,0.0 80.3134435415268,13.196793708117305,0.0 80.31406581401825,13.198172510955974,0.0 80.31482756137848,13.199864667441208,0.0 80.31560003757477,13.201635151956415,0.0 80.31643688678741,13.203395178415066,0.0 80.31667828559875,13.203927884219594,0.0 80.3169572353363,13.204546761562703,0.0 80.31727910041809,13.205264866218617,0.0 80.31760632991791,13.20601691537612,0.0 80.31826615333557,13.207416556252047,0.0 80.31916737556458,13.209354105565302,0.0 80.32021343708038,13.211589318552223,0.0 80.32114684581757,13.213704396103056,0.0 80.32153844833374,13.21467053653909,0.0 80.32163500785828,13.215015212741795,0.0 80.32173156738281,13.21543300142564,0.0 80.32179594039917,13.215798565937154,0.0 80.32182812690735,13.216430469015329,0.0 80.32181203365326,13.21700492493884,0.0 80.32179057598114,13.217480155634988,0.0 80.32175838947296,13.217709937178023,0.0 80.3216403722763,13.218336613013433,0.0 80.32151162624359,13.218879730768505,0.0 80.32137751579285,13.219443736388014,0.0 80.32121121883392,13.220002518447167,0.0 80.32101273536682,13.220472521057056,0.0 80.32053530216217,13.221308079015994,0.0 80.32010614871979,13.221919078961376,0.0 80.319784283638,13.22237341126171,0.0 80.31932294368744,13.22301574169023,0.0 80.31879723072052,13.223736403083711,0.0 80.31745076179504,13.225553713661043,0.0 80.31643688678741,13.226901021379067,0.0 80.31540155410767,13.228300542441362,0.0 80.31458616256714,13.229412842628989,0.0 80.31340062618256,13.23103167420716,0.0 80.31154990196228,13.233538230917327,0.0 80.3107076883316,13.234687060791684,0.0 80.30940413475037,13.236462514486902,0.0 80.30805230140686,13.238279730161903,0.0 80.30639469623566,13.240530343423712,0.0 80.30535936355591,13.24193500797965,0.0 80.30495703220367,13.24246762959571,0.0 80.30419528484344,13.243407547252232,0.0 80.30349791049957,13.2442482483039,0.0 80.30316531658173,13.244707760695059,0.0 80.30250549316406,13.245574565798778,0.0 80.30113220214844,13.24742826514919,0.0 80.2995228767395,13.249626577627811,0.0 80.298712849617,13.250764888399297,0.0 80.29818713665009,13.251475024531766,0.0 80.29698014259338,13.253119817172403,0.0 80.29603064060211,13.254372985053408,0.0 80.29576241970062,13.254769820203139,0.0 80.29546201229095,13.255177097709938,0.0 80.29409408569336,13.257067274134599,0.0 80.29369711875916,13.257615526978878,0.0 80.29281198978424,13.258738136089026,0.0 80.292409658432,13.259218506776074,0.0 80.29207170009613,13.259542234312503,0.0 80.2915620803833,13.259954725226361,0.0 80.2908593416214,13.260304558744117,0.0 80.2904462814331,13.260502971560326,0.0 80.28936266899109,13.26114520140776,0.0 80.2890408039093,13.261338392168156,0.0 80.28779625892639,13.262074604199118,0.0 80.28615474700928,13.262972675430884,0.0 80.28292000293732,13.264727037567596,0.0 80.2811336517334,13.265708639428766,0.0 80.27831196784973,13.267228025980902,0.0 80.27753412723541,13.267656167554884,0.0 80.27667582035065,13.26826705117751,0.0 80.27631640434265,13.268517669655333,0.0 80.27591943740845,13.268825721180162,0.0 80.27439057826996,13.270026596276756,0.0 80.27352154254913,13.27075233965315,0.0 80.27265787124634,13.27146763855728,0.0 80.27112901210785,13.272705048476244,0.0 80.26862382888794,13.274751721088064,0.0 80.26691794395447,13.276124861667368,0.0 80.2658611536026,13.276965449597341,0.0 80.2649974822998,13.277654625108111,0.0 80.2640050649643,13.278448218727593,0.0 80.26335060596466,13.27901730729188,0.0 80.26212751865387,13.280040619152327,0.0 80.26075422763824,13.28114746181862,0.0 80.25992274284363,13.281847067315779,0.0 80.25806665420532,13.283355911113153,0.0 80.25614082813263,13.284927395891152,0.0 80.25434374809265,13.286357908069846,0.0 80.25224089622498,13.28803901014268,0.0 80.2517956495285,13.288425348724482,0.0 80.25085687637329,13.28918758250039,0.0 80.24997174739838,13.289918489351155,0.0 80.24849653244019,13.291187129584614,0.0 80.24808347225189,13.291526476670358,0.0 80.24746656417847,13.291991120371499,0.0 80.24695694446564,13.292382673361063,0.0 80.24598598480225,13.293170998129128,0.0 80.24496674537659,13.294011527012652,0.0 80.24311065673828,13.295546398325628,0.0 80.24143695831299,13.296888097602874,0.0 80.2398544549942,13.298104495588506,0.0 80.23907661437988,13.298647435208483,0.0 80.23685038089752,13.300197938773959,0.0 80.23475289344788,13.301691006906989,0.0 80.23358881473541,13.302494962860935,0.0 80.23282706737518,13.303053554063743,0.0 80.23204922676086,13.303549498445054,0.0 80.23166835308075,13.303794860026796,0.0 80.23145377635956,13.303946253219255,0.0 80.23087441921234,13.304363889121834,0.0 80.22847652435303,13.306050086757711,0.0 80.2258962392807,13.307866781912622,0.0 80.22343933582306,13.309610378816553,0.0 80.2226185798645,13.310195055207656,0.0 80.22111654281616,13.31132786169865,0.0 80.22010803222656,13.3120587017839,0.0 80.21873474121094,13.313024451370476,0.0 80.21765112876892,13.313802268507294,0.0 80.2159184217453,13.315034242214727,0.0 80.21374583244324,13.316563760170427,0.0 80.21144449710846,13.318202891551715,0.0 80.20886957645416,13.32003515584771,0.0 80.20728170871735,13.32114181588228,0.0 80.2068954706192,13.321439360405623,0.0 80.20654678344727,13.321684703860177,0.0 80.20590841770172,13.322248470855708,0.0 80.2053290605545,13.322791356350647,0.0 80.20481944084167,13.323339460662668,0.0 80.20423471927643,13.323971084091792,0.0 80.20369291305542,13.324665345958547,0.0 80.2033656835556,13.32512992609498,0.0 80.20302772521973,13.32567802510868,0.0 80.20266830921173,13.326293982518196,0.0 80.2022123336792,13.327118736593363,0.0 80.2015095949173,13.328340202651647,0.0 80.2006459236145,13.329859196707524,0.0 80.19990563392639,13.331117187997855,0.0 80.19909024238586,13.332542207569778,0.0 80.19850015640259,13.333586172621517,0.0 80.19763648509979,13.33502683698931,0.0 80.19705176353455,13.33576804502175,0.0 80.19639730453491,13.3365092507812,0.0 80.1958554983139,13.33697902790256,0.0 80.1950615644455,13.337553198699673,0.0 80.19407987594604,13.338216103286978,0.0 80.19329130649567,13.338758952933325,0.0 80.19298017024994,13.338988619724303,0.0 80.19139766693115,13.340121291386764,0.0 80.19013702869415,13.34098775552567,0.0 80.18935918807983,13.341514940017444,0.0 80.18876373767853,13.341927291441893,0.0 80.18799662590027,13.342459693505864,0.0 80.18670916557312,13.343331368861763,0.0 80.18575966358185,13.343973379238152,0.0 80.18491744995117,13.344578850875177,0.0 80.18297553062439,13.345909839224507,0.0 80.18121600151062,13.347141649357287,0.0 80.18016993999481,13.3478723812126,0.0 80.17946183681488,13.348404770171923,0.0 80.17907559871674,13.348712720112532,0.0 80.17814218997955,13.349297301970235,0.0 80.17709076404572,13.349907979720747,0.0 80.17519176006317,13.350857919818068,0.0 80.17400085926056,13.351379863335428,0.0 80.17105042934418,13.352747349999362,0.0 80.16776740550995,13.354229655037667,0.0 80.16453266143799,13.355701512300486,0.0 80.16122281551361,13.357215115016936,0.0 80.15888392925262,13.35826419270836,0.0 80.15512883663177,13.359970891444776,0.0 80.15328884124756,13.360816407447365,0.0 80.14992535114288,13.362329978075785,0.0 80.14732360839844,13.363530389407087,0.0 80.14549970626831,13.364334139741647,0.0 80.14448046684265,13.364903026346525,0.0 80.14392793178558,13.36527358478941,0.0 80.14306962490082,13.366072110202527,0.0 80.14267802238464,13.366541829798557,0.0 80.14215230941772,13.367288160163609,0.0 80.14179289340973,13.367956202167358,0.0 80.14149248600006,13.368545956460455,0.0 80.14132618904114,13.3689269474049,0.0 80.1409775018692,13.370163859060266,0.0 80.14080047607422,13.370847550120912,0.0 80.14060199260712,13.371766093836586,0.0 80.14044106006622,13.372428904457124,0.0 80.14017820358276,13.373472697014458,0.0 80.13973295688629,13.37529410419945,0.0 80.13929307460785,13.377152029722124,0.0 80.13885855674744,13.37897340909389,0.0 80.13840794563293,13.38088349415708,0.0 80.13795733451843,13.382704845313853,0.0 80.13745844364166,13.384781899449,0.0 80.1372492313385,13.385705608723315,0.0 80.13701856136322,13.386467535740067,0.0 80.13684689998627,13.387192929768787,0.0 80.13648211956024,13.388721990597674,0.0 80.13603687286377,13.390548501041046,0.0 80.13550579547882,13.392771606477629,0.0 80.1351410150528,13.394232791353643,0.0 80.13485133647919,13.395172119802526,0.0 80.13460993766785,13.395688748886235,0.0 80.13440072536469,13.396064478432104,0.0 80.13404667377472,13.3966332901002,0.0 80.13387501239777,13.396935959980864,0.0 80.13353705406189,13.397389964087827,0.0 80.13305425643921,13.39790136998669,0.0 80.13152003288269,13.399388615656525,0.0 80.13108551502228,13.399785212948665,0.0 80.1308012008667,13.400014821608364,0.0 80.13010919094086,13.400682772826512,0.0 80.12804388999939,13.402587467283869,0.0 80.12734651565552,13.403244974744258,0.0 80.12707829475403,13.403537199705067,0.0 80.12647747993469,13.40422079599405,0.0 80.12553870677948,13.405885423102657,0.0 80.1247501373291,13.407325655438111,0.0 80.12391328811646,13.40882849737022,0.0 80.12347340583801,13.409611223821466,0.0 80.12301206588745,13.410378293270359,0.0 80.12258291244507,13.411192323476952,0.0 80.12230932712555,13.411667173157317,0.0 80.12189090251923,13.41235596443245,0.0 80.12142419815063,13.413363057212385,0.0 80.12125790119171,13.413832684526591,0.0 80.12108623981476,13.414349273511927,0.0 80.12099504470825,13.414829335007536,0.0 80.12088239192963,13.415648568170443,0.0 80.12080192565918,13.41664521111748,0.0 80.12067317962646,13.41804363508662,0.0 80.12064635753632,13.418601958799881,0.0 80.12060880661011,13.418967216601553,0.0 80.12053370475769,13.419567281783962,0.0 80.1203727722168,13.42143530118674,0.0 80.12015283107758,13.423960756826231,0.0 80.12004017829895,13.425218256854524,0.0 80.11993288993835,13.42631921620083,0.0 80.119868516922,13.427174934669146,0.0 80.11975049972534,13.428150658711925,0.0 80.11964857578278,13.429215080415876,0.0 80.11948764324188,13.43067604369425,0.0 80.11940717697144,13.43153174662623,0.0 80.1193106174469,13.432486582270647,0.0 80.11918187141418,13.433869261030347,0.0 80.11902630329132,13.435439765727468,0.0 80.1188600063324,13.437307661579371,0.0 80.1186454296112,13.439504246745576,0.0 80.11854887008667,13.440490355631859,0.0 80.11844158172607,13.441533852681962,0.0 80.11824309825897,13.44364692029653,0.0 80.11809825897217,13.44517040440254,0.0 80.117889046669,13.447095615328573,0.0 80.1177442073822,13.448342559409493,0.0 80.1176369190216,13.449370370363015,0.0 80.11755108833313,13.450132095433055,0.0 80.11757254600525,13.450439915150968,0.0 80.11750280857086,13.451170333237819,0.0 80.1174008846283,13.452443342294469,0.0 80.11725068092346,13.453403311862633,0.0 80.11691272258759,13.455161507018726,0.0 80.11658549308777,13.456502317794738,0.0 80.11630117893219,13.457326625751438,0.0 80.11581838130951,13.458771766396394,0.0 80.11546432971954,13.459804749670177,0.0 80.11494934558868,13.461328131010799,0.0 80.11476695537567,13.461902005029224,0.0 80.1143217086792,13.46308626797232,0.0 80.1138710975647,13.464244440160845,0.0 80.11338293552399,13.465778227135164,0.0 80.11277675628662,13.467640669529567,0.0 80.11219203472137,13.469435278177006,0.0 80.11177897453308,13.470697756426038,0.0 80.111403465271,13.471897626271861,0.0 80.11078655719757,13.473744370706978,0.0 80.11025011539459,13.475330264150482,0.0 80.10955274105072,13.477463900246951,0.0 80.10894656181335,13.479341901592322,0.0 80.10867834091187,13.480145264328739,0.0 80.10821163654327,13.481585050528743,0.0 80.1077288389206,13.483019611485382,0.0 80.10718166828156,13.484668041805564,0.0 80.10691344738007,13.485476603153558,0.0 80.1064145565033,13.486968522071011,0.0 80.10604441165924,13.487975301250176,0.0 80.1056957244873,13.48891947890449,0.0 80.10530412197113,13.490108824450084,0.0 80.10503590106964,13.49091736738222,0.0 80.10461211204529,13.49224754495954,0.0 80.10404884815216,13.493927209589273,0.0 80.10366797447205,13.49509044866553,0.0 80.10330855846405,13.49621195182566,0.0 80.10301887989044,13.497140448129723,0.0 80.10259509086609,13.498314104020332,0.0 80.10236442089081,13.498846159456324,0.0 80.1017689704895,13.499978077369502,0.0 80.1008677482605,13.501626390627969,0.0 80.10005235671997,13.503123424765375,0.0 80.0997143983841,13.503712846778953,0.0 80.0989580154419,13.505048169140204,0.0 80.09862005710602,13.505814932899192,0.0 80.09819626808167,13.506769472094053,0.0 80.09771883487701,13.507645767008306,0.0 80.09711802005768,13.508777643174259,0.0 80.09637236595154,13.51011815315972,0.0 80.09556770324707,13.511630781837598,0.0 80.09497225284576,13.512595729601642,0.0 80.09458065032959,13.513472003106587,0.0 80.09406566619873,13.514410864002087,0.0 80.0935560464859,13.515261051511716,0.0 80.09324491024017,13.51574091060788,0.0 80.09286403656006,13.516173826137482,0.0 80.09247243404388,13.516638035892026,0.0 80.09179651737213,13.517206561213676,0.0 80.0899189710617,13.518510513251131,0.0 80.08899629116058,13.519152055034974,0.0 80.0881165266037,13.519767516261293,0.0 80.08731186389923,13.520294308082244,0.0 80.08679151535034,13.520675057881231,0.0 80.08541822433472,13.521613890402316,0.0 80.08482277393341,13.522052010979499,0.0 80.08443117141724,13.522338875206673,0.0 80.08404493331909,13.522589229159035,0.0 80.08370161056519,13.522855229945161,0.0 80.08317589759827,13.523173387358113,0.0 80.08239805698395,13.523700171648631,0.0 80.08133590221405,13.524393856115605,0.0 80.08008062839508,13.52525443930087,0.0 80.07926523685455,13.525828159697014,0.0 80.07829964160919,13.526537484821727,0.0 80.0777417421341,13.527179004990227,0.0 80.07719457149506,13.527930050796568,0.0 80.07685124874115,13.528435962261558,0.0 80.0766795873642,13.528811483478716,0.0 80.07636308670044,13.529484290845142,0.0 80.07596611976624,13.530527399282644,0.0 80.07561206817627,13.53151834806541,0.0 80.07539212703705,13.532097268866671,0.0 80.07514536380768,13.532712696643173,0.0 80.07488787174225,13.533369846580236,0.0 80.0746089220047,13.53407393378538,0.0 80.07420659065247,13.535111806682638,0.0 80.07373452186584,13.536353075862888,0.0 80.07305324077606,13.538079368035426,0.0 80.07264018058777,13.539080716064175,0.0 80.0724470615387,13.539555311835022,0.0 80.07228076457977,13.54006641391416,0.0 80.07174968719482,13.54129722666023,0.0 80.07089138031006,13.542840948898991,0.0 80.07036566734314,13.54358151479557,0.0 80.06943762302399,13.544859246308743,0.0 80.06865978240967,13.545730185895822,0.0 80.06749033927917,13.547289524853507,0.0 80.06650865077972,13.548582881849713,0.0 80.06605267524719,13.549151330884577,0.0 80.06491005420685,13.55065328142779,0.0 80.06366550922394,13.55228559886178,0.0 80.06235659122467,13.553990915326589,0.0 80.06089210510254,13.55597261327805,0.0 80.05926132202148,13.558136817161445,0.0 80.05815088748932,13.5596387109199,0.0 80.0570297241211,13.561109306024733,0.0 80.05632162094116,13.562068838348063,0.0 80.0554096698761,13.563268248301151,0.0 80.05426704883575,13.564790968732446,0.0 80.05282938480377,13.5666943555408,0.0 80.0512146949768,13.568853247041382,0.0 80.04978239536285,13.57075660128256,0.0 80.04844129085541,13.572534789673997,0.0 80.04716992378235,13.574219102462026,0.0 80.04581809043884,13.575992050376232,0.0 80.0442785024643,13.57803092409962,0.0 80.0429105758667,13.579855988017119,0.0 80.04192352294922,13.581164810923271,0.0 80.0413066148758,13.581993902174908,0.0 80.0401908159256,13.58346435877512,0.0 80.03857612609863,13.585612669046697,0.0 80.03633916378021,13.588579599527025,0.0 80.03521800041199,13.590076086401004,0.0 80.03365159034729,13.592151338275476,0.0 80.03273963928223,13.593444450856474,0.0 80.03211736679077,13.594414280661196,0.0 80.03128051757812,13.596082795766433,0.0 80.03099083900452,13.59679191112779,0.0 80.03055095672607,13.598220563571177,0.0 80.02971410751343,13.601766087149162,0.0 80.02870559692383,13.606093639573748,0.0 80.02771854400635,13.610275127125268,0.0 80.02675294876099,13.61446696816538,0.0 80.02631306648254,13.616208333030638,0.0 80.0257658958435,13.61853360864044,0.0 80.02471446990967,13.623048540379774,0.0 80.0239098072052,13.62653113090087,0.0 80.02311587333679,13.62994068328576,0.0 80.02226829528809,13.633527437587361,0.0 80.02159237861633,13.636405142943376,0.0 80.02066969871521,13.640304586280292,0.0 80.01972556114197,13.644412486339704,0.0 80.01866340637207,13.648801813230792,0.0 80.01797676086426,13.651814866851387,0.0 80.0169038772583,13.656704480959126,0.0 80.01588463783264,13.661031027232973,0.0 80.01514434814453,13.664189877132111,0.0 80.0149941444397,13.66485708753685,0.0 80.01495122909546,13.66536791922622,0.0 80.01492977142334,13.666045551391111,0.0 80.01496195793152,13.666806582114704,0.0 80.01509070396423,13.667609310488267,0.0 80.0152838230133,13.668266086214269,0.0 80.01554131507874,13.668943710044363,0.0 80.01580953598022,13.669569207234577,0.0 80.01820206642151,13.67386424308127,0.0 80.01894235610962,13.67511520966706,0.0 80.01989722251892,13.676866551722464,0.0 80.02040147781372,13.677929860186312,0.0 80.02061605453491,13.678565758051318,0.0 80.02079844474792,13.679368446346432,0.0 80.02090573310852,13.680223254248725,0.0 80.02091646194458,13.681036361323825,0.0 80.02084136009216,13.681682675200333,0.0 80.02022981643677,13.685456278850346,0.0 80.0199294090271,13.687238816435672,0.0 80.01928567886353,13.691126994832556,0.0 80.0185775756836,13.695505027618346,0.0 80.01843810081482,13.696391048145333,0.0 80.01838445663452,13.696688124868661,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<styleUrl>#line-000000-2</styleUrl>
<name>Beach - Central Line
</name>
<LineString>
<tessellate>0</tessellate>
<coordinates>80.2921199798584,13.091861807254858,0.0 80.29239356517792,13.092812753032515,0.0 80.29268324375153,13.093716670616073,0.0 80.2928763628006,13.094348888457612,0.0 80.29285490512848,13.094442937254065,0.0 80.29320895671844,13.095681243058365,0.0 80.29356837272644,13.096882968476978,0.0 80.29391705989838,13.098032439477308,0.0 80.2944266796112,13.09961034093051,0.0 80.29480218887329,13.100812047174767,0.0 80.29496312141418,13.10140244852861,0.0 80.29499530792236,13.101621889378846,0.0 80.29500603675842,13.101951050287436,0.0 80.294930934906,13.102311559349001,0.0 80.29488801956177,13.102489201301116,0.0 80.29479682445526,13.102734764964998,0.0 80.29466807842255,13.102996002636376,0.0 80.29448568820953,13.103215442066086,0.0 80.29430329799652,13.103434881300167,0.0 80.29411554336548,13.103690893492677,0.0 80.2939385175705,13.103863309717168,0.0 80.29377222061157,13.103952130149318,0.0 80.29352009296417,13.10417156872664,0.0 80.29265105724335,13.104819433861064,0.0 80.292227268219,13.105049321079477,0.0 80.29199123382568,13.10520606224166,0.0 80.29142260551453,13.105456847893496,0.0 80.28953969478607,13.106183079902067,0.0 80.28701841831207,13.107154869021318,0.0 80.28457224369049,13.108126654302836,0.0 80.28357446193695,13.108419234066007,0.0 80.28287172317505,13.10861254550437,0.0 80.28074204921722,13.109197703527212,0.0 80.2799642086029,13.109406688198096,0.0 80.279261469841,13.10959477425012,0.0 80.27889668941498,13.109610448081298,0.0 80.27746438980103,13.10979330937125,0.0 80.27698695659637,13.109835106218448,0.0 80.27651488780975,13.109829881612937,0.0 80.27608036994934,13.109777635551726,0.0 80.27577996253967,13.109714940263627,0.0 80.27551710605621,13.109641795740652,0.0 80.2752274274826,13.109537303527254,0.0 80.27484655380249,13.109354442047016,0.0 80.27450859546661,13.10916113119156,0.0 80.274218916893,13.108978269431736,0.0 80.27399897575378,13.108826755299209,0.0 80.27369320392609,13.108560299184656,0.0 80.27343034744263,13.108319965971065,0.0 80.27330696582794,13.108189349995667,0.0 80.27303338050842,13.107870646724688,0.0 80.27284562587738,13.107598964921861,0.0 80.27269005775452,13.107322058160305,0.0 80.27259886264801,13.107254137586285,0.0 80.27240037918091,13.106830939741313,0.0 80.27219653129578,13.106407741168528,0.0 80.27205169200897,13.106005440615945,0.0 80.27187466621399,13.105535218357282,0.0 80.27174592018127,13.105080669319893,0.0 80.27162253856659,13.104647018306347,0.0 80.27153134346008,13.104244714875604,0.0 80.27147769927979,13.10394168068838,0.0 80.27147233486176,13.10347667922734,0.0 80.27145087718964,13.103063924385522,0.0 80.27135968208313,13.102813136295524,0.0 80.27147769927979,13.102719090695896,0.0 80.27152061462402,13.102128692499694,0.0 80.27154207229614,13.101475595500423,0.0 80.27153134346008,13.100869519935134,0.0 80.27150988578796,13.100388838253474,0.0 80.27148842811584,13.099976078234437,0.0 80.27153134346008,13.098873639854776,0.0 80.27156352996826,13.098168285695557,0.0 80.2716064453125,13.097055389469068,0.0 80.27175664901733,13.096031311502959,0.0 80.27207851409912,13.095132627330887,0.0 80.27248620986938,13.094296639110736,0.0 80.27293682098389,13.093502447673597,0.0 80.27332842350006,13.092629879129577,0.0 80.27358055114746,13.091914057118155,0.0 80.2736234664917,13.091287058027184,0.0 80.2735161781311,13.089641177822031,0.0 80.27348935604095,13.08938515102426,0.0 80.27347326278687,13.088277440181102,0.0 80.27377903461456,13.086427760976937,0.0 80.27409553527832,13.084468339899882,0.0 80.27422964572906,13.083663666466206,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<styleUrl>#line-000000-1</styleUrl>
<name>Beach - Tiruttani Line
</name>
<LineString>
<tessellate>0</tessellate>
<coordinates>80.2921199798584,13.091861807254858,0.0 80.29229868203402,13.09248619239634,0.0 80.29238870367408,13.092797078131868,0.0 80.29248811304569,13.093106657234989,0.0 80.2926842495799,13.093727120510929,0.0 80.2928763628006,13.094348888457612,0.0 80.29285490512848,13.094442937254065,0.0 80.29320895671844,13.095681243058365,0.0 80.29356837272644,13.096882968476978,0.0 80.29395461082458,13.098147386282246,0.0 80.29431402683258,13.099260277573622,0.0 80.29459029436111,13.100135435032655,0.0 80.29480218887329,13.100812047174767,0.0 80.29496312141418,13.10140244852861,0.0 80.29499530792236,13.101621889378846,0.0 80.29500603675842,13.101951050287436,0.0 80.29488801956177,13.102489201301116,0.0 80.29479682445526,13.102734764964998,0.0 80.29466807842255,13.102996002636376,0.0 80.29430329799652,13.103434881300167,0.0 80.29411554336548,13.103690893492677,0.0 80.2939385175705,13.103863309717168,0.0 80.29377222061157,13.103952130149318,0.0 80.29352009296417,13.10417156872664,0.0 80.29265105724335,13.104819433861064,0.0 80.292227268219,13.105049321079477,0.0 80.29199123382568,13.10520606224166,0.0 80.29155671596527,13.105399376204186,0.0 80.29144138097763,13.105451623195023,0.0 80.29086470603943,13.105673672782325,0.0 80.28931707143784,13.106266674815874,0.0 80.28731346130371,13.107039926422383,0.0 80.28563439846039,13.107706070283795,0.0 80.28457224369049,13.108126654302836,0.0 80.28287172317505,13.10861254550437,0.0 80.28186589479446,13.108889450813635,0.0 80.28135627508163,13.109030515662699,0.0 80.28058916330338,13.109242112784623,0.0 80.28019219636917,13.109346605123397,0.0 80.2798381447792,13.10944064819035,0.0 80.279261469841,13.10959477425012,0.0 80.2789181470871,13.1096835926136,0.0 80.27842462062836,13.10979592167442,0.0 80.27763605117798,13.109889964569621,0.0 80.275838971138,13.110075437952014,0.0 80.27416259050369,13.110247849703207,0.0 80.27277857065201,13.110422873630053,0.0 80.27198731899261,13.110485568737738,0.0 80.27133285999298,13.110506467103425,0.0 80.27036726474762,13.110454221185899,0.0 80.2698415517807,13.11042026133355,0.0 80.2684897184372,13.110383689179635,0.0 80.26779770851135,13.11036540310063,0.0 80.26746243238449,13.110354953912035,0.0 80.26681870222092,13.110287034175252,0.0 80.2661320567131,13.110203440627329,0.0 80.26501089334488,13.110051927249303,0.0 80.26380389928818,13.109887352267458,0.0 80.26271492242813,13.109738450998538,0.0 80.2624574303627,13.109701878743264,0.0 80.26123702526093,13.109516405079255,0.0 80.26082396507263,13.109448485110978,0.0 80.26027411222458,13.109377952816377,0.0 80.25992810726166,13.109336155891523,0.0 80.25925353169441,13.109257786638269,0.0 80.25793254375458,13.10910888498833,0.0 80.25689721107483,13.108988718678814,0.0 80.25508940219879,13.108748385883707,0.0 80.25274246931076,13.108434907972068,0.0 80.25201827287674,13.1083382522021,0.0 80.2514898777008,13.10827033190858,0.0 80.25088638067245,13.108191962315846,0.0 80.25053232908249,13.108150165189523,0.0 80.24981081485748,13.108074407879947,0.0 80.24879693984985,13.107962078033172,0.0 80.2482283115387,13.107901994605713,0.0 80.24783134460449,13.107860197430117,0.0 80.24672359228134,13.107783133869024,0.0 80.24537846446037,13.107693008656781,0.0 80.24462342262268,13.107640762141807,0.0 80.24377584457397,13.107619863532731,0.0 80.24276733398438,13.107596352595372,0.0 80.24199217557907,13.107575453982506,0.0 80.24165153503418,13.107567617002237,0.0 80.24111777544022,13.107570229329019,0.0 80.24012133479118,13.107572841655774,0.0 80.23903369903564,13.107575453982506,0.0 80.23845434188843,13.10757806630921,0.0 80.2374418079853,13.107622475858953,0.0 80.23642525076866,13.107668191563564,0.0 80.23563265800476,13.10770215179576,0.0 80.23507609963417,13.107726968885554,0.0 80.23391604423523,13.107777909219937,0.0 80.23278817534447,13.107827543381756,0.0 80.23262456059456,13.107834074191777,0.0 80.23249849677086,13.10784060500162,0.0 80.23211359977722,13.107870646724688,0.0 80.23143500089645,13.107921587029326,0.0 80.23082613945007,13.107967302678352,0.0 80.22981494665146,13.108044366181776,0.0 80.22890031337738,13.108113592698151,0.0 80.2286696434021,13.108131878944517,0.0 80.22782474756241,13.108218085516198,0.0 80.2268873155117,13.10830951669559,0.0 80.22616177797318,13.108397029364035,0.0 80.22552609443665,13.108476705050034,0.0 80.22456988692284,13.10857989155584,0.0 80.22320330142975,13.108730099683166,0.0 80.22230744361877,13.108829367612632,0.0 80.2212318778038,13.108949533999969,0.0 80.2195018529892,13.109137620401473,0.0 80.21713078022003,13.109398851276145,0.0 80.21556973457336,13.109568651195934,0.0 80.21486431360245,13.10964702035017,0.0 80.21447539329529,13.109699266439115,0.0 80.21386384963989,13.109777635551726,0.0 80.2128553390503,13.109908250683958,0.0 80.21158933639526,13.109908250683958,0.0 80.20969569683075,13.110117234751273,0.0 80.20895004272461,13.110200828328496,0.0 80.20816415548325,13.110323606343544,0.0 80.20728707313538,13.110459445778154,0.0 80.20657896995544,13.110571774484725,0.0 80.20579308271408,13.110694552314651,0.0 80.20512253046036,13.110793819451484,0.0 80.20354002714157,13.11104198711833,0.0 80.20290434360504,13.111125580381314,0.0 80.20142912864685,13.111311052832134,0.0 80.20022481679916,13.111459953149216,0.0 80.19771158695221,13.111765590359758,0.0 80.1970785856247,13.111841346532717,0.0 80.19581526517868,13.111982409689142,0.0 80.19350588321686,13.112248862097216,0.0 80.18999218940735,13.112651152440993,0.0 80.1863819360733,13.113063891200783,0.0 80.18391966819763,13.113346016030476,0.0 80.18114626407623,13.11367516125612,0.0 80.17822265625,13.114025204107985,0.0 80.17436027526855,13.114364797443391,0.0 80.17058372497559,13.114589451238322,0.0 80.16615271568298,13.114589451238322,0.0 80.16396403312683,13.114516308164827,0.0 80.16161978244781,13.114417042530297,0.0 80.15811681747437,13.114255082724767,0.0 80.15490353107452,13.114218511141011,0.0 80.15248417854309,13.114223735653308,0.0 80.1508641242981,13.114234184677581,0.0 80.14906704425812,13.114364797443391,0.0 80.14688909053802,13.11445883859182,0.0 80.14635801315308,13.114484961126673,0.0 80.14452874660492,13.114693941305584,0.0 80.14224886894226,13.114944717285873,0.0 80.13908386230469,13.115268635881925,0.0 80.13749599456787,13.115425370533284,0.0 80.13703465461731,13.115508962306508,0.0 80.13481914997101,13.115723166095684,0.0 80.13157367706299,13.116026185771437,0.0 80.12704610824585,13.116459816726893,0.0 80.12198209762573,13.116977038191798,0.0 80.120410323143,13.117128547303771,0.0 80.11789441108704,13.117389769691387,0.0 80.11671423912048,13.1175099318965,0.0 80.11498689651489,13.117671889558283,0.0 80.11444509029388,13.117734582818091,0.0 80.11256217956543,13.117849520419524,0.0 80.1111352443695,13.117933111368641,0.0 80.10962784290314,13.118011477857625,0.0 80.1084691286087,13.11807939546121,0.0 80.1074606180191,13.118089844321634,0.0 80.10454773902893,13.118121190900249,0.0 80.10373771190643,13.118121190900249,0.0 80.10117888450623,13.118162986332175,0.0 80.0998592376709,13.118204781757004,0.0 80.09797632694244,13.118277923733348,0.0 80.09584128856659,13.118288372585324,0.0 80.09443581104279,13.118314494713358,0.0 80.09243488311768,13.11836151453681,0.0 80.08897483348846,13.118424207620745,0.0 80.08546113967896,13.11847645184516,0.0 80.08256435394287,13.118497349531811,0.0 80.08006453514099,13.118586164680284,0.0 80.07827818393707,13.118648857706944,0.0 80.07676541805267,13.118695877466454,0.0 80.07487177848816,13.118716775134454,0.0 80.0735467672348,13.118742897216956,0.0 80.07135808467865,13.1187846925432,0.0 80.07022082805634,13.118805590203655,0.0 80.068718791008,13.118857834347017,0.0 80.06676077842712,13.11893097612908,0.0 80.06469011306763,13.119009342299995,0.0 80.06155729293823,13.119061586400063,0.0 80.05866587162018,13.119343704348575,0.0 80.0567078590393,13.119542231599741,0.0 80.05545258522034,13.119709412318489,0.0 80.0542402267456,13.119876592923537,0.0 80.052330493927,13.12021095379255,0.0 80.051971077919,13.120284095172007,0.0 80.04971265792847,13.120733391739895,0.0 80.04506707191467,13.121443905566375,0.0 80.04070580005646,13.122269352873943,0.0 80.03868341445923,13.122655953824253,0.0 80.03685414791107,13.122911946010744,0.0 80.03551840782166,13.123094797409287,0.0 80.03445088863373,13.123241078430164,0.0 80.0337266921997,13.123345564820335,0.0 80.03065824508667,13.12361722922689,0.0 80.02937078475952,13.123695593903744,0.0 80.02763271331787,13.123805304409354,0.0 80.02624869346619,13.123847098874812,0.0 80.02445161342621,13.123904566253184,0.0 80.0221449136734,13.123904566253184,0.0 80.01936078071594,13.123904566253184,0.0 80.01687705516815,13.12389411763994,0.0 80.0122207403183,13.123883669026238,0.0 80.01069188117981,13.123873220412102,0.0 80.00847101211548,13.123873220412102,0.0 80.0063306093216,13.123852323182485,0.0 80.00467300415039,13.123841874567013,0.0 80.0012880563736,13.123800080100677,0.0 79.99836444854736,13.12376350993681,0.0 79.99698579311371,13.123773958555601,0.0 79.99523162841797,13.123784407173973,0.0 79.99239385128021,13.12392023917223,0.0 79.98754441738129,13.124087416913177,0.0 79.98558104038239,13.124139659933904,0.0 79.9848461151123,13.124160557139083,0.0 79.98341381549835,13.124207575844238,0.0 79.97961044311523,13.12439042627878,0.0 79.97765779495239,13.124500136474197,0.0 79.97570514678955,13.124578500869498,0.0 79.97118294239044,13.124745678162634,0.0 79.96832370758057,13.12485016391308,0.0 79.96574878692627,13.125038238151953,0.0 79.96315240859985,13.125038238151953,0.0 79.95977282524109,13.125132275217402,0.0 79.95782017707825,13.125184518015974,0.0 79.95728373527527,13.125194966574373,0.0 79.95499849319458,13.125142723778001,0.0 79.95105028152466,13.124944201050512,0.0 79.9499237537384,13.12486061248569,0.0 79.94726300239563,13.124641192367761,0.0 79.94525671005249,13.124411323462637,0.0 79.94169473648071,13.123993379447894,0.0 79.93832588195801,13.123533640210708,0.0 79.9369740486145,13.123136591995568,0.0 79.9319314956665,13.121966340893197,0.0 79.92813348770142,13.120837879196138,0.0 79.92246866226196,13.119051137580934,0.0 79.91663217544556,13.117180791803495,0.0 79.91349935531616,13.116209042291677,0.0 79.90549564361572,13.113638589586133,0.0 79.89491701126099,13.110253074299838,0.0 79.88396286964417,13.106752569690146,0.0 79.88275051116943,13.106397291811847,0.0 79.88008975982666,13.105237410462102,0.0 79.87077713012695,13.102342907938096,0.0 79.86913561820984,13.101830880482924,0.0 79.86783742904663,13.101433797233476,0.0 79.86616373062134,13.10090086870786,0.0 79.86492991447449,13.100556031988324,0.0 79.86285924911499,13.099960403789705,0.0 79.86142158508301,13.09951106928285,0.0 79.86077785491943,13.09928117689247,0.0 79.86039161682129,13.099113982291938,0.0 79.85739827156067,13.098142161428639,0.0 79.85279560089111,13.09663739897683,0.0 79.84565019607544,13.095383423243637,0.0 79.8415732383728,13.09465193445098,0.0 79.83882665634155,13.094401137793406,0.0 79.83794689178467,13.094819132080824,0.0 79.83665943145752,13.094683284015218,0.0 79.83522176742554,13.09458923531053,0.0 79.8331618309021,13.094401137793406,0.0 79.83146667480469,13.094024942328286,0.0 79.82511520385742,13.093690545876957,0.0 79.81666088104248,13.094066741852773,0.0 79.81475114822388,13.094505636431766,0.0 79.81312036514282,13.0947982323833,0.0 79.81067419052124,13.09540432289152,0.0 79.8070478439331,13.095864114695972,0.0 79.80129718780518,13.096167158825077,0.0 79.7985291481018,13.096303006072239,0.0 79.78840112686157,13.095278924977695,0.0 79.78503227233887,13.094233939879844,0.0 79.78089094161987,13.093314349326617,0.0 79.77602005004883,13.092123056460556,0.0 79.77569818496704,13.092143956385046,0.0 79.77481842041016,13.091914057118155,0.0 79.77389574050903,13.091725957558404,0.0 79.77006554603577,13.091172108020762,0.0 79.76621389389038,13.090660057340632,0.0 79.76339221000671,13.090304756243329,0.0 79.75468039512634,13.089291100297057,0.0 79.74568963050842,13.088246089801777,0.0 79.73696708679199,13.087180174531508,0.0 79.72912430763245,13.086281458074593,0.0 79.72660303115845,13.086072453777753,0.0 79.72126007080078,13.08567534512551,0.0 79.7189211845398,13.085518591534038,0.0 79.70912575721741,13.084902026440442,0.0 79.70192670822144,13.084452664468465,0.0 79.69921231269836,13.084285459804683,0.0 79.69811797142029,13.084222758026524,0.0 79.69531774520874,13.08395105013689,0.0 79.6913480758667,13.0835748387184,0.0 79.68801140785217,13.08326132876444,0.0 79.68602657318115,13.083083672946902,0.0 79.67885971069336,13.08242530027152,0.0 79.6748685836792,13.082059536914421,0.0 79.66874241828918,13.081568368124248,0.0 79.66761589050293,13.081484764828483,0.0 79.66511607170105,13.081317558151895,0.0 79.66154336929321,13.081045847060626,0.0 79.65959072113037,13.080899540964381,0.0 79.65315341949463,13.080147108241142,0.0 79.65252041816711,13.080136657770492,0.0 79.65203762054443,13.080136657770492,0.0 79.65128660202026,13.080188910119329,0.0 79.65017080307007,13.080690532104896,0.0 79.64922666549683,13.081463864000106,0.0 79.64871168136597,13.082174491170841,0.0 79.64834690093994,13.08313592467123,0.0 79.64826107025146,13.084201857430262,0.0 79.64836835861206,13.085309586590336,0.0 79.64863657951355,13.08609335421542,0.0 79.64940905570984,13.08793258578907,0.0 79.65107202529907,13.091851357280857,0.0 79.65296030044556,13.096271656714162,0.0 79.6542477607727,13.09929162655124,0.0 79.65448379516602,13.10002310156267,0.0 79.6545159816742,13.100482884743302,0.0 79.65450525283813,13.101318851962786,0.0 79.6543550491333,13.101904027327436,0.0 79.65411901473999,13.102489201301116,0.0 79.65338945388794,13.103920781765167,0.0 79.65248823165894,13.105738981446343,0.0 79.65061068534851,13.109448485110978,0.0 79.64893698692322,13.112677275167837,0.0 79.64708089828491,13.116365776343667,0.0 79.64635133743286,13.117797276061895,0.0 79.64409828186035,13.122196212085205,0.0 79.6437120437622,13.123241078430164,0.0 79.64198470115662,13.126584620880369,0.0 79.64072942733765,13.12905045428629,0.0 79.63992476463318,13.130586363431627,0.0 79.63815450668335,13.134086528660193,0.0 79.6354615688324,13.139289667143643,0.0 79.63510751724243,13.139979231437275,0.0 79.63468909263611,13.141097157312037,0.0 79.6343994140625,13.14178671652729,0.0 79.63386297225952,13.143238963688553,0.0 79.6329402923584,13.146415071408981,0.0 79.63233947753906,13.149350844934078,0.0 79.63168501853943,13.151743317654926,0.0 79.63122367858887,13.153394005749025,0.0 79.62916374206543,13.157238603285286,0.0 79.62775826454163,13.15931758607116,0.0 79.62617039680481,13.161699514518276,0.0 79.62523698806763,13.163068068195967,0.0 79.62432503700256,13.164248570188812,0.0 79.62132096290588,13.16803031702851,0.0 79.61820960044861,13.172000043702935,0.0 79.61756587028503,13.172814874374547,0.0 79.61591362953186,13.174935510715308,0.0 79.6134889125824,13.177808264631453,0.0 79.61212635040283,13.17940654584603,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<styleUrl>#line-000000-2</styleUrl>
<name>Beach - Sullurupetta Line
</name>
<LineString>
<tessellate>0</tessellate>
<coordinates>80.2921199798584,13.091861807254858,0.0 80.29223531484604,13.092266743405602,0.0 80.29239021241665,13.092802303098857,0.0 80.29250890016556,13.09317392859201,0.0 80.2926430106163,13.093592578080626,0.0 80.29272079467773,13.093843375561429,0.0 80.29282070696354,13.094169934398515,0.0 80.2928763628006,13.094348888457612,0.0 80.29285490512848,13.094442937254065,0.0 80.29310703277588,13.095336399029444,0.0 80.29353618621826,13.09677847084726,0.0 80.29391705989838,13.098032439477308,0.0 80.29455006122589,13.099991752678191,0.0 80.29480218887329,13.100812047174767,0.0 80.29496312141418,13.10140244852861,0.0 80.29499530792236,13.101621889378846,0.0 80.29500603675842,13.101951050287436,0.0 80.29488801956177,13.102489201301116,0.0 80.29479682445526,13.102734764964998,0.0 80.29466807842255,13.102996002636376,0.0 80.29448568820953,13.103215442066086,0.0 80.29430329799652,13.103434881300167,0.0 80.29411554336548,13.103690893492677,0.0 80.2939385175705,13.103863309717168,0.0 80.29377222061157,13.103952130149318,0.0 80.29351070523262,13.104178752724376,0.0 80.29322370886803,13.104392313288567,0.0 80.29265105724335,13.104819433861064,0.0 80.292227268219,13.105049321079477,0.0 80.29199123382568,13.10520606224166,0.0 80.29149770736694,13.105430724400025,0.0 80.29008686542511,13.105974092493325,0.0 80.28690040111542,13.107196666316721,0.0 80.28457224369049,13.108126654302836,0.0 80.28389096260071,13.108330415246106,0.0 80.28287172317505,13.10861254550437,0.0 80.28047382831573,13.109265623564722,0.0 80.27995884418488,13.10945893433808,0.0 80.27951896190643,13.10964702035017,0.0 80.27915418148041,13.109850780034321,0.0 80.27877867221832,13.110075437952014,0.0 80.2784675359726,13.110315769450791,0.0 80.27834951877594,13.11041503674048,0.0 80.2782529592514,13.110462058074225,0.0 80.27788281440735,13.110843453004875,0.0 80.27762532234192,13.111141254114964,0.0 80.27737855911255,13.111480851432107,0.0 80.27714788913727,13.111872693907793,0.0 80.27691185474396,13.112327230397602,0.0 80.27680993080139,13.112546661505862,0.0 80.27675092220306,13.112713846980759,0.0 80.27663826942444,13.113074340274318,0.0 80.27656853199005,13.113440057568473,0.0 80.27647733688354,13.113837121443545,0.0 80.2764344215393,13.114239409189535,0.0 80.2764344215393,13.114599900247049,0.0 80.2764344215393,13.114824553827228,0.0 80.27646124362946,13.115028309222465,0.0 80.2765041589737,13.115399248098326,0.0 80.27655243873596,13.115681370249026,0.0 80.27667045593262,13.116146348642914,0.0 80.27682065963745,13.116700141987318,0.0 80.27721226215363,13.117609196282508,0.0 80.27756631374359,13.118356290112423,0.0 80.27782380580902,13.118894405240757,0.0 80.27832269668579,13.12002287585968,0.0 80.27857214212418,13.120585803132304,0.0 80.27934730052948,13.12228502589726,0.0 80.28044700622559,13.124672538110882,0.0 80.2811336517334,13.126145783527555,0.0 80.28140187263489,13.126720451330726,0.0 80.2818363904953,13.12771828041394,0.0 80.28213143348694,13.128350410877577,0.0 80.2822870016098,13.128663863396774,0.0 80.28235673904419,13.12886238311874,0.0 80.28332769870758,13.130910261412927,0.0 80.2845561504364,13.133590239610822,0.0 80.28523206710815,13.135068655611793,0.0 80.28582215309143,13.136348549200902,0.0 80.2864283323288,13.137717244350021,0.0 80.28678774833679,13.138506069003908,0.0 80.28710424900055,13.139195635498954,0.0 80.2876889705658,13.140527747105583,0.0 80.2886974811554,13.142789708290616,0.0 80.28923392295837,13.143771800419774,0.0 80.28941631317139,13.144111352635061,0.0 80.28955578804016,13.144325531483027,0.0 80.2904462814331,13.146237461207363,0.0 80.29166400432587,13.148901600728717,0.0 80.29220044612885,13.150118737193624,0.0 80.29238283634186,13.150604545340583,0.0 80.29263496398926,13.15117915588494,0.0 80.29274761676788,13.151424670888805,0.0 80.29312312602997,13.152286583317776,0.0 80.29346644878387,13.153054466384337,0.0 80.2942442893982,13.154793947701778,0.0 80.29517233371735,13.156899069245545,0.0 80.29569268226624,13.158016918001525,0.0 80.2959018945694,13.158487039787154,0.0 80.29623985290527,13.15921311499522,0.0 80.29701232910156,13.160848082227965,0.0 80.2979028224945,13.162822564854626,0.0 80.29833734035492,13.16379412982959,0.0 80.29875576496124,13.16469778626709,0.0 80.29969453811646,13.166708801634602,0.0 80.30004858970642,13.167481862888744,0.0 80.30066013336182,13.168839937561374,0.0 80.30103027820587,13.169691342072888,0.0 80.3014862537384,13.170657656490109,0.0 80.30224800109863,13.172308217160449,0.0 80.30326187610626,13.174512429562634,0.0 80.30434548854828,13.176899433402745,0.0 80.30535399913788,13.179150612628066,0.0 80.30589044094086,13.18032842552451,0.0 80.30693113803864,13.182603076953336,0.0 80.30785918235779,13.184634837268371,0.0 80.30882477760315,13.186713587422966,0.0 80.30977427959442,13.188781874059067,0.0 80.31164646148682,13.192871389315284,0.0 80.31273007392883,13.195252991195323,0.0 80.31320214271545,13.196318437153781,0.0 80.3135696053505,13.197075736603658,0.0 80.31414359807968,13.198342249403897,0.0 80.31503140926361,13.200329486152066,0.0 80.31540155410767,13.201196449024694,0.0 80.3155517578125,13.201520253645684,0.0 80.31577706336975,13.201990291847824,0.0 80.31633496284485,13.203139270311475,0.0 80.3169572353363,13.204546761562703,0.0 80.31745076179504,13.205656558777191,0.0 80.31886696815491,13.208716961666054,0.0 80.31961798667908,13.210315040759651,0.0 80.32026171684265,13.211662432649975,0.0 80.32094836235046,13.213218713249852,0.0 80.32145261764526,13.214482531132395,0.0 80.32159209251404,13.214816762866374,0.0 80.3217101097107,13.21533899903415,0.0 80.32179594039917,13.215798565937154,0.0 80.32182812690735,13.216205908604753,0.0 80.32181739807129,13.216602805934418,0.0 80.32181203365326,13.21700492493884,0.0 80.32180666923523,13.21735482015666,0.0 80.32175838947296,13.217709937178023,0.0 80.3216403722763,13.218336613013433,0.0 80.32147407531738,13.219067732786572,0.0 80.32137751579285,13.219443736388014,0.0 80.32121121883392,13.220002518447167,0.0 80.32101273536682,13.220472521057056,0.0 80.32053530216217,13.221308079015994,0.0 80.317622423172,13.225303050938486,0.0 80.31423211097717,13.229888049142732,0.0 80.31082034111023,13.234535624436415,0.0 80.30892133712769,13.237146582898326,0.0 80.30707597732544,13.239632189349194,0.0 80.30555248260498,13.241679140318402,0.0 80.30478000640869,13.242660835188062,0.0 80.30381441116333,13.243872282975065,0.0 80.30316531658173,13.244707760695059,0.0 80.30235528945923,13.245752103812668,0.0 80.30076742172241,13.24794520977438,0.0 80.2995228767395,13.249626577627811,0.0 80.29893279075623,13.250462035594705,0.0 80.29831051826477,13.251339263372577,0.0 80.29738783836365,13.252571554194443,0.0 80.29617547988892,13.25417978875933,0.0 80.29369711875916,13.257615526978878,0.0 80.292409658432,13.259218506776074,0.0 80.2915620803833,13.259954725226361,0.0 80.2904462814331,13.260502971560326,0.0 80.2890408039093,13.261338392168156,0.0 80.27753412723541,13.267656167554884,0.0 80.27591943740845,13.268825721180162,0.0 80.27465343475342,13.26981252767254,0.0 80.2714991569519,13.27242310753023,0.0 80.2649974822998,13.277654625108111,0.0 80.25992274284363,13.281847067315779,0.0 80.25614082813263,13.284927395891152,0.0 80.25126457214355,13.288837790585509,0.0 80.24808347225189,13.291526476670358,0.0 80.2468952536583,13.292429659677344,0.0 80.2447897195816,13.294157705651513,0.0 80.24263322353363,13.295937945574533,0.0 80.24204850196838,13.296397360207044,0.0 80.24143695831299,13.296888097602874,0.0 80.2398544549942,13.298104495588506,0.0 80.23804664611816,13.299362651890211,0.0 80.23282706737518,13.303053554063743,0.0 80.23087441921234,13.304363889121834,0.0 80.22648096084595,13.307464813181419,0.0 80.2226185798645,13.310195055207656,0.0 80.22111654281616,13.31132786169865,0.0 80.21480798721313,13.3158381538809,0.0 80.20654678344727,13.321684703860177,0.0 80.20590841770172,13.322248470855708,0.0 80.2053290605545,13.322791356350647,0.0 80.20423471927643,13.323971084091792,0.0 80.2033656835556,13.32512992609498,0.0 80.20266830921173,13.326293982518196,0.0 80.20182609558105,13.327802549548448,0.0 80.19909024238586,13.332542207569778,0.0 80.19763648509979,13.33502683698931,0.0 80.19639730453491,13.3365092507812,0.0 80.1958554983139,13.33697902790256,0.0 80.194251537323,13.338096049835132,0.0 80.19109725952148,13.340309199536167,0.0 80.18749237060547,13.342793749103803,0.0 80.18575966358185,13.343973379238152,0.0 80.1827073097229,13.346113401501832,0.0 80.18016993999481,13.3478723812126,0.0 80.17907559871674,13.348712720112532,0.0 80.17814218997955,13.349297301970235,0.0 80.17709076404572,13.349907979720747,0.0 80.17562627792358,13.35062304486711,0.0 80.16292333602905,13.356447876205772,0.0 80.14732360839844,13.363530389407087,0.0 80.14549970626831,13.364334139741647,0.0 80.14448046684265,13.364903026346525,0.0 80.14392793178558,13.36527358478941,0.0 80.1432466506958,13.36588422210792,0.0 80.14267802238464,13.366541829798557,0.0 80.14215230941772,13.367288160163609,0.0 80.14149248600006,13.368545956460455,0.0 80.14132618904114,13.3689269474049,0.0 80.14110088348389,13.369725460718614,0.0 80.14090776443481,13.37039349596867,0.0 80.14065027236938,13.37162518110751,0.0 80.13957738876343,13.376029969673242,0.0 80.13738870620728,13.384964554106356,0.0 80.1372492313385,13.385705608723315,0.0 80.13701856136322,13.386467535740067,0.0 80.1351410150528,13.394232791353643,0.0 80.13485133647919,13.395172119802526,0.0 80.13460993766785,13.395688748886235,0.0 80.13353705406189,13.397389964087827,0.0 80.13152003288269,13.399388615656525,0.0 80.1308012008667,13.400014821608364,0.0 80.12751817703247,13.403104080439817,0.0 80.12707829475403,13.403537199705067,0.0 80.12647747993469,13.40422079599405,0.0 80.12569427490234,13.405567109719273,0.0 80.12347340583801,13.409611223821466,0.0 80.12301206588745,13.410378293270359,0.0 80.12189090251923,13.41235596443245,0.0 80.12142419815063,13.413363057212385,0.0 80.12108623981476,13.414349273511927,0.0 80.12099504470825,13.414829335007536,0.0 80.1208233833313,13.416253859668013,0.0 80.12064635753632,13.418601958799881,0.0 80.119868516922,13.427174934669146,0.0 80.11904239654541,13.43501713922889,0.0 80.11829137802124,13.443177351325263,0.0 80.11755108833313,13.450132095433055,0.0 80.11757254600525,13.450439915150968,0.0 80.11750280857086,13.451170333237819,0.0 80.1174008846283,13.452443342294469,0.0 80.11715412139893,13.453904164023006,0.0 80.11691272258759,13.455161507018726,0.0 80.11658549308777,13.456502317794738,0.0 80.11581838130951,13.458771766396394,0.0 80.11476695537567,13.461902005029224,0.0 80.1138710975647,13.464244440160845,0.0 80.11177897453308,13.470697756426038,0.0 80.11030912399292,13.475189412197874,0.0 80.1092791557312,13.47831943602281,0.0 80.10863542556763,13.480322629763823,0.0 80.10762691497803,13.483306522643295,0.0 80.1064145565033,13.486968522071011,0.0 80.10604441165924,13.487975301250176,0.0 80.1056957244873,13.48891947890449,0.0 80.10543823242188,13.48973324228603,0.0 80.10309934616089,13.496869202391835,0.0 80.10259509086609,13.498314104020332,0.0 80.10236442089081,13.498846159456324,0.0 80.0989580154419,13.505048169140204,0.0 80.09819626808167,13.506769472094053,0.0 80.09758472442627,13.507760519675342,0.0 80.0973379611969,13.508355146247537,0.0 80.09556770324707,13.511630781837598,0.0 80.09497225284576,13.512595729601642,0.0 80.09406566619873,13.514410864002087,0.0 80.09324491024017,13.51574091060788,0.0 80.09247243404388,13.516638035892026,0.0 80.09179651737213,13.517206561213676,0.0 80.07829964160919,13.526537484821727,0.0 80.07719457149506,13.527930050796568,0.0 80.07636308670044,13.529484290845142,0.0 80.07488787174225,13.533369846580236,0.0 80.0724470615387,13.539555311835022,0.0 80.07174968719482,13.54129722666023,0.0 80.07089138031006,13.542840948898991,0.0 80.06943762302399,13.544859246308743,0.0 80.06865978240967,13.545730185895822,0.0 80.06389617919922,13.551925759879397,0.0 80.05282938480377,13.5666943555408,0.0 80.0401908159256,13.58346435877512,0.0 80.03633916378021,13.588579599527025,0.0 80.03398418426514,13.591682061803448,0.0 80.0324821472168,13.593767727899115,0.0 80.03128051757812,13.596082795766433,0.0 80.03089427947998,13.59706304291087,0.0 80.03055095672607,13.598220563571177,0.0 80.02964973449707,13.60215192033599,0.0 80.02675294876099,13.61446696816538,0.0 80.02631306648254,13.616208333030638,0.0 80.02377033233643,13.62717759415358,0.0 80.01956462860107,13.645236142976144,0.0 80.01849174499512,13.64948991883214,0.0 80.01763343811035,13.65324318678329,0.0 80.01720428466797,13.655370012113336,0.0 80.01621723175049,13.659540202181235,0.0 80.01514434814453,13.664189877132111,0.0 80.01495122909546,13.66536791922622,0.0 80.01496195793152,13.666806582114704,0.0 80.0152838230133,13.668266086214269,0.0 80.01554131507874,13.668943710044363,0.0 80.01608848571777,13.670048753955692,0.0 80.01810550689697,13.673593199445152,0.0 80.02040147781372,13.677929860186312,0.0 80.02061605453491,13.678565758051318,0.0 80.02079844474792,13.679368446346432,0.0 80.02090573310852,13.680223254248725,0.0 80.02091646194458,13.681036361323825,0.0 80.02050876617432,13.683725849329429,0.0 80.01909255981445,13.69252380462292,0.0 80.01838445663452,13.696688124868661,0.0</coordinates>
</LineString>
</Placemark>
<Placemark>
<styleUrl>#icon-503-4186F0</styleUrl>
<name>Beach MRTS
</name>
<description><![CDATA[0 km]]></description>
<Point>
<coordinates>80.29256522655487,13.09176775747298,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-4186F0</styleUrl>
<name>Fort MRTS
</name>
<description><![CDATA[2 km
]]></description>
<Point>
<coordinates>80.28302192687988,13.083470335444712,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-4186F0</styleUrl>
<name>Park MRTS
</name>
<description><![CDATA[3 km]]></description>
<Point>
<coordinates>80.27688503265381,13.079525304466438,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-4186F0</styleUrl>
<name>Chintadripet</name>
<description><![CDATA[4 km]]></description>
<Point>
<coordinates>80.27384340763092,13.073876746276353,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-4186F0</styleUrl>
<name>Chepauk</name>
<description><![CDATA[5 km]]></description>
<Point>
<coordinates>80.2806293964386,13.062004424517195,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-4186F0</styleUrl>
<name>Thiruvallikeni</name>
<description><![CDATA[6 km]]></description>
<Point>
<coordinates>80.28052747249603,13.055582054802892,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-4186F0</styleUrl>
<name>Light House
</name>
<description><![CDATA[7 km]]></description>
<Point>
<coordinates>80.27683675289154,13.045308006444541,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-4186F0</styleUrl>
<name>Thirumayilai</name>
<description><![CDATA[9 km
]]></description>
<Point>
<coordinates>80.26696622371674,13.034808804954048,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-4186F0</styleUrl>
<name>Mundakanni Amman Kovil
</name>
<description><![CDATA[8 km]]></description>
<Point>
<coordinates>80.27001321315765,13.040719560062128,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-4186F0</styleUrl>
<name>Mandaveli</name>
<description><![CDATA[10 km]]></description>
<Point>
<coordinates>80.26060938835144,13.028187128266207,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-4186F0</styleUrl>
<name>Greenways Rd
</name>
<description><![CDATA[11 km]]></description>
<Point>
<coordinates>80.25216042995453,13.020849246558917,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-4186F0</styleUrl>
<name>Kotturpuram</name>
<description><![CDATA[12 km]]></description>
<Point>
<coordinates>80.24835705757141,13.0137724795673,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-4186F0</styleUrl>
<name>Kasturba Nagar
</name>
<description><![CDATA[13 km]]></description>
<Point>
<coordinates>80.24777233600616,13.005299954420929,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-4186F0</styleUrl>
<name>Indira Nagar
</name>
<description><![CDATA[14 km
]]></description>
<Point>
<coordinates>80.24963915348053,12.996398525923544,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-4186F0</styleUrl>
<name>Thiruvanmiyur</name>
<description><![CDATA[15 km]]></description>
<Point>
<coordinates>80.25133967399597,12.98949878453224,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-4186F0</styleUrl>
<name>Taramani</name>
<description><![CDATA[16 km]]></description>
<Point>
<coordinates>80.24093806743622,12.978631303205383,0.0</coordinates>
</Point>
</Placemark>
<Placemark>
<styleUrl>#icon-503-4186F0</styleUrl>
<name>Perungudi</name>
<description><![CDATA[18 km]]></description>
<Point>
<coordinates>80.23153960704803,12.975395535145045,0.0</coordinates>
</Point>