-
Notifications
You must be signed in to change notification settings - Fork 0
/
stations.kml
1277 lines (1277 loc) · 31.7 KB
/
stations.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>
<Placemark>
<name>BP1 Choa Chu Kang</name>
<Point>
<coordinates>103.74453769781,1.38475541089131</coordinates>
</Point>
</Placemark>
<Placemark>
<name>BP2 South View</name>
<Point>
<coordinates>103.745291799824,1.38029828742399</coordinates>
</Point>
</Placemark>
<Placemark>
<name>BP3 Keat Hong</name>
<Point>
<coordinates>103.749055668925,1.3786032506373</coordinates>
</Point>
</Placemark>
<Placemark>
<name>BP4 Teck Whye</name>
<Point>
<coordinates>103.753712232337,1.37668467920808</coordinates>
</Point>
</Placemark>
<Placemark>
<name>BP5 Phoenix</name>
<Point>
<coordinates>103.757995558346,1.37861545104083</coordinates>
</Point>
</Placemark>
<Placemark>
<name>BP6 Bukit Panjang</name>
<Point>
<coordinates>103.763102931112,1.37792694616982</coordinates>
</Point>
</Placemark>
<Placemark>
<name>BP7 Petir</name>
<Point>
<coordinates>103.766645782497,1.37777204259082</coordinates>
</Point>
</Placemark>
<Placemark>
<name>BP8 Pending</name>
<Point>
<coordinates>103.771261175571,1.37613574334988</coordinates>
</Point>
</Placemark>
<Placemark>
<name>BP9 Bangkit</name>
<Point>
<coordinates>103.772647370452,1.38002223010088</coordinates>
</Point>
</Placemark>
<Placemark>
<name>BP10 Fajar</name>
<Point>
<coordinates>103.770887223018,1.38457317668026</coordinates>
</Point>
</Placemark>
<Placemark>
<name>BP11 Segar</name>
<Point>
<coordinates>103.769599685249,1.38778508663361</coordinates>
</Point>
</Placemark>
<Placemark>
<name>BP12 Jelapang</name>
<Point>
<coordinates>103.76453408646,1.38673926997961</coordinates>
</Point>
</Placemark>
<Placemark>
<name>BP13 Senja</name>
<Point>
<coordinates>103.76234425472,1.38272547134453</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC1 Dhoby Ghaut</name>
<Point>
<coordinates>103.84629250696,1.29891164362677</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC2 Bras Basah</name>
<Point>
<coordinates>103.850667371637,1.29686168649656</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC3 Esplanade</name>
<Point>
<coordinates>103.855081226245,1.2936577245386</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC4 Promenade</name>
<Point>
<coordinates>103.860350000188,1.29399798636232</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC5 Nicoll Highway</name>
<Point>
<coordinates>103.86363696572,1.29976684675139</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC6 Stadium</name>
<Point>
<coordinates>103.875337711089,1.3028124684707</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC7 Mountbatten</name>
<Point>
<coordinates>103.882528081052,1.30620190525331</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC8 Dakota</name>
<Point>
<coordinates>103.889064718377,1.30854798388121</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC9 Paya Lebar</name>
<Point>
<coordinates>103.892260753884,1.3172473854035</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC10 MacPherson</name>
<Point>
<coordinates>103.890391305725,1.32607760171665</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC11 Tai Seng</name>
<Point>
<coordinates>103.888389300191,1.33514150139202</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC12 Bartley</name>
<Point>
<coordinates>103.880177899184,1.34250117805245</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC13 Serangoon</name>
<Point>
<coordinates>103.872771660431,1.35063361526525</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC14 Lorong Chuan</name>
<Point>
<coordinates>103.864151938651,1.35161217074555</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC15 Bishan</name>
<Point>
<coordinates>103.84914026532,1.35131580146658</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC16 Marymount</name>
<Point>
<coordinates>103.839423132332,1.348707263451</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC17 Caldecott</name>
<Point>
<coordinates>103.839529820338,1.33767450815619</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC19 Botanic Gardens</name>
<Point>
<coordinates>103.814984510627,1.32211373558877</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC20 Farrer Road</name>
<Point>
<coordinates>103.807379214161,1.31743915158967</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC21 Holland Village</name>
<Point>
<coordinates>103.796399122407,1.31224029631595</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC22 Buona Vista</name>
<Point>
<coordinates>103.790709404436,1.30663450405</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC23 one-north</name>
<Point>
<coordinates>103.78745750525,1.29975987493555</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC24 Kent Ridge</name>
<Point>
<coordinates>103.784572738173,1.29353349887123</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC25 Haw Par Villa</name>
<Point>
<coordinates>103.781752725064,1.28257135772488</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC26 Pasir Panjang</name>
<Point>
<coordinates>103.791350313288,1.27621352233766</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC27 Labrador Park</name>
<Point>
<coordinates>103.802631578766,1.27225417749656</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC28 Telok Blangah</name>
<Point>
<coordinates>103.809761611219,1.27070647717762</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CC29 HarbourFront</name>
<Point>
<coordinates>103.821530157095,1.26538938374901</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CE1 Bayfront</name>
<Point>
<coordinates>103.859079764874,1.28187378879209</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CE2 Marina Bay</name>
<Point>
<coordinates>103.855447156279,1.27625146423743</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CG1 Expo</name>
<Point>
<coordinates>103.961548211018,1.33454977824817</coordinates>
</Point>
</Placemark>
<Placemark>
<name>CG2 Changi Airport</name>
<Point>
<coordinates>103.98788356959,1.35747897447692</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT1 Bukit Panjang</name>
<Point>
<coordinates>103.761535114929,1.37900211641036</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT2 Cashew</name>
<Point>
<coordinates>103.76443921414,1.36981544925552</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT3 Hillview</name>
<Point>
<coordinates>103.767418254007,1.36234486803558</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT5 Beauty World</name>
<Point>
<coordinates>103.775794285083,1.34122317558549</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT6 King Albert Park</name>
<Point>
<coordinates>103.783399113441,1.33566161262214</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT7 Sixth Avenue</name>
<Point>
<coordinates>103.796906838288,1.33085764536226</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT8 Tan Kah Kee</name>
<Point>
<coordinates>103.807760304729,1.32555623519898</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT9 Botanic Gardens</name>
<Point>
<coordinates>103.816013994259,1.32248807089544</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT10 Stevens</name>
<Point>
<coordinates>103.826024401924,1.32006555750626</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT11 Newton</name>
<Point>
<coordinates>103.837714613091,1.31399286264569</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT12 Little India</name>
<Point>
<coordinates>103.848660935092,1.30701826765224</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT13 Rochor</name>
<Point>
<coordinates>103.852769428884,1.30385218527656</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT14 Bugis</name>
<Point>
<coordinates>103.857125959023,1.29931350344582</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT15 Promenade</name>
<Point>
<coordinates>103.860891800025,1.29289175383295</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT16 Bayfront</name>
<Point>
<coordinates>103.859079764874,1.28187378879209</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT17 Downtown</name>
<Point>
<coordinates>103.852840829581,1.27944638178916</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT18 Telok Ayer</name>
<Point>
<coordinates>103.848648781083,1.28206894769394</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT19 Chinatown</name>
<Point>
<coordinates>103.845143798953,1.28422391919085</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT20 Fort Canning</name>
<Point>
<coordinates>103.844331362465,1.29248194822996</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT21 Bencoolen</name>
<Point>
<coordinates>103.850353762717,1.29891843369422</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT22 Jalan Besar</name>
<Point>
<coordinates>103.855295713435,1.3051713878069</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT23 Bendemeer</name>
<Point>
<coordinates>103.862977620945,1.31367252847691</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT24 Geylang Bahru</name>
<Point>
<coordinates>103.871622627142,1.32130110228321</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT25 Mattar</name>
<Point>
<coordinates>103.883247509542,1.32687671501334</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT26 MacPherson</name>
<Point>
<coordinates>103.889298600376,1.32615024457361</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT27 Ubi</name>
<Point>
<coordinates>103.899226655439,1.32997425973974</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT28 Kaki Bukit</name>
<Point>
<coordinates>103.908459338046,1.33496735995428</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT29 Bedok North</name>
<Point>
<coordinates>103.91797832995,1.33474211664091</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT30 Bedok Reservoir</name>
<Point>
<coordinates>103.932234623286,1.33660782955099</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT31 Tampines West</name>
<Point>
<coordinates>103.938436971222,1.34551530560119</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT32 Tampines</name>
<Point>
<coordinates>103.943009883131,1.35515041120473</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT33 Tampines East</name>
<Point>
<coordinates>103.9546344625,1.35619148271544</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT34 Upper Changi</name>
<Point>
<coordinates>103.961472788634,1.34173977444995</coordinates>
</Point>
</Placemark>
<Placemark>
<name>DT35 Expo</name>
<Point>
<coordinates>103.962374747451,1.33538252614956</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW1 Pasir Ris</name>
<Point>
<coordinates>103.949284527763,1.37304331635804</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW2 Tampines</name>
<Point>
<coordinates>103.945144586749,1.35330167637376</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW3 Simei</name>
<Point>
<coordinates>103.953377214378,1.34319707851829</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW4 Tanah Merah</name>
<Point>
<coordinates>103.946348600798,1.32718729074675</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW5 Bedok</name>
<Point>
<coordinates>103.929984495066,1.32397996868158</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW6 Kembangan</name>
<Point>
<coordinates>103.912947930851,1.3210381335934</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW7 Eunos</name>
<Point>
<coordinates>103.903225807255,1.31978354916088</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW8 Paya Lebar</name>
<Point>
<coordinates>103.893060771576,1.31811149224527</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW9 Aljunied</name>
<Point>
<coordinates>103.882906044385,1.3164326118157</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW10 Kallang</name>
<Point>
<coordinates>103.871386541754,1.31148890998818</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW11 Lavender</name>
<Point>
<coordinates>103.862767633888,1.30737781747063</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW12 Bugis</name>
<Point>
<coordinates>103.855706730933,1.30046508509717</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW13 City Hall</name>
<Point>
<coordinates>103.852585580366,1.29293672227779</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW14 Raffles Place</name>
<Point>
<coordinates>103.851461712342,1.28412561043658</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW15 Tanjong Pagar</name>
<Point>
<coordinates>103.845725186759,1.27656131737246</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW16 Outram Park</name>
<Point>
<coordinates>103.839130979249,1.28140504772213</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW17 Tiong Bahru</name>
<Point>
<coordinates>103.827445112419,1.28610253615775</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW18 Redhill</name>
<Point>
<coordinates>103.81674097205,1.28963453412887</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW19 Queenstown</name>
<Point>
<coordinates>103.806077155982,1.29455085184931</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW20 Commonwealth</name>
<Point>
<coordinates>103.798228523336,1.30250199924325</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW21 Buona Vista</name>
<Point>
<coordinates>103.790253514502,1.3072237082044</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW22 Dover</name>
<Point>
<coordinates>103.778637841909,1.31140529320963</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW23 Clementi</name>
<Point>
<coordinates>103.765191452888,1.31511625277378</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW24 Jurong East</name>
<Point>
<coordinates>103.742286332403,1.33315281585758</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW25 Chinese Garden</name>
<Point>
<coordinates>103.732596738363,1.34235282081401</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW26 Lakeside</name>
<Point>
<coordinates>103.720949087456,1.34425911493819</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW27 Boon Lay</name>
<Point>
<coordinates>103.706064622772,1.33860405469845</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW28 Pioneer</name>
<Point>
<coordinates>103.697321608474,1.33758701106708</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW29 Joo Koon</name>
<Point>
<coordinates>103.678374996165,1.3277170408447</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW30 Gul Circle</name>
<Point>
<coordinates>103.660530461345,1.31947090075208</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW31 Tuas Crescent</name>
<Point>
<coordinates>103.649078235627,1.32102695598684</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW32 Tuas West Road</name>
<Point>
<coordinates>103.639616648771,1.32998504653102</coordinates>
</Point>
</Placemark>
<Placemark>
<name>EW33 Tuas Link</name>
<Point>
<coordinates>103.636991425128,1.34088242451105</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NE1 HarbourFront</name>
<Point>
<coordinates>103.821530157095,1.26538938374901</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NE3 Outram Park</name>
<Point>
<coordinates>103.839439862425,1.27972059383553</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NE4 Chinatown</name>
<Point>
<coordinates>103.843426681863,1.28435959278583</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NE5 Clarke Quay</name>
<Point>
<coordinates>103.846555209694,1.28838602407588</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NE6 Dhoby Ghaut</name>
<Point>
<coordinates>103.845488542541,1.29970458121203</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NE7 Little India</name>
<Point>
<coordinates>103.849647059738,1.30680019696174</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NE8 Farrer Park</name>
<Point>
<coordinates>103.853477716509,1.31190557325774</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NE9 Boon Keng</name>
<Point>
<coordinates>103.861569454156,1.31933570922514</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NE10 Potong Pasir</name>
<Point>
<coordinates>103.869055656782,1.33137949021368</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NE11 Woodleigh</name>
<Point>
<coordinates>103.87081830915,1.33919004519388</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NE12 Serangoon</name>
<Point>
<coordinates>103.873574849884,1.34970788089564</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NE13 Kovan</name>
<Point>
<coordinates>103.885064856353,1.36017917065237</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NE14 Hougang</name>
<Point>
<coordinates>103.892380513029,1.37129226620797</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NE15 Buangkok</name>
<Point>
<coordinates>103.893122569706,1.38287001971672</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NE16 Sengkang</name>
<Point>
<coordinates>103.895484694279,1.39169462601522</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NE17 Punggol</name>
<Point>
<coordinates>103.902072622229,1.40454653668991</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NE18 Punggol Coast</name>
<Point>
<coordinates>103.910166388177,1.41492733388605</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS1 Jurong East</name>
<Point>
<coordinates>103.742286332403,1.33315281585758</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS2 Bukit Batok</name>
<Point>
<coordinates>103.749566478309,1.34903331201636</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS3 Bukit Gombak</name>
<Point>
<coordinates>103.751790910733,1.35861159094192</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS4 Choa Chu Kang</name>
<Point>
<coordinates>103.744370779756,1.38536316540225</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS5 Yew Tee</name>
<Point>
<coordinates>103.747405150236,1.39753506936297</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS7 Kranji</name>
<Point>
<coordinates>103.762137459497,1.42508698073648</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS8 Marsiling</name>
<Point>
<coordinates>103.774074641403,1.43252114855026</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS9 Woodlands</name>
<Point>
<coordinates>103.786066799253,1.43681962961519</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS10 Admiralty</name>
<Point>
<coordinates>103.800990519771,1.44058856161847</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS11 Sembawang</name>
<Point>
<coordinates>103.820046140211,1.44905082158502</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS12 Canberra</name>
<Point>
<coordinates>103.829702590959,1.44307664075699</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS13 Yishun</name>
<Point>
<coordinates>103.835005047246,1.42944308477331</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS14 Khatib</name>
<Point>
<coordinates>103.832979908243,1.41738337009565</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS15 Yio Chu Kang</name>
<Point>
<coordinates>103.84494727118,1.38175587099132</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS16 Ang Mo Kio</name>
<Point>
<coordinates>103.84955809232,1.36993284962262</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS17 Bishan</name>
<Point>
<coordinates>103.848143964542,1.35083898784737</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS18 Braddell</name>
<Point>
<coordinates>103.846799083148,1.3404690010277</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS19 Toa Payoh</name>
<Point>
<coordinates>103.847502198048,1.33262928096888</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS20 Novena</name>
<Point>
<coordinates>103.843825618748,1.32044079120154</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS21 Newton</name>
<Point>
<coordinates>103.837984594021,1.3123189224097</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS22 Orchard</name>
<Point>
<coordinates>103.832245244375,1.30398013681715</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS23 Somerset</name>
<Point>
<coordinates>103.839085753124,1.30026416739006</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS24 Dhoby Ghaut</name>
<Point>
<coordinates>103.846113677951,1.29870132536119</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS25 City Hall</name>
<Point>
<coordinates>103.852585580366,1.29293672227779</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS26 Raffles Place</name>
<Point>
<coordinates>103.851461712342,1.28412561043658</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS27 Marina Bay</name>
<Point>
<coordinates>103.854595522263,1.276410298755</coordinates>
</Point>
</Placemark>
<Placemark>
<name>NS28 Marina South Pier</name>
<Point>
<coordinates>103.862447515736,1.27102703612006</coordinates>
</Point>
</Placemark>
<Placemark>
<name>PE1 Cove</name>
<Point>
<coordinates>103.905961941214,1.39928198837342</coordinates>
</Point>
</Placemark>
<Placemark>
<name>PE2 Meridian</name>
<Point>
<coordinates>103.908950224489,1.3969120498774</coordinates>
</Point>
</Placemark>
<Placemark>
<name>PE3 Coral Edge</name>
<Point>
<coordinates>103.912580845515,1.39390922863313</coordinates>
</Point>
</Placemark>
<Placemark>
<name>PE4 Riviera</name>
<Point>
<coordinates>103.916169381157,1.39451978540251</coordinates>
</Point>
</Placemark>
<Placemark>
<name>PE5 Kadaloor</name>
<Point>
<coordinates>103.916574974234,1.39950910636258</coordinates>
</Point>
</Placemark>
<Placemark>
<name>PE6 Oasis</name>
<Point>
<coordinates>103.912727352412,1.40228667971123</coordinates>
</Point>
</Placemark>
<Placemark>
<name>PE7 Damai</name>
<Point>
<coordinates>103.908603542566,1.40523483636957</coordinates>
</Point>
</Placemark>
<Placemark>
<name>PTC Punggol</name>
<Point>
<coordinates>103.902411911915,1.40519470149606</coordinates>
</Point>
</Placemark>
<Placemark>
<name>PW1 Sam Kee</name>
<Point>
<coordinates>103.904831550608,1.40961268528804</coordinates>
</Point>
</Placemark>
<Placemark>
<name>PW2 Teck Lee</name>
<Point>
<coordinates>103.906577622768,1.4127708937463</coordinates>
</Point>
</Placemark>
<Placemark>