diff --git a/.Rbuildignore b/.Rbuildignore index 9a6fe0a..bdeac35 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -4,3 +4,5 @@ ^README\.Rmd$ ^\.github$ ^codecov\.yml$ +^data-raw$ +^further$ diff --git a/DESCRIPTION b/DESCRIPTION index 6931212..0bab59c 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -15,7 +15,10 @@ Imports: terra Encoding: UTF-8 Roxygen: list(markdown = TRUE) -RoxygenNote: 7.3.1 +RoxygenNote: 7.3.2 Suggests: testthat (>= 3.0.0) Config/testthat/edition: 3 +Depends: + R (>= 3.5) +LazyData: true diff --git a/R/stations.R b/R/stations.R new file mode 100644 index 0000000..2dee7be --- /dev/null +++ b/R/stations.R @@ -0,0 +1,13 @@ +#' Singapore MRT and LRT data +#' +#' Locations of all MRT and LRT station exits in Singapore. +#' +#' @format ## `stations` A data frame with 563 rows and 2 columns: +#' \describe{ +#' \item{x}{longitude} +#' \item{y}{latitude} +#' } +#' @source Land Transport Authority. (2019). LTA MRT Station Exit (GEOJSON) +#' (2024) Dataset. data.gov.sg. Retrieved December 10, 2024 from +#' +"stations" diff --git a/README.Rmd b/README.Rmd index cff9bc7..39520f9 100644 --- a/README.Rmd +++ b/README.Rmd @@ -58,8 +58,10 @@ install.packages("traveltime", repos = c("https://idem-lab.r-universe.dev")) ## Let's calculate some travel times -First download a friction surface — here using the motorised travel time from -Weiss *et al.* 2020. +First download a friction surface --— here we are using the motorised travel +time from Weiss *et al.* 2020. We use the function +`traveltime::get_friction_surface`, specify the surface (type) as `"motor2020"`, + and provide the spatial extent of interest: ```{r } library(traveltime) library(terra) @@ -71,12 +73,12 @@ friction_surface <- get_friction_surface( friction_surface ``` -Let's have a look at that +Let's have a look at that `SpatRaster`: ```{r} plot(friction_surface) ``` -Prepare points we would like to calculate travel time from +Now, prepare points that we would like to calculate travel time from: ```{r} from_here <- tibble::tibble( x = c(111.2, 111.9), @@ -85,7 +87,9 @@ from_here <- tibble::tibble( from_here ``` -And calculate the travel time +And calculate the travel time from our points `from_here` over the friction +surface `friction_surface` using the function +`traveltime::calculate_travel_time`: ```{r} travel_time <- calculate_travel_time( friction_surface = friction_surface, @@ -94,29 +98,48 @@ travel_time <- calculate_travel_time( travel_time ``` -Et voila! +Et voila! Here is the motorised travel time in minutes for each cell, with our +points in pink. ```{r} plot(travel_time) -points(from_here, pch = 19) +points(from_here, pch = 19, col = "hotpink") ``` -## Let's go to Singapore +## A more tangible example: Walking in Singapore + +Let's create a map of the walking time across the island of Singapore from the +nearest +[MRT or LRT](https://en.wikipedia.org/wiki/Transport_in_Singapore#Rail_transport) +station. + +To do this, we need: + +- a map of Singapore +- locations of the stations + +Here's our basemap via `geodata`: -Here it is: ```{r} -# install.packages("sdmtools", repos = "https://idem-lab.r-universe.dev") -library(sdmtools) -sin <- sdmtools::make_africa_mask( - type = "vector", - countries = "SGP" +#install.packages("geodata") +library(geodata) +sin <- gadm( + country = "Singapore", + level = 0, + path = tempdir(), + resolution = 2 ) plot(sin) ``` -We're going to see how long it takes to walk home from Changi Airport. So we'll -download the walking-only friction surface this time. +We're going to see how long it takes to walk home from a station, so we'll +download the walking-only friction surface this time by specifying +`surface = "walk2020`. + +We can also pass in our basemap `sin`, a `SpatVector`, directly as the `extent`, +instead of specifying by hand as above. We're also only interested in walking +*on land* so we mask out areas outside of `sin`, that are within the extent of +the raster: -We can feed in our `sin` `SpatVector` directly as the `extent`, instead of specifying by hand as above. ```{r } library(traveltime) library(terra) @@ -130,65 +153,76 @@ friction_singapore <- get_friction_surface( friction_singapore ``` -And where is Changi Airport? -```{r} -changi_airport <- tibble::tibble( - x = c(103.984), - y = c(1.355) -) -changi_airport -``` -Let's look at those. -```{r} -plot(friction_singapore) -plot(sin, add = TRUE) -points(changi_airport, pch = 19) -``` +The the `stations` data set in this package contains the longitude and latitude +of all LRT and MRT station exits in Singapore[^1]. -And calculate the travel time ```{r} -travel_time_sin <- calculate_travel_time( - friction_surface = friction_singapore, - points = changi_airport -) -travel_time_sin +head(stations) ``` -Et voi*lah*! -```{r} -plot(travel_time_sin) -points(changi_airport, pch = 19) -plot(sin, add = TRUE) -``` +Let's look at our data now. +Below we plot the friction surface raster `friction_singapore`, with the vector +boundary of `sin` as a dashed grey line, and `stations` as grey points: -### I want my plots to be nicer ```{r} library(tidyterra) library(ggplot2) ggplot() + - # plot the spatraster first geom_spatraster( - data = travel_time_sin + data = friction_singapore ) + - theme_minimal() + - scale_fill_whitebox_c(palette = "deep") + - # overlay the vector outline geom_spatvector( data = sin, - colour = "grey70", - linewidth = 1, - fill = NA + fill = "transparent", + col = "grey50", + lty = 2 + ) + + geom_point( + data = stations, + aes( + x = x, + y = y + ), + col = "grey60", + size = 0.5 ) + - # add the points from tibble - geom_point( - data = changi_airport, - aes(x = x, y = y), - colour = "hotpink" - ) + - labs(x = NULL, y = NULL, fill = "Travel time\n(minutes)") + scale_fill_viridis_c( + option = "A", + na.value = "transparent", + direction = -1 + ) + + labs( + fill = "Friction" + ) + + +``` + +OK, now we want to calculate the walking travel time in minutes across the +friction surface from the nearest station exit: + +```{r} +travel_time_sin <- calculate_travel_time( + friction_surface = friction_singapore, + points = stations +) +travel_time_sin +``` +Et voi*lah* --- a raster of walking time from the nearest station. +```{r} +contour( + x = travel_time_sin, + filled = TRUE, + nlevels = 20, + col = viridis::magma(19, direction = -1) +) ``` +[^1]: Land Transport Authority. (2019). LTA MRT Station Exit (GEOJSON) (2024) +[Dataset]. data.gov.sg. Retrieved December 10, 2024 from +https://data.gov.sg/datasets/d_b39d3a0871985372d7e1637193335da5/view + diff --git a/README.md b/README.md index 7a1b727..d384ede 100644 --- a/README.md +++ b/README.md @@ -53,16 +53,15 @@ install.packages("traveltime", repos = c("https://idem-lab.r-universe.dev")) ## Let’s calculate some travel times -First download a friction surface — here using the motorised travel time -from Weiss *et al.* 2020. +First download a friction surface –— here we are using the motorised +travel time from Weiss *et al.* 2020. We use the function +`traveltime::get_friction_surface`, specify the surface (type) as +`"motor2020"`, and provide the spatial extent of interest: ``` r library(traveltime) library(terra) -#> terra 1.7.79 -``` - -``` r +#> terra 1.7.83 friction_surface <- get_friction_surface( surface = "motor2020", @@ -78,9 +77,6 @@ friction_surface <- get_friction_surface( #> #> ....|-- lowerCorner: 0 111 #> ....|-- upperCorner: 1 112 -``` - -``` r friction_surface #> class : SpatRaster #> dimensions : 120, 120, 1 (nrow, ncol, nlyr) @@ -91,7 +87,7 @@ friction_surface #> name : friction_surface ``` -Let’s have a look at that +Let’s have a look at that `SpatRaster`: ``` r plot(friction_surface) @@ -99,7 +95,7 @@ plot(friction_surface) -Prepare points we would like to calculate travel time from +Now, prepare points that we would like to calculate travel time from: ``` r from_here <- tibble::tibble( @@ -114,7 +110,9 @@ from_here #> 2 112. 0.35 ``` -And calculate the travel time +And calculate the travel time from our points `from_here` over the +friction surface `friction_surface` using the function +`traveltime::calculate_travel_time`: ``` r travel_time <- calculate_travel_time( @@ -133,42 +131,52 @@ travel_time #> max value : 582.1882 ``` -Et voila! +Et voila! Here is the motorised travel time in minutes for each cell, +with our points in pink. ``` r plot(travel_time) -points(from_here, pch = 19) +points(from_here, pch = 19, col = "hotpink") ``` -## Let’s go to Singapore +## A more tangible example: Walking in Singapore -Here it is: +Let’s create a map of the walking time across the island of Singapore +from the nearest [MRT or +LRT](https://en.wikipedia.org/wiki/Transport_in_Singapore#Rail_transport) +station. -``` r -# install.packages("sdmtools", repos = "https://idem-lab.r-universe.dev") -library(sdmtools) -sin <- sdmtools::make_africa_mask( - type = "vector", - countries = "SGP" -) -#> Please Note: Because you did not provide a version, by default the version being used is 202403 (This is the most recent version of admin unit shape data. To see other version options use function listShpVersions) -#> although coordinates are longitude/latitude, st_union assumes that they are -#> planar -``` +To do this, we need: + +- a map of Singapore +- locations of the stations + +Here’s our basemap via `geodata`: ``` r +#install.packages("geodata") +library(geodata) +sin <- gadm( + country = "Singapore", + level = 0, + path = tempdir(), + resolution = 2 +) plot(sin) ``` -We’re going to see how long it takes to walk home from Changi Airport. -So we’ll download the walking-only friction surface this time. +We’re going to see how long it takes to walk home from a station, so +we’ll download the walking-only friction surface this time by specifying +`surface = "walk2020`. -We can feed in our `sin` `SpatVector` directly as the `extent`, instead -of specifying by hand as above. +We can also pass in our basemap `sin`, a `SpatVector`, directly as the +`extent`, instead of specifying by hand as above. We’re also only +interested in walking *on land* so we mask out areas outside of `sin`, +that are within the extent of the raster: ``` r library(traveltime) @@ -185,61 +193,98 @@ friction_singapore <- get_friction_surface( #> - Explorer__2020_walking_only_friction_surface: DEFAULT #> #> -#> ....|-- lowerCorner: 1.164 103.6383 -#> ....|-- upperCorner: 1.4713 104.09 -``` - -``` r +#> ....|-- lowerCorner: 1.1664 103.6091 +#> ....|-- upperCorner: 1.4714 104.0858 friction_singapore #> class : SpatRaster -#> dimensions : 37, 54, 1 (nrow, ncol, nlyr) +#> dimensions : 37, 57, 1 (nrow, ncol, nlyr) #> resolution : 0.008333333, 0.008333333 (x, y) -#> extent : 103.6417, 104.0917, 1.166667, 1.475 (xmin, xmax, ymin, ymax) +#> extent : 103.6083, 104.0833, 1.166667, 1.475 (xmin, xmax, ymin, ymax) #> coord. ref. : lon/lat WGS 84 (EPSG:4326) #> source(s) : memory -#> varname : Explorer__2020_walking_only_friction_surface_1.164,103.6383,1.4713,104.09 +#> varname : Explorer__2020_walking_only_friction_surface_1.1664,103.6091,1.4714,104.0858 #> name : friction_surface #> min value : 0.01200000 #> max value : 0.06192715 ``` -And where is Changi Airport? +The the `stations` data set in this package contains the longitude and +latitude of all LRT and MRT station exits in Singapore[^1]. ``` r -changi_airport <- tibble::tibble( - x = c(103.984), - y = c(1.355) -) -changi_airport -#> # A tibble: 1 × 2 -#> x y -#> -#> 1 104. 1.36 +head(stations) +#> x y +#> [1,] 103.9091 1.334922 +#> [2,] 103.9335 1.336555 +#> [3,] 103.8493 1.297699 +#> [4,] 103.8508 1.299195 +#> [5,] 103.9094 1.335311 +#> [6,] 103.9389 1.344999 ``` -Let’s look at those. +Let’s look at our data now. + +Below we plot the friction surface raster `friction_singapore`, with the +vector boundary of `sin` as a dashed grey line, and `stations` as grey +points: ``` r -plot(friction_singapore) -plot(sin, add = TRUE) -points(changi_airport, pch = 19) +library(tidyterra) +#> Registered S3 method overwritten by 'tidyterra': +#> method from +#> autoplot.SpatRaster malariaAtlas +#> +#> Attaching package: 'tidyterra' +#> The following object is masked from 'package:stats': +#> +#> filter +library(ggplot2) + +ggplot() + + geom_spatraster( + data = friction_singapore + ) + + geom_spatvector( + data = sin, + fill = "transparent", + col = "grey50", + lty = 2 + ) + + geom_point( + data = stations, + aes( + x = x, + y = y + ), + col = "grey60", + size = 0.5 + ) + + scale_fill_viridis_c( + option = "A", + na.value = "transparent", + direction = -1 + ) + + labs( + fill = "Friction" + ) ``` -And calculate the travel time +OK, now we want to calculate the walking travel time in minutes across +the friction surface from the nearest station exit: ``` r travel_time_sin <- calculate_travel_time( friction_surface = friction_singapore, - points = changi_airport + points = stations ) travel_time_sin #> class : SpatRaster -#> dimensions : 37, 54, 1 (nrow, ncol, nlyr) +#> dimensions : 37, 57, 1 (nrow, ncol, nlyr) #> resolution : 0.008333333, 0.008333333 (x, y) -#> extent : 103.6417, 104.0917, 1.166667, 1.475 (xmin, xmax, ymin, ymax) +#> extent : 103.6083, 104.0833, 1.166667, 1.475 (xmin, xmax, ymin, ymax) #> coord. ref. : #> source(s) : memory #> name : travel_time @@ -247,54 +292,19 @@ travel_time_sin #> max value : Inf ``` -Et voi*lah*! +Et voi*lah* — a raster of walking time from the nearest station. ``` r -plot(travel_time_sin) -points(changi_airport, pch = 19) -plot(sin, add = TRUE) +contour( + x = travel_time_sin, + filled = TRUE, + nlevels = 20, + col = viridis::magma(19, direction = -1) +) ``` -### I want my plots to be nicer - -``` r -library(tidyterra) -#> Registered S3 method overwritten by 'tidyterra': -#> method from -#> autoplot.SpatRaster malariaAtlas -#> -#> Attaching package: 'tidyterra' -#> The following object is masked from 'package:stats': -#> -#> filter -``` - -``` r -library(ggplot2) - -ggplot() + - # plot the spatraster first - geom_spatraster( - data = travel_time_sin - ) + - theme_minimal() + - scale_fill_whitebox_c(palette = "deep") + - # overlay the vector outline - geom_spatvector( - data = sin, - colour = "grey70", - linewidth = 1, - fill = NA - ) + - # add the points from tibble - geom_point( - data = changi_airport, - aes(x = x, y = y), - colour = "hotpink" - ) + - labs(x = NULL, y = NULL, fill = "Travel time\n(minutes)") -``` - - +[^1]: Land Transport Authority. (2019). LTA MRT Station Exit (GEOJSON) + (2024) \[Dataset\]. data.gov.sg. Retrieved December 10, 2024 from + diff --git a/data-raw/LTAMRTStationExitGEOJSON.geojson b/data-raw/LTAMRTStationExitGEOJSON.geojson new file mode 100644 index 0000000..c64e230 --- /dev/null +++ b/data-raw/LTAMRTStationExitGEOJSON.geojson @@ -0,0 +1,570 @@ +{ +"type": "FeatureCollection", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, + +"features": [ +{ "type": "Feature", "properties": { "Name": "kml_1", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KAKI BUKIT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> D3065772B4A8884B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.909146276263002, 1.33492189034272, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_2", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BEDOK RESERVOIR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> D9EF7EDA7B6AE00E<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.933487189855001, 1.33655490332863, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_3", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BENCOOLEN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> B84D682A36C94724<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.849271703873001, 1.29769911765443, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_4", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BENCOOLEN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 58C4E2D41BF56E13<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.850843384716995, 1.29919519603019, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_5", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KAKI BUKIT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> C7859F14611E3E46<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.909405098625996, 1.33531120636956, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_6", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TAMPINES WEST MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 538DEFEDB8DF426A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.938948503782001, 1.34499919751448, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_7", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> JALAN BESAR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 1DF95F048432E540<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.855296125414, 1.30488989412929, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_8", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BENDEMEER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> CC5340F062D36648<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.863074005936994, 1.31385250562225, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_9", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BEDOK NORTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 7227ED6E51A0A478<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.917810526029001, 1.33442257655151, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_10", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> UPPER CHANGI MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> DCF272AB67E90046<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.961043080709004, 1.34084047406433, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_11", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> GEYLANG BAHRU MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 7D14D8F944626336<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.871794271427007, 1.32110911579532, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_12", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TAMPINES MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 1D91E52F1D3C6192<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.943678182032002, 1.35487057481792, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_13", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TAMPINES MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit G<\/td> <\/tr>
INC_CRC<\/th> 4857FF7FA81FC41A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.942723496694995, 1.35459633872811, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_14", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BEDOK RESERVOIR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 2B5A7B2D633B3BD5<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.932886822506006, 1.33634776089978, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_15", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SENJA LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> C46382A21331EA45<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.762325766572005, 1.3828754471752, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_16", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> YISHUN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> C2D55B079B8AA456<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.834865533460999, 1.42963629191008, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_17", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> YISHUN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> C551A20E6E342A65<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.835643654932994, 1.42966559716462, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_18", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SERANGOON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit G<\/td> <\/tr>
INC_CRC<\/th> 40A841F72D73A02C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.872866695395999, 1.35079019941389, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_19", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SERANGOON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> DA4475EAB2A9601C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.873641321904003, 1.34983373825613, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_20", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SERANGOON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> 12758F1DDC8CF6B8<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.872902116340995, 1.3508202454304, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_21", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TAI SENG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 54874BD41781B357<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.887627437261997, 1.33591408492645, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_22", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> EUNOS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> CB562FEDBA333355<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.903215186978002, 1.31952991880127, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_23", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SEMBAWANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> CBDA244C9326B8C6<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.819758966004002, 1.44915683716069, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_24", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HOUGANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 6D19186EFE5FD5FB<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.892972400971999, 1.37194611655273, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_25", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHANGI AIRPORT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 2D491EF64CB58C02<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.989276642413998, 1.3563414210048, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_26", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> OUTRAM PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 8<\/td> <\/tr>
INC_CRC<\/th> 3057E9135BFBD0F9<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.838117129674004, 1.28232163095245, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_27", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> OUTRAM PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 7<\/td> <\/tr>
INC_CRC<\/th> 3C9A35B7FDC33A1A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.838640195189001, 1.2810220177189, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_28", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MAXWELL MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 3<\/td> <\/tr>
INC_CRC<\/th> CE1632BF9D6E1F72<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.842916305543, 1.28019152238094, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_29", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MAXWELL MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> 5D6CDC9708168E3B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.844164413474999, 1.28103425526259, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_30", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MAXWELL MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> 95F61602B7CE905C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.844895459262005, 1.28091943659091, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_31", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SHENTON WAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> AAEEB32398817172<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.851835707381994, 1.27746205833565, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_32", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SHENTON WAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 5<\/td> <\/tr>
INC_CRC<\/th> 03444FA2BC9AF9DF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.851807978050999, 1.2771436461189, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_33", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SHENTON WAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 4<\/td> <\/tr>
INC_CRC<\/th> 2B1F698DD3DB8746<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.851034086048998, 1.27765594176983, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_34", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SHENTON WAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> FD720BE5E5565E2E<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.850915094627993, 1.27700305442423, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_35", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SHENTON WAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 3<\/td> <\/tr>
INC_CRC<\/th> A54D185A5569B115<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.850128771070999, 1.27762958112669, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_36", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SHENTON WAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 6<\/td> <\/tr>
INC_CRC<\/th> 42CEFA5FE7DD78D9<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.849893223276993, 1.27792920509497, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_37", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MARINA BAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> 4F0EDD7252D1EAF8<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.854470032953998, 1.27735303297793, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_38", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MARINA BAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 5<\/td> <\/tr>
INC_CRC<\/th> 03BC8BA7B72C2D81<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.854319501955999, 1.27469326445441, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_39", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MARINA BAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 4<\/td> <\/tr>
INC_CRC<\/th> F125CE014C37C2DB<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.856488836262997, 1.27363420910955, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_40", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MARINA BAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 3<\/td> <\/tr>
INC_CRC<\/th> 2F2639EB423EFD0D<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.855371741490004, 1.27541636589719, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_41", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ORCHARD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 11<\/td> <\/tr>
INC_CRC<\/th> 0A847CDFAB7B3F63<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.830496723547, 1.30421797905404, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_42", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ORCHARD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 10<\/td> <\/tr>
INC_CRC<\/th> B3BE3F499ED707F1<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.831126574248003, 1.30404570543486, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_43", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ORCHARD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 9<\/td> <\/tr>
INC_CRC<\/th> AD31C99F12BAEE46<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.831506861841007, 1.30366551621641, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_44", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ORCHARD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 8<\/td> <\/tr>
INC_CRC<\/th> 705858431FF72BCB<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.831786135559994, 1.30344571958931, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_45", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ORCHARD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 13<\/td> <\/tr>
INC_CRC<\/th> DBD31FCCFBAE692E<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.832124829630999, 1.30229921132352, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_46", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ORCHARD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 5<\/td> <\/tr>
INC_CRC<\/th> FCA5411E28B2A33D<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.832023815157001, 1.30394471745993, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_47", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ORCHARD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 6<\/td> <\/tr>
INC_CRC<\/th> D7A5F13EF395CD85<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.832320915154, 1.30364769526593, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_48", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> STEVENS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 5<\/td> <\/tr>
INC_CRC<\/th> 3DDAD01108E1ED83<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.826322577145007, 1.32093774341441, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_49", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> STEVENS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 4<\/td> <\/tr>
INC_CRC<\/th> 93AA974193E59BF8<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.825882869658997, 1.32151990425561, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_50", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> STEVENS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> 43C1FAB4A764D619<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.825728378177004, 1.31995163510642, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_51", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> STEVENS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> A6EA6AA10E329D97<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.826013593580996, 1.31882889618825, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_52", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> STEVENS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 3<\/td> <\/tr>
INC_CRC<\/th> FD76A5DA4056C137<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.824991570642993, 1.31947046099515, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_53", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HAVELOCK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> 43806860EF6F95B6<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.833839753358006, 1.28667674481792, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_54", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HAVELOCK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> 2B4107CDD54FF45A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.833495118231994, 1.28694406698765, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_55", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HAVELOCK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 5<\/td> <\/tr>
INC_CRC<\/th> 41415B22F604DBB1<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.833961901636997, 1.28956096428231, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_56", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HAVELOCK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 4<\/td> <\/tr>
INC_CRC<\/th> F01A3E97C6F40606<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.834003496172002, 1.29016689416429, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_57", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CITY HALL MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 0D2982825A7A63D7<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.851802333809005, 1.29345482595132, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_58", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SOO TECK LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 5C840B0088A042B7<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.897029921816994, 1.40501492486707, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_59", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SOO TECK LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 7CDEC183A92283AA<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.897408572120995, 1.40524489949914, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_60", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> DAMAI LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> D50CD0EB8DF1A6AD<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.908792226992006, 1.40528461343374, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_61", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MARINA BAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> 9B69D26308E8046F<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.855003337919996, 1.27615893131623, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_62", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> GARDENS BY THE BAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 3<\/td> <\/tr>
INC_CRC<\/th> 139A309B16435395<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.867154122141997, 1.27830343996812, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_63", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> GARDENS BY THE BAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> 64955697073C7D02<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.867968767275997, 1.27882622333397, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_64", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> GARDENS BY THE BAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> 272B01765238D930<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.868586734111005, 1.28037075595564, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_65", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MARINA SOUTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> 20846F5C306F5CFE<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.861503878728001, 1.27357480448593, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_66", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MARINA SOUTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> AC98AC5E6E4A2440<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.861777210111001, 1.27385994951971, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_67", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MARINA SOUTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 3<\/td> <\/tr>
INC_CRC<\/th> 0D8225B43A9DB12A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.862894304628995, 1.27313520508679, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_68", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MARINA SOUTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 4<\/td> <\/tr>
INC_CRC<\/th> 465066CFAE562319<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.862668508873995, 1.27551141461164, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_69", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ORCHARD BOULEVARD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> 387A884B34A26CED<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.823637898436004, 1.30362395339039, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_70", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ORCHARD BOULEVARD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> 4FC444363DB7E86D<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.823895612119998, 1.30246332428451, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_71", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> GREAT WORLD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 5<\/td> <\/tr>
INC_CRC<\/th> 65268329B5AD5F93<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.833405504371001, 1.29655259456474, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_72", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> GREAT WORLD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> FCF6BA18E63CA65C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.833904631248004, 1.29332097607264, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_73", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> GREAT WORLD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> 72FD2496EC6B1D54<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.832627103188997, 1.2928694999213, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_74", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> GREAT WORLD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 6<\/td> <\/tr>
INC_CRC<\/th> 4F2D7457D45F29D1<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.832841014649006, 1.29318434464758, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_75", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> GREAT WORLD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 3<\/td> <\/tr>
INC_CRC<\/th> C2D22AD994AA8975<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.832734059176005, 1.29381997655443, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_76", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> GREAT WORLD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 4<\/td> <\/tr>
INC_CRC<\/th> 5FD7E726E04576E5<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.833037100577002, 1.29602983278925, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_77", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HAVELOCK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 3<\/td> <\/tr>
INC_CRC<\/th> 3509B8FC37977C9F<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.833369520277998, 1.28884356335354, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_78", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> NAPIER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> 8800C596B7DB260F<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.819483777776, 1.30693598792234, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_79", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> NAPIER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> CE1402EDB6926C4A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.819506621184999, 1.3063449793684, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_80", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ORCHARD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 12<\/td> <\/tr>
INC_CRC<\/th> A360078B6432F773<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.830663098952996, 1.30285761474898, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_81", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> OASIS LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 0BEB37C242EBF30C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.912646133061003, 1.40250713144757, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_82", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KADALOOR LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 8F348D1DC2C6DCD9<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.916387458482006, 1.39980926315018, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_83", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MERIDIAN LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> FCD25ADA46274E53<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.908965833186997, 1.39668105013866, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_84", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MERIDIAN LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> CB5492FBE757562B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.908869496153997, 1.39712168979943, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_85", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> COVE LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> C06D10E6EBF83EA6<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.905928735776001, 1.399124393509, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_86", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SOUTH VIEW LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 335EFAECE777F0ED<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.745101131080006, 1.38031765699103, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_87", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HOLLAND VILLAGE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 76D46E22BDCAEAAA<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.795769108390004, 1.31106948365962, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_88", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ONE-NORTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 45A9A4D683B771BF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.787927806168, 1.30035949347946, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_89", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> OUTRAM PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 3<\/td> <\/tr>
INC_CRC<\/th> 00AC1131DC50AE35<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.839789232480001, 1.28099327615611, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_90", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> DOVER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 3350D5255C75B2ED<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.778304715288002, 1.31141543344877, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_91", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> DOVER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> F180ED4FDDA94062<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.778464771304002, 1.31169319167964, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_92", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BOON LAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> A277212C952A5DE9<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.705650038035003, 1.33862950779597, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_93", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BOON LAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> A16B7FAC4E5AB117<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.705353353199996, 1.3385141209312, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_94", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BOON LAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit F<\/td> <\/tr>
INC_CRC<\/th> 0E296E75C6372829<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.705795031365, 1.33827322197702, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_95", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUKIT BATOK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 474392E67F3BCE9B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.749936955579003, 1.34938958776808, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_96", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> JOO KOON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> AFF1FA0853BEBB53<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.678520709010996, 1.32750208445865, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_97", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> JOO KOON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 93D34F9CC519E4F1<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.678644077076996, 1.32795611143786, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_98", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHOA CHU KANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> B98A2C3B9DA5DE50<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.744223583926001, 1.38570539067001, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_99", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KRANJI MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> EFEBDF844A7E944C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.762496770528998, 1.42512495935501, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_100", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MARSILING MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 0449B4DEFBEC025F<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.774410520697003, 1.43275137172006, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_101", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MARSILING MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> AC661F5F30DEBD6A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.773997133375005, 1.43275136098458, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_102", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HARBOURFRONT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> FF2613B98FF1665F<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.821580291700002, 1.26497195959122, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_103", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HARBOURFRONT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 690B8B15B6CB2137<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.821398857153994, 1.26597925499591, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_104", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HARBOURFRONT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 8A673F2CF4ABB497<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.820468350460999, 1.26601318319783, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_105", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHINATOWN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 3A1CC9F9DAB5860F<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.843797888099999, 1.28371277043019, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_106", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CLARKE QUAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 30B1E5E1C8017C54<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.845903432735994, 1.28780575265584, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_107", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CLARKE QUAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit G<\/td> <\/tr>
INC_CRC<\/th> 804AAB0D2993008D<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.846593909164994, 1.28919925781809, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_108", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LITTLE INDIA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 42434AF40AAA3CAF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.849360029460001, 1.30560525103922, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_109", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SAM KEE LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> ED444F6994E770B0<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.904792279936004, 1.40982767244172, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_110", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> DAMAI LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> C9AD817C66E8F720<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.908613856027998, 1.40504602830874, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_111", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> OASIS LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 9B8770AEDF254A19<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.912754573794999, 1.4021037193748, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_112", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KADALOOR LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> F84C17D9498B88F1<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.916517130328003, 1.39941146718039, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_113", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> RIVIERA LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> B302D78A0F102EF5<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.915935470521006, 1.39455906596969, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_114", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> RIVIERA LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 720E105DE8EACE66<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.916263098526997, 1.3943256111184, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_115", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CORAL EDGE LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> E7718F39AA487D8B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.912708744366995, 1.39397080711083, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_116", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CORAL EDGE LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> D4CB376FFBED3D8A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.912652233969993, 1.39368465222162, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_117", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> COVE LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 8007BDF5105E0800<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.906176013600003, 1.39930265660882, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_118", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HARBOURFRONT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 54F69FDA2233B8B4<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.822509807219006, 1.26508503461184, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_119", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MACPHERSON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> AB2B8B46B299062B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204409<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.889793336525997, 1.3266787588073, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_120", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MACPHERSON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> A4023956A12A2155<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.890665675221001, 1.32585503018196, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_121", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MACPHERSON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> DA5558C22F66CC7C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.890262565574005, 1.32548152990651, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_122", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TONGKANG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> F83D29999DC4CC0E<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.886084357382998, 1.38937900794855, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_123", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TONGKANG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> DB46A51FA82F6865<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.885962114118996, 1.38918016099808, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_124", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> RENJONG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 35048F84F3D858BC<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.890409161731995, 1.38669795588852, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_125", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> RENJONG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> B0178F7E6DD16A1A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.890438192123995, 1.38681414421555, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_126", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> RANGGUNG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 077813950167F0B1<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.897321723817001, 1.3841763860699, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_127", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> RANGGUNG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 8D5E7FC2B8D737C3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.897223938055006, 1.38410488340512, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_128", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KANGKAR LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 8F3E5F0D6E718156<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.902147558140996, 1.38407450287348, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_129", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KANGKAR LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 09AD446CDB37F542<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.902276368029007, 1.38376520316725, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_130", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BAKAU LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 8A3C1E7317417FD2<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.905445630713999, 1.38818538545215, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_131", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BAKAU LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> FD691A27B9222ACC<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.905482124043004, 1.387840799257, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_132", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> RUMBIA LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 19F50D0B45ED2625<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.906018791652002, 1.39134048641742, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_133", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> RUMBIA LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 24270D468CB0C551<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.906105819366005, 1.39141424178713, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_134", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ONE-NORTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 1C5F562480779031<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.786907466320997, 1.29902749872281, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_135", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KENT RIDGE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 3A15EBE767637D7E<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.784809631881998, 1.29242811590855, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_136", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KENT RIDGE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> D5D0496822FDF5DF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.784465895365003, 1.29431588700949, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_137", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HAW PAR VILLA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> F33EEDAA74A75803<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.782006397071996, 1.28305527354176, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_138", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PASIR PANJANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> DC64D55F9888B200<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.792030186920002, 1.27600323278505, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_139", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LABRADOR PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 77D4BE63E9419638<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204434<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.802355553663006, 1.27210695805434, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_140", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TELOK BLANGAH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> A4D239AA865A436A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.809883730920006, 1.2707212262114, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_141", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TAN KAH KEE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 90A659920312F326<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.807799119072996, 1.32533306908018, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_142", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CASHEW MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> CC93934ACEAF445A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.764234480710996, 1.36983331859629, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_143", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SIXTH AVENUE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 2C20FEBDCFC154A5<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.796566082121004, 1.33078046994618, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_144", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KING ALBERT PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> E65E02F76E0D2687<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.783030260215, 1.33553707766976, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_145", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HILLVIEW MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> A858C4A736160A26<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.767108459935997, 1.36208433991773, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_146", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUKIT PANJANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 73796FEF5F3AC744<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.761922934208997, 1.37900796974076, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_147", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ROCHOR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 3D9484B6A1206900<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.852375021632994, 1.30340410653552, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_148", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> DOWNTOWN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit F<\/td> <\/tr>
INC_CRC<\/th> EF75BE606A770937<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.852427746440995, 1.27979623969206, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_149", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TELOK AYER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 974D41D519377A08<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.848506543895994, 1.28188738923558, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_150", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PIONEER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 2362DB8619A766E8<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.697155373410993, 1.33734462692044, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_151", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PIONEER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 72551C3253621E4C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.697129452875998, 1.33783162800548, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_152", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TANJONG PAGAR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit I<\/td> <\/tr>
INC_CRC<\/th> 80D1390DC9F96913<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.845656003884997, 1.27644796791678, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_153", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUONA VISTA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> D90F93DC24A3A902<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.790930065154001, 1.30629814162477, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_154", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> COMPASSVALE LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 7A6540195C75D6C2<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.900616469599996, 1.39432752151004, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_155", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> COMPASSVALE LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 5E01800475DDF5ED<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.900706597552997, 1.39453417229989, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_156", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PUNGGOL POINT LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 45E35F4903E99C73<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.906693304924005, 1.41666406794097, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_157", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PUNGGOL POINT LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> A61E18152335BFC3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.906817792333001, 1.41691476791429, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_158", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> NIBONG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 853F2A40C64D662F<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.900073808052994, 1.4117727733571, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_159", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> NIBONG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> BDB536DD4D5059E3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.900531554207006, 1.4119103237023, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_160", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SUMANG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> DE121A01C547F972<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.898335680078006, 1.40836843102047, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_161", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SUMANG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 5B2417A2FAFF4D06<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.898757123956003, 1.40848790183837, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_162", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> DOWNTOWN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> 8938BEADE9C163A4<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.852478046399, 1.27952791063231, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_163", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> DOWNTOWN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 419B0A25DCF2D8F3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.852908128470006, 1.27960131828225, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_164", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> DOWNTOWN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> D77ADD7D0B7369D2<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.853152091960993, 1.27944436839161, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_165", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> DOWNTOWN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 2397863DFE9A27AE<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.853013759131002, 1.27917604078089, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_166", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TELOK AYER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> F628F180D146397C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.848841656060998, 1.28225066426407, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_167", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> FARRER PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit I<\/td> <\/tr>
INC_CRC<\/th> 29BDA63F18A13487<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.855806657255002, 1.3117658772962, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_168", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> FARRER PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit H<\/td> <\/tr>
INC_CRC<\/th> 54174A49E0822F8A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.856098852114997, 1.31188350806091, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_169", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BOON KENG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> B8343022B9AB9000<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.860706833288006, 1.31791481647231, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_170", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> POTONG PASIR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 1B39543BA5308563<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.868966444703005, 1.33280135224287, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_171", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> NICOLL HIGHWAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 2E07D7422B61952A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.864151747701996, 1.29966075968377, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_172", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BOTANIC GARDENS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> A2B2C9A4721A3198<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.814976905734, 1.32253463294936, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_173", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> FARRER ROAD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 256E821C70941FD4<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.807965230708007, 1.31749372589551, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_174", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> FARRER ROAD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> C5B7A8210D496AE2<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.807389234558002, 1.31755201617223, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_175", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HOLLAND VILLAGE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 6C37FA62DE7E9E31<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.795753770112995, 1.31071120133272, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_176", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HOLLAND VILLAGE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 5AE0992EF2AB9ACA<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.796139102482996, 1.31122026577719, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_177", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BAYFRONT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 959F42085F43D0D7<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.859596872186998, 1.28283490868894, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_178", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BAYFRONT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> F8BA0963046FE249<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.859759180227002, 1.28270522470828, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_179", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BEAUTY WORLD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 91AF290F33622FDB<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.775450679440993, 1.34158221454984, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_180", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BISHAN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> CC79D6FD2A8F1DD0<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.850201081964997, 1.35105321993329, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_181", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BISHAN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 32BBD904B9B7DCBD<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.848304991722003, 1.35057959871202, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_182", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BOON KENG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 0194CF0B3B46824D<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.861502357069, 1.32010687599131, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_183", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SENGKANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> E026168F5D7B044A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.895705456610003, 1.39237084363153, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_184", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SENGKANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 7B18AEBD6DA44B02<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.895636894364998, 1.39179563766207, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_185", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SENGKANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 245FC278F4E5D3D3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.895405720753999, 1.39182911971822, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_186", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SENGKANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 5C2ABE67FA9DA403<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.895209399885005, 1.39088158609449, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_187", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PUNGGOL MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 0B2529A684127E11<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.902305996655997, 1.40533957622685, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_188", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PUNGGOL LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> ABD1B5F0A5C95A52<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.901798524363002, 1.40443833617806, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_189", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PUNGGOL MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> E3FC8EFB1852284C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.902598196987995, 1.40518624176365, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_190", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PUNGGOL LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 946836207101FC23<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.902115639182995, 1.40430062572978, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_191", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUANGKOK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 64BE76AD177F77E2<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.893463152237004, 1.38264972282021, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_192", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> YISHUN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 6A53878C399EA119<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.835090842713001, 1.42911681431371, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_193", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TAI SENG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> B121007692C889BF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.888214067771997, 1.33462087723075, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_194", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BARTLEY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 21A49043695321F2<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.878908693924998, 1.34350106152933, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_195", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BARTLEY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 0455856EC60DC1B0<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.880255893265002, 1.34224874921609, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_196", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SERANGOON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit H<\/td> <\/tr>
INC_CRC<\/th> F904CF22F1692BDE<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.873546495734004, 1.34972769951436, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_197", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SERANGOON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 56E474B40576C822<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.873957395391002, 1.349481680255, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_198", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SERANGOON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> AF9B4A2ED6E87545<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.874321946576003, 1.3499015921065, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_199", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SERANGOON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 29231A6BE44BC0C3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.873694014498, 1.35059510442143, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_200", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SERANGOON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit F<\/td> <\/tr>
INC_CRC<\/th> C1B3F5AC67211832<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.871449340349002, 1.35094827793695, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_201", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LORONG CHUAN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> F22EC9809EB9F243<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.862918299955993, 1.35173853791277, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_202", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LORONG CHUAN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 28A9382A30C8CE74<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.864933673465003, 1.35143910357514, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_203", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MARYMOUNT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 00445EC81B4CF09B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.840058918077006, 1.34786607217308, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_204", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MARYMOUNT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> D6F8DA032170A0CA<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.839087956800995, 1.34898038642137, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_205", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> DHOBY GHAUT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> D718E6930765A66B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.844747857190995, 1.29964924216132, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_206", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CALDECOTT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> B27228AA1D3CABE9<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.839406731224997, 1.33710531669564, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_207", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> EXPO MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> FD3508562E82B730<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.961942958226004, 1.33532172433891, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_208", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> EXPO MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 697283586E726E3F<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.962075287595994, 1.33525294423695, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_209", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ADMIRALTY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 37905A3114C1A244<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.800533463258006, 1.44015239674676, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_210", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ADMIRALTY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 746E9DB47E3B63DD<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.801364534450997, 1.4405333880723, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_211", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ANG MO KIO MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 65B35A9BB66315DF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.849343273705003, 1.3694405305965, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_212", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BAYFRONT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 9446A698C2D12F17<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.858731924739999, 1.28096742397164, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_213", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BAYFRONT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> 2379024BE499AD08<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.858441003652004, 1.28110463709187, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_214", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BAYFRONT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> D926E2FE3DE5668D<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.859493846611002, 1.28283435447098, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_215", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TAMPINES MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> B610E91C58D66F87<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.945089563333994, 1.35353908166709, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_216", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HOUGANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> CAD432D1FEF31915<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.891975029134997, 1.37214183483289, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_217", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HOUGANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 2D8A3BEA17E41AFD<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.892445723159, 1.37020857826092, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_218", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KOVAN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 420650AF4622E265<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.884721732122003, 1.36020562306327, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_219", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KOVAN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> A740F42ACFBB45B6<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.885450578, 1.36002801014446, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_220", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KOVAN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> AECA4062F6010632<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.884307428636006, 1.35970758870125, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_221", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> EUNOS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 8EBFC6F8732D28BD<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.902894137841997, 1.31951727489935, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_222", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> EUNOS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> C83CDC2726150409<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.902582077618007, 1.3195625452698, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_223", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KEMBANGAN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> E09063B99CE6B24F<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.912899288746004, 1.32115210805545, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_224", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KEMBANGAN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 85173EF160C47192<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.912941079407005, 1.32092376028202, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_225", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BEDOK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 20B9A6B793404FF3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.929157143094997, 1.32356863615635, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_226", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BEDOK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 29CA710B93C2CB4B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.929673089995006, 1.32426834276114, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_227", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ANG MO KIO MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 87583D09ABBEFC42<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.849596100655006, 1.36968532219972, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_228", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ANG MO KIO MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 6CB268C777B52269<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.849939000741003, 1.3694647065051, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_229", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BISHAN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 1B5DEBDC60CE4A0E<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.848312255980005, 1.35106443927374, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_230", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BISHAN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> 03844339B281C755<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.848432923874995, 1.35103483777104, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_231", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BISHAN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 2C4E7954EAAC322A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.848209281294004, 1.35058491153989, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_232", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BRADDELL MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 90DD180B16820DA9<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.847440830590998, 1.34067216394317, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_233", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BRADDELL MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> B8C182EB1FFEA0F7<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.846406497231001, 1.34074431901447, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_234", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BRADDELL MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 6D90E5E9F8684602<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.846429540721005, 1.34106899206951, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_235", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TOA PAYOH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> DE385222B3EA4A3C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.847577567475994, 1.33231553664677, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_236", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TOA PAYOH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 4C8924227130F1F0<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.847319773631995, 1.33299410183748, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_237", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> NOVENA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> F8D815A9ADA89BE1<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.843339733476, 1.31989588603478, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_238", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> NOVENA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 1C30DBBBBC9F938C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.844389333871007, 1.32109486830236, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_239", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TOA PAYOH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 5AB7564CE0D0C509<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.846517406155996, 1.33327874598633, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_240", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> WOODLEIGH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 021A225B04A13444<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.871053804157995, 1.3398672199419, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_241", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> WOODLEIGH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 390C6CA013A0C83B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.870940604568005, 1.33851065441145, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_242", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> WOODLEIGH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 6AA9CF467B21891C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.870508468145005, 1.33858314946013, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_243", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BOON KENG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 437A42A639D5778D<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.861903675519002, 1.31923519599748, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_244", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> POTONG PASIR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> C0620A11315B77FF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.868703893187998, 1.33106671097983, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_245", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> POTONG PASIR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> ADC7223B75A5E175<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.869333239363002, 1.33114814073399, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_246", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SOMERSET MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> C073EA14C7AA013E<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.838399326575995, 1.3000284884874, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_247", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ONE-NORTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 14396AC4C6B421F3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.787565456204007, 1.29971469760634, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_248", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BRAS BASAH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 57B5E4CF560CD25A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.850474275506997, 1.29604621307724, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_249", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BRAS BASAH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 1C26490BD624B606<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.851327253386003, 1.29685892177104, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_250", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BRAS BASAH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 9448BEB862765BA4<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.850249852705005, 1.29701443296395, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_251", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BRAS BASAH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> D53EA9E82E6BE2E5<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.850157520980005, 1.29755148518356, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_252", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BRAS BASAH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> 6010EED2184D4748<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.850423192511002, 1.29753545171709, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_253", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ESPLANADE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> E51530AE6521B581<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.856305554738995, 1.29337054827687, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_254", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUKIT BATOK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> C429C4E74FC7D20E<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.749766564930994, 1.34952006073274, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_255", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHINATOWN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> FCD3F9C4B46D59AD<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.843476210527996, 1.28540645998668, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_256", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUKIT BATOK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> E14204E5225118FF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.749118394188997, 1.34840537590496, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_257", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUKIT BATOK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 400A184FD3289B7A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.749973990257999, 1.34956107535244, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_258", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUKIT GOMBAK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 86F244E67822A799<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.751726614847001, 1.35906497975184, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_259", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUKIT GOMBAK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 09DD5C2C18DD73D5<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.752076389375006, 1.35906984624156, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_260", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUKIT GOMBAK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> ED8947B8EAD1722E<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.751950990525998, 1.35929785281919, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_261", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BOON LAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> D64646CF4B4055D8<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.706145547966997, 1.33842069565789, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_262", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BOON LAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> E67002E356755554<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.705955152610997, 1.33873810873339, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_263", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BOON LAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> F72B433FA6426C66<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.705408994969005, 1.33827998808197, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_264", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LAKESIDE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 577ECF5E707DE228<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.721712827003003, 1.34430416996866, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_265", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LAKESIDE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> DA7033E23CE2B741<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.721075412743005, 1.34408145751948, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_266", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KRANJI MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 20E6B767B2F69FB8<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.761754685561002, 1.42512594915704, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_267", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUKIT PANJANG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 09D276CE9D28C5F6<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.763063555247001, 1.37802038374966, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_268", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUKIT PANJANG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> E6C3D8E13B430D8D<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.763178520546006, 1.3778632485676, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_269", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SAMUDERA LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 5773D3B5DB9A561F<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.901911509626999, 1.41586536048285, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_270", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SAMUDERA LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 4D74C24533C50685<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.902361560111004, 1.41590585709171, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_271", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TECK LEE LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 3025BE9395030FE0<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.906781529506006, 1.4128757347357, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_272", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TECK LEE LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> B648DCD0478F77B3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.906510789934003, 1.41292900309077, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_273", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SAM KEE LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> D716A4040285BEB9<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.905038571004994, 1.40970250004176, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_274", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PETIR LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> B0600A1212F651AE<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.766793014963, 1.37760322809516, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_275", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PENDING LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 17E89960BD47612A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.771327842296998, 1.37629711719364, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_276", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BANGKIT LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> B7DF61CC7C6C3B13<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.772590574209005, 1.37985334676455, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_277", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> FAJAR LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> A324402CF624723A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.770675518445003, 1.38446507117965, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_278", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SEGAR LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 54BFE6EB924CBA6F<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.769409914801997, 1.38781155599523, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_279", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> JELAPANG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 45CDB0D9BDC73079<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.764676792844995, 1.38683269953093, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_280", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TAMPINES MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit F<\/td> <\/tr>
INC_CRC<\/th> 2E179BE5B3B6B091<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.942653681877999, 1.35419392760642, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_281", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> GEYLANG BAHRU MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 31AEB6AC99986A23<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.871555607568993, 1.32156169874025, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_282", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TAMPINES EAST MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> CBB2A963BF33C276<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.954540440781003, 1.35646076166742, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_283", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHOA CHU KANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 51E0066A5AD1C4F1<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.744557135367998, 1.38543128087598, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_284", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ORCHARD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 3<\/td> <\/tr>
INC_CRC<\/th> 9C4A361AF93F75D2<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.832770796508001, 1.30416113765593, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_285", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ORCHARD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 7<\/td> <\/tr>
INC_CRC<\/th> 4E4D642287D1546E<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.832171601238997, 1.30316753447888, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_286", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SOMERSET MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 87BD98DB1E154EDA<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.838458985163996, 1.30076651877174, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_287", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> DHOBY GHAUT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 348F2D3D9B9B7760<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.846787971786, 1.29844509204817, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_288", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> DHOBY GHAUT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> BBEA402CB9EF9C2E<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.845229558929006, 1.29905589070891, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_289", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> DHOBY GHAUT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> F3513EFAD04F7A68<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.845372294230003, 1.29974847066982, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_290", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> DHOBY GHAUT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit F<\/td> <\/tr>
INC_CRC<\/th> 3DC596781F39163C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.845842318018001, 1.29963489191106, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_291", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUGIS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 9A6B839F19EEBCD4<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.855685703914006, 1.30000694069987, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_292", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CITY HALL MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 762708380AC6662A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.853020413550993, 1.29322711034183, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_293", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CITY HALL MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 16ABA07E07EB8482<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.851960217745997, 1.29309991857995, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_294", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUGIS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 5BA6737A900E594D<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.856336627673002, 1.3007821987657, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_295", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUGIS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> A06B8C4EF9D0D3CF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.855924081460998, 1.30120408956464, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_296", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> OUTRAM PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> 9240996FD39C6AB0<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.838657701711995, 1.2816024282435, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_297", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> OUTRAM PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> E6EE8657F042CAA7<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.838934837216996, 1.28167534568857, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_298", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TANJONG PAGAR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> B6A65715434862A9<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.846544590473997, 1.2766717422527, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_299", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TANJONG PAGAR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 1052749762F1E1E3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.844834014209994, 1.27640850073994, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_300", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TANJONG PAGAR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 44F1B6273F87FEDF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.846533557963994, 1.27608922999502, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_301", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TANJONG PAGAR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 8B6F9D10513EFA49<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.846908800204005, 1.27606482826343, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_302", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> RAFFLES PLACE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit H<\/td> <\/tr>
INC_CRC<\/th> 3363214AF138AD7A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.851621715866003, 1.28525828120125, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_303", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> RAFFLES PLACE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> 40F9660EB1C4C12E<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.851522595155004, 1.28321158212436, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_304", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> RAFFLES PLACE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> F5DECEDB9FFE5F33<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.851479978298997, 1.28460687453702, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_305", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> RAFFLES PLACE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit G<\/td> <\/tr>
INC_CRC<\/th> 229B46DF8A1250CC<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.851478131996998, 1.28501689730178, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_306", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> RAFFLES PLACE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 7908CDF860503E38<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.851438353657997, 1.28412514770369, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_307", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> RAFFLES PLACE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> BDC3B51F0318BD2C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.851353214561996, 1.28364139087742, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_308", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> DHOBY GHAUT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 94631C7F11FCE747<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.845030131863993, 1.29993066561743, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_309", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> OUTRAM PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 4<\/td> <\/tr>
INC_CRC<\/th> 7A26F4DA0D6151ED<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.840386787095994, 1.28021335386912, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_310", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> OUTRAM PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 5<\/td> <\/tr>
INC_CRC<\/th> C6452A7F824358BC<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.839549241441006, 1.2789469557329, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_311", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> OUTRAM PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 6<\/td> <\/tr>
INC_CRC<\/th> CBF6275E32E848D8<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.838537251968006, 1.27905123851202, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_312", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CLARKE QUAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 4217F1A02B8B47A7<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.846665833854999, 1.28938385187247, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_313", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CLARKE QUAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit F<\/td> <\/tr>
INC_CRC<\/th> 18FD71C7FA6C0E2A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.847129742733003, 1.28940556680266, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_314", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CLARKE QUAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> BC3B9F37FEEA2F7D<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.846064543772997, 1.28689878783571, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_315", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CLARKE QUAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> E4C1DE41B6ED8311<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.847032643299002, 1.28900018307139, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_316", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHINATOWN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 872CCBBC52D205A8<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.842812853583993, 1.2846748973681, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_317", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHOA CHU KANG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> C3478FBF9D9DA5A3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.744595143026004, 1.38497966418718, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_318", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHINATOWN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> A5191DE73F930CFE<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.844428119404995, 1.28504408060892, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_319", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> QUEENSTOWN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 2B9707C0F0ECEFC8<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.806182777133003, 1.29424726215095, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_320", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> REDHILL MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 08AE2164E30DF4A7<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.816994458552998, 1.28937070467351, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_321", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> REDHILL MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> C665A340A5A6CBEC<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.817249373080003, 1.28948587536099, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_322", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> COMMONWEALTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 07C70283FD8BEFD4<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.798057882031003, 1.30275277699775, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_323", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> COMMONWEALTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 2DDDE6ED2CFECBB8<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.797958292266003, 1.30264816140773, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_324", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TIONG BAHRU MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> B5B30BE2B81082CE<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.826990595146, 1.28575945589882, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_325", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TIONG BAHRU MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 6D56F8B0A81292DB<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.827496413393007, 1.28636194139043, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_326", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HARBOURFRONT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> B43EC60E1D8817B8<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.822531651625994, 1.26525988373469, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_327", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HARBOURFRONT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> F2A67B74844A3E35<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.820508811132001, 1.2651546823432, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_328", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ORCHARD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 4<\/td> <\/tr>
INC_CRC<\/th> 7055832BEE42BDA7<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.832039800882001, 1.30456047411925, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_329", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ORCHARD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> EA3B90BA295EFD84<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.832524259378999, 1.30489217813715, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_330", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> NEWTON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 3A315A2361D88723<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.837881325390995, 1.31259779668808, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_331", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> NEWTON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> B75D0390F4B7FDF5<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.838219069361003, 1.31207546212127, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_332", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ORCHARD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> 5EA01AD2A9EE377D<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.832619611515, 1.30435439856042, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_333", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LAVENDER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 67781AFE7035C87A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.863043062903003, 1.30716946047274, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_334", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LAVENDER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 79E658884200F5CF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.862650316623004, 1.30761853913167, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_335", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KALLANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 6CF9B446E7CA4054<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.871587075861001, 1.3117817705438, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_336", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KALLANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> C4FA9AF262FF43C1<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.871730564168004, 1.31154048297553, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_337", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ALJUNIED MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 7C42B43D848F246C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.882472887782001, 1.31648793030408, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_338", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ALJUNIED MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 045EB7203A0A5B4F<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.882496650457, 1.31623848534471, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_339", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LITTLE INDIA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 6ABD7125ED6CAD9B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.848985089710993, 1.30656355535778, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_340", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> FARRER PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 4A1DAEFD59468463<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.854763767755998, 1.3135439659757, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_341", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> FARRER PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> 6F1834F3D5171B51<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.852650970680003, 1.31188353723816, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_342", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> FARRER PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit F<\/td> <\/tr>
INC_CRC<\/th> F1BDA4510E572B33<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.853199391141999, 1.31142204648133, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_343", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PROMENADE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 9EAAD1597236079B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.860673611302005, 1.29171166099886, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_344", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TOA PAYOH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 4345E66C22E984AC<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.847723804314001, 1.33237644203021, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_345", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LAKESIDE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 33F25E28EB4DD76D<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.720448529392996, 1.3439833412622, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_346", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHINESE GARDEN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 34270BC7D85E5169<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.733393135762995, 1.34156582633258, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_347", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHINESE GARDEN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> F57ABC73B061CF8C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.732741825545006, 1.34198208956493, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_348", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHINESE GARDEN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> D5745B5A724E8909<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.732220154828994, 1.34243874323998, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_349", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> JURONG EAST MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 62C94126CEE417F0<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.742762081652998, 1.33274868462584, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_350", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> JURONG EAST MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> C166FA1DA983F4C3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.741759898308999, 1.33398960393819, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_351", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> JURONG EAST MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 133799CC6DC30D46<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.742640162982994, 1.33252623564817, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_352", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> YEW TEE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 35EAF4829E8E58D0<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.747329880034997, 1.39806776806003, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_353", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> YEW TEE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 3C305BEEF18066B9<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.747195166471002, 1.39765547935269, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_354", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> YEW TEE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> A5C5202910FC0B3E<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.747431893249995, 1.39700077173066, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_355", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> YEW TEE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 992342EAF6984144<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.74711143099999, 1.39727251197228, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_356", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUKIT GOMBAK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> DE40965F683CCE3E<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.752092995698007, 1.35869526126909, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_357", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KEAT HONG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> C7644F242A74A168<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.749226841606003, 1.37846496701683, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_358", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TECK WHYE LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> E0F222D52301D3A3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.753826102342003, 1.37656419493699, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_359", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PHOENIX LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> C7F6410B1E2A01E2<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.758252475106005, 1.37861406821397, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_360", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUKIT PANJANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 68EDD0201493E175<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.759597843573005, 1.38074511730578, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_361", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUANGKOK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 7C714ED058155F67<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230726173129<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.892883836731002, 1.3834097909899, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_362", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TELOK AYER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 0482FD5CBD7B912B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.848773328159993, 1.28249727503873, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_363", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ONE-NORTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 5C641090FA13AD51<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.787784810554001, 1.30007470288421, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_364", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KENT RIDGE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> AE7207C0705527D0<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.784490451682004, 1.29398478516701, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_365", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KENT RIDGE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> E895460A627947D4<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.784534656638996, 1.29321880284117, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_366", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LITTLE INDIA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> ADDF2D4CC49805FA<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.848999982240997, 1.30685473719087, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_367", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUKIT PANJANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 46B17181D8944278<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.762034360870999, 1.37876623763886, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_368", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHOA CHU KANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> AADCDA84B1CB7302<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.744560000291003, 1.38539999996952, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_369", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHOA CHU KANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 4DDA5EEBC0D64FFE<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.744470000052004, 1.38459999970902, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_370", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHOA CHU KANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> BFC5700660BC9DF6<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.744470000190006, 1.38572999956458, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_371", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHOA CHU KANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 10C24E69D8E231DD<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.744110000391998, 1.38536999970775, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_372", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHOA CHU KANG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> B31E5041452C3958<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.744620000447, 1.38499999972745, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_373", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> GUL CIRCLE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> F7C62DDD2A73BCC1<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.660444143858996, 1.31903226656851, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_374", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> GUL CIRCLE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> E5B02C31AEAEB829<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.659434945517006, 1.31883718313345, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_375", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TUAS CRESCENT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 6395E3FC8B63D35B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.648958741266995, 1.32076381711222, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_376", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TUAS CRESCENT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> D98379EE652ED92E<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.649286789108999, 1.32124359639868, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_377", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TUAS WEST ROAD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 7C93D36D12D462DA<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.639284344708997, 1.32987242413926, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_378", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TUAS WEST ROAD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 9982881E8A76BEDD<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.639790711295007, 1.33018233023207, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_379", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TUAS LINK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 124B3EF02A2AD8EF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.637245720021994, 1.34042689920514, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_380", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TUAS LINK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 4EB65BBF499F04BE<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.636840667474004, 1.34094007226858, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_381", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> EXPO MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> E79BB6D2D2002821<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.962161021864006, 1.33595097171569, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_382", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> EXPO MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 7559EFD8098C1D02<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.963100681762, 1.33483488834327, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_383", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MACPHERSON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> 5285256719923C73<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.888615211677006, 1.32619277755048, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_384", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> EXPO MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> 906C9579A92CF7A4<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.962123376874004, 1.33486331350548, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_385", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MACPHERSON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> DB18BEBDD5326092<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.888454834376006, 1.32514545867968, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_386", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> EXPO MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit G<\/td> <\/tr>
INC_CRC<\/th> 0C14825AD577B2E3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.963049007432005, 1.33501932038682, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_387", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> EXPO MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 8F171DDEC2A3C476<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.961836795083997, 1.33548282216596, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_388", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> EXPO MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit F<\/td> <\/tr>
INC_CRC<\/th> 6E43F01A7FD410B2<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.962865746280002, 1.33471194824107, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_389", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SPRINGLEAF MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> CAB3151915361262<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.818390607137999, 1.39782080405751, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_390", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SPRINGLEAF MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 3<\/td> <\/tr>
INC_CRC<\/th> 8D6ED46D4B845735<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.818081623801007, 1.39768417887856, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_391", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> WOODLANDS NORTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> 469EE4BF80F069CC<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.785429080675002, 1.44793650249651, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_392", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> WOODLANDS NORTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> 72D10D55C51FC3F5<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.785102271425004, 1.44904729970725, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_393", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> WOODLANDS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 5<\/td> <\/tr>
INC_CRC<\/th> 372C516598D98235<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.788964328112996, 1.43584393593589, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_394", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> WOODLANDS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 7<\/td> <\/tr>
INC_CRC<\/th> AD7053030CB8BF9F<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.787976768822006, 1.43449552583778, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_395", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> WOODLANDS SOUTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> 45D78AD571DA0977<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.793027463345993, 1.4273020172478, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_396", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> WOODLANDS SOUTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> E9A31A80A570C976<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.793413692732003, 1.42760496413455, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_397", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> WOODLANDS SOUTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 3<\/td> <\/tr>
INC_CRC<\/th> 6518624D5602BB64<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.794560497858001, 1.42742676003562, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_398", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> WOODLANDS SOUTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 4<\/td> <\/tr>
INC_CRC<\/th> 2F1F88360B17E436<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.794423831787, 1.42668424080276, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_399", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SPRINGLEAF MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> 122980157DCB57C6<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.818003414954006, 1.39878724836535, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_400", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LENTOR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> 1D02FE80AE160F4F<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.835823452024002, 1.38589099008684, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_401", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LENTOR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> AD8355986951011E<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.835359976701, 1.38540982990749, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_402", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LENTOR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 3<\/td> <\/tr>
INC_CRC<\/th> 26CD4A0F04FEAE7A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.837398080029004, 1.38460195423691, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_403", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LENTOR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 4<\/td> <\/tr>
INC_CRC<\/th> 872548D8089E5C63<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.837338660064006, 1.3836277515433, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_404", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LENTOR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 5<\/td> <\/tr>
INC_CRC<\/th> 1DBB7D760352881C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.836839532696004, 1.38416237536177, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_405", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MAYFLOWER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 3<\/td> <\/tr>
INC_CRC<\/th> 03D1FF1990E162EB<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.837461041245007, 1.37353209209743, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_406", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MAYFLOWER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> 4F085EF4AAB00599<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.837031676997995, 1.37371976104919, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_407", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MAYFLOWER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> 4C504570F6BC8EC3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.836716751309993, 1.37270397234703, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_408", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MAYFLOWER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 7<\/td> <\/tr>
INC_CRC<\/th> 0C15214EBA575804<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.836284967240005, 1.37137730761848, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_409", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MAYFLOWER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 4<\/td> <\/tr>
INC_CRC<\/th> AE51C872434B37D7<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.836795978097001, 1.37127632290154, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_410", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MAYFLOWER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 5<\/td> <\/tr>
INC_CRC<\/th> 728784A5D5FEAA7A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.836760326586997, 1.37077733815485, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_411", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MAYFLOWER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 6<\/td> <\/tr>
INC_CRC<\/th> 64DA1E7B1619F148<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.836308734745998, 1.37089614419322, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_412", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BRIGHT HILL MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> CFB9350F44E8991A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.833635413994003, 1.36403718216562, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_413", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BRIGHT HILL MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> F273E9D550B06062<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.833510631568998, 1.36328276235517, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_414", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BRIGHT HILL MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 4<\/td> <\/tr>
INC_CRC<\/th> BC4A442B12F99E85<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.831953829452004, 1.3631639565255, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_415", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BRIGHT HILL MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 3<\/td> <\/tr>
INC_CRC<\/th> 2A45076ED986B275<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.832375711054993, 1.36218380484981, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_416", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> UPPER THOMSON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> 3EA737829473A972<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.831833009004001, 1.35573657470655, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_417", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> UPPER THOMSON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> 02A569EE1B9EC73B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.831916196891996, 1.35483364468235, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_418", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> UPPER THOMSON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 5<\/td> <\/tr>
INC_CRC<\/th> 2313E9492AA32861<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.832635178250001, 1.35441782186373, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_419", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> UPPER THOMSON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 3<\/td> <\/tr>
INC_CRC<\/th> A00E2C99CAD73E80<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.833924590606003, 1.35414456637885, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_420", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> UPPER THOMSON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 4<\/td> <\/tr>
INC_CRC<\/th> 7A835D396BF0703F<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.833793867314, 1.35350301029652, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_421", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CALDECOTT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> 00BCCDD48A0A19AB<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.840387499238005, 1.33825972994181, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_422", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CALDECOTT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 3<\/td> <\/tr>
INC_CRC<\/th> 857DEE03468202D9<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.840464745299002, 1.33783202317926, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_423", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CALDECOTT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 4<\/td> <\/tr>
INC_CRC<\/th> 907574C903E3C5B1<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.839882429751995, 1.33675087511065, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_424", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CANBERRA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> DD34E7FB97694745<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.829254643946996, 1.44351133884481, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_425", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CANBERRA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 749D0975B17D266E<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.829527975860998, 1.44363014106056, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_426", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CANBERRA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> B2A3B66D0D93D04A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.829700293336998, 1.44280446541205, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_427", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CANBERRA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 5CC317629EEEF874<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.829961741209004, 1.44293514818295, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_428", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CANBERRA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> 9BEA4511424691E9<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.830116233173001, 1.44325591355701, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_429", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> WOODLANDS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 2<\/td> <\/tr>
INC_CRC<\/th> A981B455F405BCC2<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.786508083762001, 1.43667311468753, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_430", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> WOODLANDS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 3<\/td> <\/tr>
INC_CRC<\/th> ABE9AA34AD7D1F14<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.787108225411004, 1.43724336703986, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_431", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> WOODLANDS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 4<\/td> <\/tr>
INC_CRC<\/th> D82504FE62821345<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.788005465669002, 1.43754037357975, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_432", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> WOODLANDS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 1<\/td> <\/tr>
INC_CRC<\/th> 5CB3F601FBDF6CC4<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.785735624465005, 1.43669687524624, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_433", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> WOODLANDS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 6<\/td> <\/tr>
INC_CRC<\/th> F7F55451430108C4<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.789089109751998, 1.43481517513889, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_434", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> WOODLANDS SOUTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit 5<\/td> <\/tr>
INC_CRC<\/th> DADA67E3382ACDE0<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.794365211019993, 1.42584338690928, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_435", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> FERNVALE LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 92D152D45E445F84<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.876261653892001, 1.3921582676261, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_436", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUKIT PANJANG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> C1FCA2C604034AB0<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.762722523555993, 1.37792792775255, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_437", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUKIT PANJANG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 0D013B4A269EF17B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.763251851955999, 1.37802410264834, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_438", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TANAH MERAH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> A923EE234A94C8FF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.945723041581999, 1.32706127581436, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_439", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TANAH MERAH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 36F95FB516EC35CE<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.945794727928998, 1.32685774838818, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_440", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CLEMENTI MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> A9519BF912A2133C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.764982102594999, 1.31537355787444, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_441", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CLEMENTI MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> B7D91BDACAA183E1<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.765185566729002, 1.31546912943168, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_442", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUONA VISTA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> EE2D2107B28FC4C5<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.790449175302996, 1.30730945077024, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_443", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUONA VISTA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 95621469AB2856E4<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.790656619432994, 1.30719725705854, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_444", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUONA VISTA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> F92A8D113B600232<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.790599390370005, 1.30691288861046, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_445", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> QUEENSTOWN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> C54B2E9241AC7587<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.806311472757997, 1.29432990890605, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_446", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHENG LIM LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> FC07F81DEF01BAAF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.893684874277, 1.39637321823541, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_447", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHENG LIM LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 1BE9F4E72D049751<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.893920331573, 1.3961869711233, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_448", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> THANGGAM LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 16EC7E9FB469AE26<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.875566364381996, 1.39719803592397, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_449", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> THANGGAM LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 256206889802450A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.875686836957996, 1.39719245833865, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_450", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KUPANG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 62EDCA2810CF78CE<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.881139169798999, 1.39828419776009, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_451", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KUPANG LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> EC95D6994C36C7C2<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.881137936206997, 1.39815879147241, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_452", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> FARMWAY LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> B5FE598CC9473CDE<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.889407447881993, 1.39720034457508, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_453", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> FARMWAY LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> C66585DE1453A1EF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.889115016847995, 1.39713347750584, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_454", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LAYAR LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 213B4B13C275292B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.880159730518997, 1.39202617213173, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_455", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LAYAR LRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> F757F13626617675<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.880142799143002, 1.39214453741467, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_456", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KRANJI MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> E0BD26E3F5EE18B9<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.761940606096005, 1.42485264466106, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_457", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KRANJI MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 91BDDFEBA5A15383<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.762018515590995, 1.42473917121754, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_458", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MARSILING MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> BC10B89687EB57DF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.773820451036002, 1.43246952240006, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_459", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MARSILING MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> A4DF45D1ABCFAC02<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.774210493311998, 1.43280169435331, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_460", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PAYA LEBAR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> CC4D13D27CAEA2B1<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.892788324104998, 1.31821599215008, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_461", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PAYA LEBAR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 69CB616E4522ABA4<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.892217168632001, 1.31834746689885, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_462", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> YIO CHU KANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 896C97CCBA89A32A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.844645760434005, 1.38195362130605, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_463", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> YIO CHU KANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 03DE662B8A72F32A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.844834195491003, 1.3816444074307, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_464", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> YIO CHU KANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> F73C9CE1485EDFF0<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.844946847542005, 1.38154752053604, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_465", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ADMIRALTY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 887FE97DECFFEA05<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.800542458159995, 1.44059628565794, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_466", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ADMIRALTY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 071776EA2CE1E3E9<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.800989521917998, 1.44034566128304, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_467", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SEMBAWANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> A4391FC0AAA1EAAC<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.820109735757995, 1.44883731943313, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_468", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SEMBAWANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 3167E33222F7BAC9<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.819790204572001, 1.44876826032584, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_469", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> YISHUN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 4D6714260A96395A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.834783603183993, 1.42939716731595, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_470", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> YISHUN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 7CCB5AAD7A692ED6<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.834863485216999, 1.42910650744289, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_471", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KHATIB MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> BEC9777C2AF5693A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.832886913693997, 1.41754470685258, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_472", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KHATIB MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 0EB1742925CA5FD4<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.832922417009996, 1.41705821242698, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_473", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KHATIB MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> DFC9A990CD03CDD1<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.832706667742997, 1.41714341792972, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_474", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SEMBAWANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> A612A01DC4DD39AA<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.820401560291998, 1.44892733153759, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_475", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PASIR RIS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 5F3BC6B21D0848C7<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.949136940349007, 1.37288623635201, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_476", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PASIR RIS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> A801E2A1E34520C9<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.949333426644998, 1.37284196908053, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_477", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TAMPINES MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 6D821717AFC18096<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.944766312107006, 1.35376401254022, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_478", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TAMPINES MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> ACC2B4758E58EF1B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.944903957894994, 1.35339831264921, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_479", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHOA CHU KANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 2E2B70E0E2D25273<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.744517798771, 1.38573618540312, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_480", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LITTLE INDIA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 8A50DC395B46AA31<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.849704822933006, 1.30635155408624, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_481", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LITTLE INDIA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> 6710D2143B21969B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.850322159954999, 1.30742644439895, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_482", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> FARRER PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 173209DA7F23FABE<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.852974635237004, 1.31245360639306, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_483", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> FARRER PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 6551D0EB84199FBF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.853266824822001, 1.31191067869135, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_484", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> FARRER PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 360853AB3FB5F8E8<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.854772747377993, 1.31232690903703, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_485", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> FARRER PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit G<\/td> <\/tr>
INC_CRC<\/th> E130D0857A648E60<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.855500982372007, 1.31225903641299, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_486", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHANGI AIRPORT MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 18E22F13F5B553EB<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.987304579798007, 1.35722025606017, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_487", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ESPLANADE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit G<\/td> <\/tr>
INC_CRC<\/th> 2ACFF8F7FE329CCA<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.854920202439999, 1.29358640073634, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_488", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ESPLANADE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 37A435E4166C73B7<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.855855203771995, 1.29290433691952, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_489", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ESPLANADE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 651EA817751D16D3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.856175670935002, 1.29292718733646, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_490", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> RAFFLES PLACE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> D79CE3109CFB1331<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.851562535487005, 1.28363052072741, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_491", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> RAFFLES PLACE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit J<\/td> <\/tr>
INC_CRC<\/th> 244D66DE744BCD47<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.851296033430998, 1.28262623356678, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_492", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> RAFFLES PLACE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit F<\/td> <\/tr>
INC_CRC<\/th> 0172739C99613BF7<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.850960902092993, 1.28253857491919, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_493", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> RAFFLES PLACE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit I<\/td> <\/tr>
INC_CRC<\/th> 5783A6CCBAC00283<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.851433302399002, 1.28238230729746, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_494", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TANJONG PAGAR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> BD38C5FD98D816FF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.847095791197006, 1.27625910113258, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_495", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BENCOOLEN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 0DF43E9348A676BC<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.849560477590998, 1.29819940045567, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_496", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TAMPINES EAST MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> FFF4C9A7B530851C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.955704711378999, 1.35555317150178, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_497", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MATTAR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 6B8EB7C225C36578<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.882732067245001, 1.3272514140918, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_498", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TAMPINES MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> CFE16BC8ECCE4D1A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.942658810693999, 1.35585344476425, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_499", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> UPPER CHANGI MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 23F915FD4BA908AB<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.961328480538995, 1.34186119734213, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_500", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TAMPINES EAST MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 192449D843551047<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.955170014220997, 1.35558822639472, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_501", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> JALAN BESAR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> F845CB06D67E6A83<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.855244564615006, 1.30546727989327, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_502", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BEDOK NORTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> D120C83FD7AA7B80<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.918049823987005, 1.33512626621364, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_503", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> UPPER CHANGI MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> FC43DB54B0E61973<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.960960630190002, 1.3420065422681, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_504", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BEDOK NORTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 472D306FE205DA62<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.919062823448996, 1.33416607444721, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_505", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BENDEMEER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 5EC1075AF445471C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.863219231431003, 1.3134807250256, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_506", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TAMPINES WEST MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 6F2A56A935D2673D<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.938196740006006, 1.34563058761391, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_507", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> UBI MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 7CB7D918F6B5E915<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.898585570915998, 1.32983077067473, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_508", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> FORT CANNING MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> AF446178B7F1A586<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.844425031564995, 1.29283027594572, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_509", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BEDOK NORTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 4D84939055694394<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.919134302662002, 1.33437249020327, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_510", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MATTAR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 63BE655DB172CD4E<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.883748387313005, 1.32646352216707, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_511", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> FORT CANNING MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> FC551044CAEAB201<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.844170034197006, 1.29240609557825, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_512", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> UBI MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> CAE96AD9A152877B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.899876690856999, 1.32995082828977, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_513", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> UPPER CHANGI MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 9EAAA93AC64D4C2B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.961617273079995, 1.34199266734225, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_514", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> UPPER CHANGI MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> D12B752513687695<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.961476268425997, 1.34103767912256, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_515", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TAMPINES EAST MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 99EACB07EB87275F<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.955717437922004, 1.35697019355667, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_516", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TANJONG PAGAR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit F<\/td> <\/tr>
INC_CRC<\/th> 39E16699C1976560<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.846927580235004, 1.27737948810714, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_517", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TANJONG PAGAR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit G<\/td> <\/tr>
INC_CRC<\/th> E1CC299B43F4C1C1<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.846953147543999, 1.27778454036503, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_518", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TANJONG PAGAR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit H<\/td> <\/tr>
INC_CRC<\/th> E922D2F204D2DA84<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.846445088411997, 1.27545090434532, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_519", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ESPLANADE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit E<\/td> <\/tr>
INC_CRC<\/th> 5A8D40F4CDB7B0AD<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.855567841069004, 1.29312881366023, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_520", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ESPLANADE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit F<\/td> <\/tr>
INC_CRC<\/th> C6AC4E01D3816D01<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.855104632110994, 1.29381950731267, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_521", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ESPLANADE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 63956E6E46ECE3E0<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.855833755790002, 1.29262374346665, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_522", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PROMENADE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> BCC2873D65F6A92C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.860136884401996, 1.29386208787626, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_523", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> NICOLL HIGHWAY MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> CE8447F8465B2FF7<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.863505955242999, 1.30016968970884, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_524", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> STADIUM MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 402BA10E05281F64<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.876226233975004, 1.30337022602025, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_525", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> STADIUM MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> CA5A16272BE38BEE<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.874399988288999, 1.3025110877234, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_526", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MOUNTBATTEN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 187A879D30D2F951<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.883248292703996, 1.30604592566075, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_527", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MOUNTBATTEN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> D4AA144302569724<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.882597535734007, 1.30675271022847, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_528", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> DAKOTA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> A66FCFFDD49C15D3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.889307215344004, 1.30881418752426, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_529", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> DAKOTA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> AB5D405E46C647FB<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.887979337681998, 1.30809675040545, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_530", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PAYA LEBAR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 0EA7336E0E7F32CF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.891721121591999, 1.31814928543131, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_531", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PAYA LEBAR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 786C0A6632548330<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.892077699246002, 1.31658771946928, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_532", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> PROMENADE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> DF287781847E65C1<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.860236484111994, 1.29410275636151, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_533", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KHATIB MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 67A576351EE1E7DB<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.833231020038994, 1.41786903711686, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_534", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SIMEI MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> FE7E73B9E2A00E1D<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.953818676297004, 1.34266179453371, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_535", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BEDOK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> D5D6C1E315FDB9D7<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.929404279688995, 1.32407464586546, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_536", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUGIS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 1AC0E726E51FF630<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.856890654867001, 1.29907884888673, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_537", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CITY HALL MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 6F31D6D44E1CD68C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.852980287707993, 1.29304184790826, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_538", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> QUEENSTOWN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 45F7FB42BEF80E73<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.805584729895997, 1.2954462560701, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_539", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> QUEENSTOWN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 323A1F8C0515C318<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.805492204887997, 1.29538293052613, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_540", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> COMMONWEALTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 4759AD8699CAAFEB<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.798778572605002, 1.30207704580319, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_541", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> COMMONWEALTH MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 5C10631FF88A2A31<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.798720258771993, 1.30201271935133, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_542", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CLEMENTI MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 1BCD78C2E2F0AEBA<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.765570116183994, 1.314078414345, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_543", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CLEMENTI MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> B42D779AB82F42CF<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.765749815719005, 1.31416229810691, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_544", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> JURONG EAST MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> F6949D2149A78ED9<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.742298193306993, 1.33358133108919, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_545", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ANG MO KIO MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> 2FA1606517F7F394<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.849824572480003, 1.36988237526817, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_546", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SOMERSET MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 947DEBE26C775910<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.838765584281006, 1.30043622058993, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_547", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SOMERSET MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit D<\/td> <\/tr>
INC_CRC<\/th> C8C03BAA2804D6D1<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.839734148085, 1.30024113867986, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_548", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MARINA SOUTH PIER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> F068727788589ACD<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.862330050970002, 1.27052998951863, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_549", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> MARINA SOUTH PIER MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> C73EE0EE2FBED722<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.863579669763993, 1.27143783716222, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_550", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHINATOWN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit G<\/td> <\/tr>
INC_CRC<\/th> 6EAFAD60E5DC5EB3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.844458541730006, 1.28473608363703, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_551", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> CHINATOWN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit F<\/td> <\/tr>
INC_CRC<\/th> F311BD73BF790D1C<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.845462531796002, 1.28427477607278, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_552", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BUKIT PANJANG MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> BE5F7B68E04895BE<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.761370504957, 1.37861889401251, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_553", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> HILLVIEW MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> 4A8EA2D66E8ECDA8<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.767688290102996, 1.36247423794507, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_554", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BEAUTY WORLD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> D320410A69021932<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.775984296226, 1.3416961499328, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_555", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BEAUTY WORLD MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> 7E2D6AAB2D36BBBA<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.775761545625997, 1.33998187378458, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_556", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> KING ALBERT PARK MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> DAE9E8760965D45A<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.784561584781002, 1.33597604551556, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_557", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> SIXTH AVENUE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 10CC04828E7C82D8<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.796848178228998, 1.33152130143572, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_558", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> TAN KAH KEE MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> A5B4AAE12B40643B<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.807800873706995, 1.32614615882549, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_559", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> BOTANIC GARDENS MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 1D8ACE3D804EFC33<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.815914145791993, 1.32268461233639, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_560", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> NEWTON MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit C<\/td> <\/tr>
INC_CRC<\/th> D977970135729EB8<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.838242381634998, 1.31361726914981, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_561", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> LITTLE INDIA MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit F<\/td> <\/tr>
INC_CRC<\/th> 5617CFEE626840BB<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.848304399135998, 1.30768353655885, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_562", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> ROCHOR MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit B<\/td> <\/tr>
INC_CRC<\/th> 5F1E6F573314E1E3<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.853104335648993, 1.30421477703374, 0.0 ] } }, +{ "type": "Feature", "properties": { "Name": "kml_563", "Description": "
Attributes<\/em><\/th><\/tr>
STATION_NA<\/th> DOWNTOWN MRT STATION<\/td> <\/tr>
EXIT_CODE<\/th> Exit A<\/td> <\/tr>
INC_CRC<\/th> AD2F8B7AE573BE63<\/td> <\/tr>
FMEL_UPD_D<\/th> 20230127204435<\/td> <\/tr><\/table><\/center>" }, "geometry": { "type": "Point", "coordinates": [ 103.852646560010996, 1.27977345528297, 0.0 ] } } +] +} diff --git a/data-raw/stations.R b/data-raw/stations.R new file mode 100644 index 0000000..496211b --- /dev/null +++ b/data-raw/stations.R @@ -0,0 +1,15 @@ +## code to prepare `DATASET` dataset goes here + +library(terra) + +# Land Transport Authority. (2019). LTA MRT Station Exit (GEOJSON) (2024) +# [Dataset]. data.gov.sg. Retrieved December 10, 2024 from +# https://data.gov.sg/datasets/d_b39d3a0871985372d7e1637193335da5/view + +mrt_vect <- vect("data-raw/LTAMRTStationExitGEOJSON.geojson") + + +stations <- geom(mrt_vect)[,c("x", "y")] + + +usethis::use_data(stations, overwrite = TRUE) diff --git a/data/stations.rda b/data/stations.rda new file mode 100644 index 0000000..5ed2775 Binary files /dev/null and b/data/stations.rda differ diff --git a/man/figures/README-unnamed-chunk-10-1.png b/man/figures/README-unnamed-chunk-10-1.png index 66d9321..f933f5a 100644 Binary files a/man/figures/README-unnamed-chunk-10-1.png and b/man/figures/README-unnamed-chunk-10-1.png differ diff --git a/man/figures/README-unnamed-chunk-12-1.png b/man/figures/README-unnamed-chunk-12-1.png index dca9a10..f7544c3 100644 Binary files a/man/figures/README-unnamed-chunk-12-1.png and b/man/figures/README-unnamed-chunk-12-1.png differ diff --git a/man/figures/README-unnamed-chunk-6-1.png b/man/figures/README-unnamed-chunk-6-1.png index 510918b..3212116 100644 Binary files a/man/figures/README-unnamed-chunk-6-1.png and b/man/figures/README-unnamed-chunk-6-1.png differ diff --git a/man/figures/README-unnamed-chunk-7-1.png b/man/figures/README-unnamed-chunk-7-1.png index 9c9a778..d632d47 100644 Binary files a/man/figures/README-unnamed-chunk-7-1.png and b/man/figures/README-unnamed-chunk-7-1.png differ diff --git a/man/figures/README-unnamed-chunk-9-1.png b/man/figures/README-unnamed-chunk-9-1.png new file mode 100644 index 0000000..09f526d Binary files /dev/null and b/man/figures/README-unnamed-chunk-9-1.png differ diff --git a/man/stations.Rd b/man/stations.Rd new file mode 100644 index 0000000..bf26b71 --- /dev/null +++ b/man/stations.Rd @@ -0,0 +1,27 @@ +% Generated by roxygen2: do not edit by hand +% Please edit documentation in R/stations.R +\docType{data} +\name{stations} +\alias{stations} +\title{Singapore MRT and LRT data} +\format{ +\subsection{\code{stations} A data frame with 563 rows and 2 columns:}{ + +\describe{ +\item{x}{longitude} +\item{y}{latitude} +} +} +} +\source{ +Land Transport Authority. (2019). LTA MRT Station Exit (GEOJSON) +(2024) Dataset. data.gov.sg. Retrieved December 10, 2024 from +\url{https://data.gov.sg/datasets/d_b39d3a0871985372d7e1637193335da5/view} +} +\usage{ +stations +} +\description{ +Locations of all MRT and LRT station exits in Singapore. +} +\keyword{datasets}