Skip to content

Instantly share code, notes, and snippets.

@artidataio
Last active September 4, 2017 16:35
Show Gist options
  • Save artidataio/2fff08f5cc74a7aa8aca0aefa5b427ad to your computer and use it in GitHub Desktop.
Save artidataio/2fff08f5cc74a7aa8aca0aefa5b427ad to your computer and use it in GitHub Desktop.
Dynamic Choropleth
license:mit
<!doctype html>
<html>
<head>
<title>Singapore Planning Area</title>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script src="https://d3js.org/d3-geo.v1.min.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="tooltip" class="hidden">
<p><span id="value"></p>
</div>
<script>
var margin = {top: 50, right: 30, bottom: 10, left: 30},
padding = {top: 0, right: 0, bottom: 0, left: 0},
vizWidth = 960,
vizHeight = 500,
plotWidth = vizWidth - margin.left - margin.right,
plotHeight = vizHeight - margin.top - margin.bottom,
panelWidth = plotWidth - padding.left - padding.right,
panelHeight = plotHeight - padding.top - padding.bottom;
var color = {yellow: "#ffe74c", red: "#ff5964", white:"#ffffff",
green: "#6bf178", blue: "#35a7ff"};
var viz = d3.select("body").append("svg")
.attr("width", vizWidth)
.attr("height", vizHeight);
// Creating the Slider
var slider = viz.append("g")
.attr("class", "slider")
.attr("transform", "translate(" + margin.left + "," + margin.top / 2 + ")");
var x = d3.scaleLinear()
.domain([0, 180])
.range([0, plotWidth])
.clamp(true);
slider.append("line")
.attr("class", "track")
.attr("x1", x.range()[0])
.attr("x2", x.range()[1])
.select(function() { return this.parentNode.appendChild(this.cloneNode(true)); })
.attr("class", "track-inset")
.select(function() { return this.parentNode.appendChild(this.cloneNode(true)); })
.attr("class", "track-overlay")
.call(d3.drag()
.on("start.interrupt", function() { slider.interrupt(); })
.on("start drag", function() { hue(x.invert(d3.event.x)); }));
slider.insert("g", ".track-overlay")
.attr("class", "ticks")
.attr("transform", "translate(0," + 18 + ")")
.selectAll("text")
.data(x.ticks(10))
.enter().append("text")
.attr("x", x)
.attr("text-anchor", "middle")
.text(function(d) { return d; });
var handle = slider.insert("circle", ".track-overlay")
.attr("class", "handle")
.attr("r", 9);
slider.transition() // Gratuitous intro!
.duration(750)
.tween("hue", function() {
var i = d3.interpolate(0, 70);
return function(t) { hue(i(t)); };
});
function hue(h) {
handle.attr("cx", x(h));
viz.style("background-color", d3.hsl(h, 0.8, 0.8));
}
var plot = viz.append("g")
.attr("class","plot")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
var panel = plot.append("g")
.attr("class","panel")
.attr("transform", "translate(" + padding.left + "," + padding.top + ")");
var div = d3.select("body").append("div")
.attr("class", "tooltip")
.style("display", "none");
//Important Functions
function drawTooltip(d){
var xPosition = d3.event.pageX;
var yPosition = d3.event.pageY;
d3.select("#tooltip")
.classed("hidden",false)
.style("left", xPosition + "px")
.style("top", yPosition + "px")
.text(d.properties.PLN_AREA_N);
}
function mouseout() {
d3.select("#tooltip").classed("hidden", true);
d3.select(this).classed("highlight",false)
}
d3.json("sg plan area 20170903.json", function(sg) {
var projection = d3.geoMercator().fitSize([panelWidth,panelHeight],sg),
geoPath = d3.geoPath(projection);
var areas = panel.selectAll("path")
.data(sg.features)
.enter()
.append("path")
.attr("d",geoPath)
.classed("area",true)
.on('mouseover', function(d) {
d3.select(this).classed("highlight",true);
drawTooltip(d);})
.on('mouseout',mouseout);
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:EPSG::4267"}}, "features": [
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.84137181578335,1.274154612189558],[103.84059677693187,1.277547174182557],[103.83924168432056,1.28079201197501],[103.83641294546089,1.282871529063424],[103.83548521013135,1.283821776988832],[103.83475827317226,1.285854846795146],[103.83500221153854,1.287269366497246],[103.83637083205484,1.28686010484149],[103.83865960090357,1.288822094458808],[103.84008679689519,1.28919114698429],[103.84170907982994,1.288104020492929],[103.84313311573634,1.287781778420587],[103.8471833121047,1.285434994166851],[103.84965645450026,1.283795769290444],[103.84852300612415,1.282209612543466],[103.84918786484916,1.281814239145818],[103.84758249171284,1.279527746450233],[103.84523255435997,1.280804517389068],[103.844051122218,1.280614025398557],[103.84518638710388,1.279160431908712],[103.84451818814986,1.275510861139887],[103.8432975477894,1.275693739635042],[103.8430599192734,1.274560916714045],[103.84188838539202,1.274816704252389],[103.84137181578335,1.274154612189558]]]},"properties":{"PLN_AREA_N":"OUTRAM"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.8515644182791,1.269263145564809],[103.85156581997522,1.268105448048998],[103.8515706227875,1.264140650370849],[103.85066952401387,1.263041793395822],[103.85076015827286,1.262940725472663],[103.85205661108235,1.261495060876852],[103.85117376272979,1.260737807005563],[103.84570064866521,1.266837084778484],[103.84428335141818,1.265540819585711],[103.84672236649223,1.26244768069595],[103.84599028332318,1.261558603105413],[103.83945066133339,1.267618475885683],[103.832081073957,1.267414261853566],[103.82464004985596,1.263157582112706],[103.82411838839661,1.263084566391367],[103.82440711369726,1.26019361616417],[103.83042136974039,1.263628070226219],[103.83619422095336,1.263810155144295],[103.84247597686698,1.257898522227992],[103.83636903798954,1.254810076359961],[103.83126396873429,1.256419860780553],[103.82932497036947,1.256792446082765],[103.82681144467466,1.257663833835945],[103.82484272631417,1.259013858914698],[103.82401119190077,1.258232236827986],[103.8236446330146,1.258417616760839],[103.82346731845874,1.258507290220551],[103.8232017895788,1.258641575654089],[103.82339836629106,1.260835013517848],[103.82325054746626,1.263073196184547],[103.81990718751074,1.263090051896836],[103.81581633477123,1.263826215784535],[103.8150524991176,1.264409173217063],[103.81154529802228,1.262723156406892],[103.81033318308056,1.26321438791899],[103.81147543776225,1.264801115262295],[103.8122386245974,1.264784219036011],[103.81324069432281,1.263728516554515],[103.81493865431909,1.264511943542947],[103.8128432057725,1.266403532832058],[103.81119056422361,1.266395602343969],[103.80988533566779,1.265232664261313],[103.80826696340775,1.265103948856305],[103.80721789258372,1.2658815557446],[103.80552684732497,1.263756253298987],[103.80514180780642,1.262298863188944],[103.80100080433658,1.265889241068316],[103.80129864314561,1.266451373592701],[103.79921008684279,1.268201638266673],[103.80157548701483,1.272309946771641],[103.80220905305227,1.272694178475821],[103.80196303673048,1.274926932017635],[103.8031278917418,1.278930457043859],[103.80130346242376,1.282778752080138],[103.80161906880836,1.284163608921509],[103.80318752126618,1.286771776255656],[103.80506705800141,1.28800425176575],[103.8088744026396,1.292387077401719],[103.80957872142153,1.292480209283129],[103.81536376183975,1.291522668609804],[103.815976656856,1.294106058810527],[103.82161689309346,1.293571887556041],[103.82438878635571,1.291930300369257],[103.82610573998436,1.292425104678634],[103.82859709543314,1.292719790635833],[103.83104483524923,1.292080066239505],[103.83180553925254,1.292154761925635],[103.83342776653737,1.292369546326927],[103.83491673031091,1.289579350508367],[103.83500221153854,1.287269366497246],[103.83475827317226,1.285854846795146],[103.83548521013135,1.283821776988832],[103.83641294546089,1.282871529063424],[103.83924168432056,1.28079201197501],[103.84059677693187,1.277547174182557],[103.84137181578335,1.274154612189558],[103.84215451704763,1.27258899013923],[103.84513928020594,1.272620411143023],[103.8477789167942,1.271672646648407],[103.8515644182791,1.269263145564809]]]},"properties":{"PLN_AREA_N":"BUKIT MERAH"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.85842618395831,1.278042607943634],[103.85249057305114,1.268720448399581],[103.8515644182791,1.269263145564809],[103.8477789167942,1.271672646648407],[103.84513928020594,1.272620411143023],[103.84215451704763,1.27258899013923],[103.84137181578335,1.274154612189558],[103.84188838539202,1.274816704252389],[103.8430599192734,1.274560916714045],[103.8432975477894,1.275693739635042],[103.84451818814986,1.275510861139887],[103.84518638710388,1.279160431908712],[103.844051122218,1.280614025398557],[103.84523255435997,1.280804517389068],[103.84758249171284,1.279527746450233],[103.84918786484916,1.281814239145818],[103.84852300612415,1.282209612543466],[103.84965645450026,1.283795769290444],[103.8471833121047,1.285434994166851],[103.84777456672636,1.286414689339564],[103.84953852613837,1.285574884560436],[103.8508160041201,1.286299741699018],[103.84937744130805,1.28902712298267],[103.84826690814354,1.290082490094547],[103.85079257054672,1.29478513658719],[103.85230621877442,1.296384016355197],[103.8558537715056,1.300632293843607],[103.85402719705907,1.302709648933752],[103.85446135961209,1.303086461529763],[103.85618772616726,1.302480790603951],[103.85942339783621,1.299781514326262],[103.8611282182997,1.297282871090697],[103.86147006619618,1.295125225799535],[103.86300410076473,1.293916033676542],[103.86445205414995,1.294012737120611],[103.86501954378942,1.289852739151273],[103.86472762508677,1.288849880067967],[103.86377069223052,1.288453289828585],[103.86160804217606,1.288557418143523],[103.86130949602557,1.28347256528993],[103.86068309663746,1.281702172155291],[103.85842618395831,1.278042607943634]]]},"properties":{"PLN_AREA_N":"DOWNTOWN CORE"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.86472762508677,1.288849880067967],[103.87251635899271,1.281284797858377],[103.87144334887499,1.280493248109742],[103.87205225362554,1.277776514575719],[103.8712506665149,1.276397849651483],[103.86642700988341,1.272837678313038],[103.85842618395831,1.278042607943634],[103.86068309663746,1.281702172155291],[103.86130949602557,1.28347256528993],[103.86160804217606,1.288557418143523],[103.86377069223052,1.288453289828585],[103.86472762508677,1.288849880067967]]]},"properties":{"PLN_AREA_N":"MARINA SOUTH"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.8471833121047,1.285434994166851],[103.84313311573634,1.287781778420587],[103.84170907982994,1.288104020492929],[103.84008679689519,1.28919114698429],[103.83865960090357,1.288822094458808],[103.83637083205484,1.28686010484149],[103.83500221153854,1.287269366497246],[103.83491673031091,1.289579350508367],[103.83342776653737,1.292369546326927],[103.83180553925254,1.292154761925635],[103.83033814742025,1.295609930816863],[103.83204384946933,1.296227405444508],[103.8341051623516,1.292473426984336],[103.83632448947525,1.292709537810455],[103.83816737224662,1.291800628377589],[103.83876937123253,1.290966866057597],[103.84086072476073,1.292230838997633],[103.84214056639016,1.294130255149185],[103.84738957322863,1.290428036652802],[103.84826690814354,1.290082490094547],[103.84937744130805,1.28902712298267],[103.8508160041201,1.286299741699018],[103.84953852613837,1.285574884560436],[103.84777456672636,1.286414689339564],[103.8471833121047,1.285434994166851]]]},"properties":{"PLN_AREA_N":"SINGAPORE RIVER"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.79921008684279,1.268201638266673],[103.79831373514588,1.266632612867404],[103.79399173194103,1.269205932309065],[103.79358701675295,1.268629072469386],[103.78551368947723,1.255012448433013],[103.77856940099618,1.259183348963263],[103.78663266419261,1.272790725289708],[103.77687184508164,1.278669856028629],[103.77067013801896,1.268246692113398],[103.7502455469761,1.280496013561838],[103.75301156301768,1.285269561726876],[103.75656010110183,1.28583899587712],[103.76911346377035,1.278313754486119],[103.77227787036405,1.283681528021542],[103.76073046451666,1.290598280773326],[103.76299252369625,1.294510305806391],[103.75968494513884,1.297903493851609],[103.75866536610222,1.299217220747951],[103.76102388392712,1.301025062928706],[103.76232754200815,1.301344462802843],[103.76610218532018,1.293164917397716],[103.76737037986034,1.291649577335076],[103.76910224659987,1.2938702957093],[103.76962661326002,1.295496445519551],[103.76986648234495,1.300419431676919],[103.77083138028954,1.30241478640568],[103.77123986324959,1.306603302551184],[103.77216551801133,1.311363425672224],[103.77226624272255,1.312581582306221],[103.77175308042143,1.316436527739668],[103.77120109707273,1.318732925126532],[103.77770992693951,1.314074856229029],[103.77890872693128,1.312992981848121],[103.7809048704905,1.312463007589578],[103.78477702717082,1.310994464501958],[103.78584585966549,1.313569941308484],[103.78479122222893,1.315011758080559],[103.78668279022399,1.315799004688954],[103.78769779749746,1.31459428629661],[103.7896009939722,1.313283046397108],[103.7913230768773,1.311491121334978],[103.7931321030543,1.313390742614862],[103.79401968019664,1.312829877198752],[103.79425435809746,1.311487146504784],[103.79538802652044,1.309885796748254],[103.79680238186366,1.309648901517217],[103.79747864050701,1.30879548059771],[103.79904904713993,1.308002721330195],[103.80032196329908,1.308739963858564],[103.8022839818715,1.307242212959725],[103.80318990993705,1.306719297831616],[103.8038564173537,1.302542120539139],[103.80480377194205,1.300482393022697],[103.80893428915874,1.299380244812645],[103.80861182572036,1.298363330550186],[103.8106214422567,1.296794374353355],[103.81659816960274,1.296767375284222],[103.815976656856,1.294106058810527],[103.81536376183975,1.291522668609804],[103.80957872142153,1.292480209283129],[103.8088744026396,1.292387077401719],[103.80506705800141,1.28800425176575],[103.80318752126618,1.286771776255656],[103.80161906880836,1.284163608921509],[103.80130346242376,1.282778752080138],[103.8031278917418,1.278930457043859],[103.80196303673048,1.274926932017635],[103.80220905305227,1.272694178475821],[103.80157548701483,1.272309946771641],[103.79921008684279,1.268201638266673]]]},"properties":{"PLN_AREA_N":"QUEENSTOWN"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.87251635899271,1.281284797858377],[103.86472762508677,1.288849880067967],[103.86501954378942,1.289852739151273],[103.86445205414995,1.294012737120611],[103.8701312799174,1.295061197273256],[103.87275214332526,1.295362753273514],[103.87766797764533,1.29552193193256],[103.87649246578016,1.294674890125192],[103.87567106243134,1.293189098141644],[103.87547599694766,1.291279488502126],[103.88107889625859,1.284839210641163],[103.87897761779082,1.282858299160515],[103.87594432885788,1.280786252453221],[103.87375042475794,1.282194540521077],[103.87251635899271,1.281284797858377]]]},"properties":{"PLN_AREA_N":"MARINA EAST"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.84214056639016,1.294130255149185],[103.84086072476073,1.292230838997633],[103.83876937123253,1.290966866057597],[103.83816737224662,1.291800628377589],[103.83632448947525,1.292709537810455],[103.8341051623516,1.292473426984336],[103.83204384946933,1.296227405444508],[103.83033814742025,1.295609930816863],[103.82994968524439,1.299196238757913],[103.82928744462839,1.29899102745536],[103.82650203651731,1.299198128197552],[103.82358674584545,1.300621075978104],[103.82341292501825,1.302677693949675],[103.82522274582662,1.302925337245447],[103.82707573248008,1.304173283650558],[103.82845985347032,1.304649823657512],[103.82982771227007,1.304415700380832],[103.8315852269548,1.303383687269223],[103.83427619668835,1.300820362478914],[103.8353749490421,1.300167894275604],[103.83736668127506,1.299699212041036],[103.83775198146864,1.298460747999408],[103.83883339363287,1.298239679312842],[103.83965693811541,1.29924319764315],[103.84135764914667,1.299072663948136],[103.84224104652269,1.298663995699528],[103.8432736382626,1.296730944610435],[103.84206614957897,1.29506850588492],[103.84214056639016,1.294130255149185]]]},"properties":{"PLN_AREA_N":"RIVER VALLEY"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[103.73313907175208,1.176332633237213],[103.73452746062638,1.175662576243581],[103.73460272790393,1.174926815254788],[103.73765593170916,1.175797065399502],[103.74146281422581,1.174377803065262],[103.74139980937919,1.173335945951637],[103.73990415995775,1.172109550743153],[103.73919915382778,1.169878695004539],[103.73963166194143,1.167254109092208],[103.73844268453333,1.166518955411733],[103.73665497847006,1.166740174057552],[103.73524079162722,1.167613433297107],[103.73397255062687,1.167110426247986],[103.73231476045892,1.169277115128244],[103.7313760567303,1.171907162122277],[103.73032054008033,1.172731351749585],[103.72829679164784,1.173007524034767],[103.72826633629676,1.173868259592735],[103.72936423835004,1.175175387459718],[103.7301236383753,1.175052729757316],[103.73138857558712,1.176296385819345],[103.73313907175208,1.176332633237213]]],[[[103.79303356947493,1.210551409086351],[103.79532644806457,1.208387191500066],[103.79661012762035,1.207906629573904],[103.79840275139667,1.20476558201259],[103.80155489710523,1.201453825046565],[103.80083117350487,1.200664323623527],[103.79842639764948,1.201434776864986],[103.79378382041624,1.204298042135623],[103.79310748986781,1.205076980042732],[103.79197713965135,1.207694394899637],[103.79181668540086,1.210503286522796],[103.79303356947493,1.210551409086351]]],[[[103.75806516637329,1.197244700897551],[103.75886752714494,1.196311673558206],[103.75534810775652,1.196311027121095],[103.75534842110164,1.197241889687861],[103.75806516637329,1.197244700897551]]],[[[103.72740764206745,1.192263100313025],[103.72924304065693,1.19201339445576],[103.73016645297027,1.191080813017183],[103.73167141739198,1.188580555703985],[103.73155002685967,1.186705424508455],[103.73048424786532,1.186897263769303],[103.72967343605161,1.185948447750244],[103.72849529582848,1.185538200736922],[103.72866550817133,1.183873073087178],[103.7264809362235,1.183236878569422],[103.72544322536844,1.182581011469436],[103.72486449610705,1.183120658930483],[103.72199195198296,1.181773232132864],[103.72089514156988,1.181731695455297],[103.7193869467052,1.18004237242376],[103.71895213142467,1.182967762460345],[103.71846122362342,1.183633327564605],[103.71738512803132,1.18716921806205],[103.71913910784144,1.187190109976055],[103.72129400339486,1.187592369294662],[103.72316295466118,1.189699685105631],[103.72376673062126,1.19111902704031],[103.72519004098241,1.191933608035522],[103.72740764206745,1.192263100313025]]],[[[103.73681069290673,1.188807492533272],[103.73633437252083,1.190218193544231],[103.73794258673912,1.190878499236301],[103.73681069290673,1.188807492533272]]],[[[103.74759817013656,1.228278700212348],[103.74727101975839,1.226576178647749],[103.7495064778874,1.226086274495882],[103.75014144057451,1.225293275404926],[103.74864953238414,1.222978516882272],[103.74764327768959,1.223697571944896],[103.74785363572248,1.225181034620702],[103.74697331892901,1.225566609056963],[103.74721845571415,1.226569846396083],[103.74680474937274,1.227758185711095],[103.74759817013656,1.228278700212348]]],[[[103.75069989939804,1.23571844319955],[103.75447516256101,1.234283052032967],[103.75495893895416,1.235362696655603],[103.75647287084209,1.23652768916074],[103.75784032215607,1.236238883684857],[103.75935534771546,1.231612064835166],[103.76135676404114,1.230438840803183],[103.7636079074132,1.22977075548417],[103.76573243076803,1.230156630533266],[103.76820462438987,1.229594313216404],[103.7697849478652,1.228576154415444],[103.77077952826846,1.227428313058319],[103.76889550781165,1.224995599233087],[103.76384291633724,1.225208214908986],[103.75906828092093,1.226251805900909],[103.75212528204915,1.229852483566256],[103.74526336578107,1.231352151729583],[103.74266913268143,1.23133045714171],[103.74015998743353,1.232873261312438],[103.73967173310868,1.234106145499457],[103.74001141733483,1.234901672312423],[103.74128011471805,1.235358692003164],[103.7433365059802,1.236728603241442],[103.74628735090698,1.237296317423496],[103.74895601509964,1.237048644556332],[103.75069989939804,1.23571844319955]]],[[[103.76180443267869,1.240427702227234],[103.76490801319754,1.239503413887911],[103.76656203855028,1.238500981766905],[103.76944875391423,1.235937103542119],[103.77037465265506,1.234287220000982],[103.7718947585945,1.233692354702684],[103.77407150506444,1.231599060361161],[103.77435577415265,1.231866562439979],[103.77710887861991,1.228696587482054],[103.77679849434044,1.22756141578436],[103.77765876101597,1.227186454424768],[103.77907311315312,1.224525292246509],[103.77886078103779,1.224014102876579],[103.77631449673726,1.224763094345276],[103.77312386419028,1.225035106803237],[103.77254304998077,1.227703151558831],[103.77078022184459,1.229325173847945],[103.76712411681255,1.230732112895968],[103.7629918860424,1.231364852756837],[103.76071391798538,1.232451648463126],[103.7597386157243,1.236697063952439],[103.75962489224578,1.238819283178156],[103.76006843617095,1.239845623541232],[103.76180443267869,1.240427702227234]]],[[[103.71133587567672,1.297363172467805],[103.71185310827292,1.297355885738479],[103.71180892567389,1.293346558479644],[103.71258057294845,1.291589253956557],[103.71735395696146,1.290674110383118],[103.71815755435266,1.291993407499026],[103.72110593084724,1.291330408788292],[103.72451613294959,1.289595650183246],[103.72532478445875,1.28848923256219],[103.72614194809542,1.286433730903949],[103.72645609030093,1.284173657917176],[103.72918981540394,1.280954084840642],[103.72985817470844,1.280938086766424],[103.73158948739407,1.279726191858782],[103.7319500399828,1.278661643742779],[103.73377852949187,1.278547431329241],[103.73585742868114,1.278044069548156],[103.74004351966416,1.273799487022135],[103.73971621352837,1.272468577164437],[103.73715209898398,1.270623589288248],[103.73476286412681,1.270109684444057],[103.7327832484862,1.269262924395383],[103.73161383537996,1.27040032448972],[103.73053876967448,1.270340909303203],[103.72616533949677,1.271667347525091],[103.72355738025952,1.269260139450856],[103.7241913906654,1.269057839568206],[103.72625019821272,1.270961887010525],[103.72933138888762,1.270143440841749],[103.73125537787183,1.269948742541202],[103.73291570822356,1.268335550797127],[103.73311717528135,1.26752080388767],[103.731142071307,1.263313135671496],[103.72931427839968,1.261907213237767],[103.72249676312896,1.258961973649515],[103.717752395446,1.262973784799483],[103.71080025501784,1.266739872930353],[103.71018943575896,1.269276366569974],[103.7090221576903,1.267211336989616],[103.70828298121025,1.267090567838594],[103.7061226355152,1.268352972342097],[103.7048097111285,1.265594283248592],[103.70963310500645,1.262831759220127],[103.71042683267073,1.262152823092383],[103.7136813909785,1.26030795121169],[103.7137338707313,1.258686106823006],[103.70728859988075,1.255080771152378],[103.70502403660946,1.254136468451161],[103.6964068571931,1.250926148875732],[103.69412390480583,1.250257129862773],[103.69040995784057,1.263393793172344],[103.68497029121157,1.268399611987645],[103.68012798240757,1.263060553923042],[103.68591289597296,1.257732949096478],[103.69042557660515,1.241821849990648],[103.6904329046175,1.240204083539926],[103.68987391408024,1.238878004644129],[103.6878402801648,1.236693707957083],[103.68697139120553,1.237581200117539],[103.68259193649754,1.232885945637692],[103.68302781914682,1.231868894018503],[103.67441183361751,1.223154697568489],[103.67306656525383,1.222590910272878],[103.67142821989951,1.223543645943933],[103.66980026246014,1.226964294403644],[103.67014912013742,1.227101724545569],[103.67171353409407,1.223849165687861],[103.67241311867656,1.223703950339681],[103.67601641300855,1.227357325361033],[103.67615319067677,1.228863415228301],[103.67454487344676,1.232257609081313],[103.67385462746122,1.232737751118676],[103.67265214844907,1.234595460660226],[103.6694277573,1.234604454524694],[103.66861677468574,1.235119346622403],[103.665028333531,1.242630384549613],[103.66301720372788,1.244975242569035],[103.6537251255071,1.268014405855262],[103.65372635981738,1.272910723353174],[103.65876139864145,1.276851771769795],[103.66080312507519,1.273999805944893],[103.67680184339754,1.285212177086177],[103.68356490980469,1.28926495799856],[103.68563141610346,1.290081550025442],[103.68864568207167,1.290818380491344],[103.69275385619119,1.290687559444455],[103.69606913873747,1.291182385331327],[103.69682197302991,1.290384716185064],[103.69164096065415,1.284800358611465],[103.69101520603301,1.282558463289326],[103.68722900708359,1.278860544873722],[103.6842258909709,1.276531846336535],[103.68805919952733,1.272751552478162],[103.69209143767723,1.277070238591909],[103.69336796147506,1.275998616074697],[103.69537881703249,1.277626642692631],[103.6955823444365,1.279154519573574],[103.69633214188778,1.280906744827218],[103.6963036535464,1.282179801489952],[103.6979734120773,1.283553038553853],[103.70342065121454,1.290233144576171],[103.7041671385755,1.290967162573334],[103.7051700536957,1.290942941455404],[103.70641195676583,1.292462956467129],[103.708806140368,1.29264891503522],[103.7106323757907,1.291865647270301],[103.71128862926237,1.293159618750733],[103.71133587567672,1.297363172467805]]],[[[103.76003043493068,1.212994634081771],[103.76152497522628,1.212869931767535],[103.76101728313525,1.211817573187009],[103.76144816619627,1.21026064221021],[103.76288721322958,1.210048246740218],[103.7624205701776,1.208524788698145],[103.76289001472081,1.207400998460878],[103.7637994946889,1.207226150432512],[103.76653095226708,1.208277555211309],[103.7696896920414,1.207555352377794],[103.77088580982395,1.207858364242475],[103.77260739370391,1.208969482740612],[103.77528559540214,1.210285698388264],[103.78042461562299,1.21037236728355],[103.78107543605455,1.208647106493495],[103.78153356492923,1.205787165684552],[103.78175158066514,1.201975335165189],[103.781138859211,1.199777605897489],[103.77949529091684,1.198223548130333],[103.77687800361872,1.197012171353268],[103.77583485494017,1.195443515682094],[103.77568764715286,1.193270664255784],[103.77506596299645,1.191985299606098],[103.7733526013734,1.190343111095249],[103.77122998850659,1.188843410450309],[103.76874207884894,1.188297812913905],[103.76629003668583,1.18917559584969],[103.76130087008127,1.194045565318272],[103.76056184327742,1.195073264076823],[103.76075490841478,1.196685634073607],[103.76325208754932,1.19969048863588],[103.76372883744257,1.201807977954344],[103.7629942068646,1.203174906398014],[103.76189211745509,1.202089164160004],[103.76069957586817,1.202091487465716],[103.75964640500307,1.201022147254941],[103.75882235322031,1.202011769270317],[103.75764890887103,1.206145530743016],[103.75813842349766,1.209064243875597],[103.7587860270438,1.209816443641891],[103.75920562760906,1.212092736538012],[103.76003043493068,1.212994634081771]]],[[[103.72345348489355,1.213132504707412],[103.72326220572518,1.212108883750747],[103.72421830201789,1.21060570731893],[103.72531397357918,1.209974849187802],[103.72704277704973,1.210151277903391],[103.72861696403949,1.211376272392466],[103.72943669092413,1.210934170572143],[103.72955111340656,1.209599107726383],[103.72805945573423,1.209154961109812],[103.72754302105294,1.207907435134505],[103.72841555348869,1.206831095238465],[103.72965391438115,1.206698319091234],[103.73183190926751,1.205179124449157],[103.7324001381265,1.205387239867176],[103.73360459682624,1.204036970370546],[103.73222398920123,1.203321845772182],[103.73174098932675,1.204440138056234],[103.72981568744454,1.204900630590057],[103.72968085330257,1.203115383805384],[103.72689745320773,1.202501791661609],[103.72318553323073,1.203261715116343],[103.7203264599554,1.203125411114371],[103.71814413523367,1.202602985060097],[103.71638634478316,1.202587924533365],[103.71077529095085,1.203648576449066],[103.70778465267772,1.20407040641021],[103.70710632040759,1.20471963535738],[103.70745743205919,1.205701409471796],[103.70891321859287,1.206836119057702],[103.71067316493928,1.207714037886415],[103.71282809430393,1.210312380050818],[103.71427732873326,1.211415993971999],[103.7192212133453,1.212558464493178],[103.72191218688361,1.213490732083015],[103.72345348489355,1.213132504707412]]]]},"properties":{"PLN_AREA_N":"WESTERN ISLANDS"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[103.84060535091265,1.228725541948477],[103.84014861019494,1.227549443220278],[103.83927609707479,1.227651032669486],[103.83757271113032,1.228662378607583],[103.83659133062272,1.229930859035871],[103.8353169552268,1.232911060428287],[103.83589298497095,1.234715605062525],[103.83779500709893,1.234188804345128],[103.83953587263089,1.231891358544824],[103.84060535091265,1.228725541948477]]],[[[103.83498070876631,1.215581491903166],[103.83627375350686,1.214794041764096],[103.83462014169392,1.212344307104881],[103.83342561086958,1.213477585791065],[103.83498070876631,1.215581491903166]]],[[[103.83211037133917,1.217047775903327],[103.83362549491218,1.216237718005653],[103.83278319900059,1.214865506271285],[103.83176600671511,1.215560836245614],[103.83211037133917,1.217047775903327]]],[[[103.84870585792935,1.230882858068569],[103.84985863421903,1.230096442239025],[103.85118052118023,1.230238607123362],[103.8515865175149,1.231374261915026],[103.85353868887708,1.231833316193139],[103.85779694126295,1.232331925540475],[103.85840978003357,1.231306180664222],[103.85706514871956,1.22921648991974],[103.8550900608251,1.228508004514479],[103.85366457048092,1.228818517862531],[103.85329726099214,1.228131751107547],[103.85346931649654,1.226403945519304],[103.85447234977909,1.225435814727325],[103.8559406948671,1.225655946868262],[103.85642037649606,1.223538341660717],[103.85840409013765,1.22179457006793],[103.85911078590435,1.22071427642601],[103.85788996965466,1.219108895763006],[103.8580788876165,1.217853190058183],[103.85622175513042,1.218413690584967],[103.85550617232835,1.219480114220227],[103.85376702489734,1.220833203261024],[103.85243142370763,1.222577232783684],[103.85076203491212,1.219510006056854],[103.85164299308158,1.216255013908591],[103.85077787665479,1.214332368785752],[103.84932486437546,1.214927698032815],[103.84868975845501,1.216068318078474],[103.84651795293617,1.2188353303902],[103.84365210111783,1.221490982869016],[103.84317266331783,1.222168500821338],[103.84434309995787,1.223206306104949],[103.84581163340196,1.223390782022669],[103.84612319574899,1.222839634095809],[103.84860403367522,1.222122069573689],[103.84872205742002,1.221450890559498],[103.85021741981774,1.220465059121122],[103.85120515035979,1.220994249295371],[103.8522640673375,1.222687222883313],[103.85169319799276,1.224516766896997],[103.8502330656173,1.225765428284797],[103.85107759810981,1.226532149093764],[103.85222416489871,1.226262224338628],[103.8521390811401,1.227900700568124],[103.8490795590438,1.227944707888048],[103.84812143391775,1.226677047398184],[103.84676245114932,1.227152035397528],[103.84876687518064,1.228148960620041],[103.84939149086162,1.229556976762857],[103.84821725367227,1.23086302812783],[103.84740800003108,1.23024817359993],[103.84557870664827,1.23184967338663],[103.84587473216357,1.23251334315723],[103.84847467306933,1.231706027121758],[103.84870585792935,1.230882858068569]]],[[[103.86060106398706,1.224291518134028],[103.86193211195196,1.224037399257029],[103.86276292204121,1.22189664016745],[103.86242095900086,1.221430218451559],[103.86042266660785,1.222316408886947],[103.85991225875993,1.223955276674256],[103.85909883404459,1.223472208924367],[103.85806095770303,1.224734079583034],[103.85822223003417,1.225397809817891],[103.86060106398706,1.224291518134028]]],[[[103.855394534008,1.240894332384193],[103.85491019263266,1.239252749950402],[103.8534806604582,1.2389767960567],[103.85118385847429,1.240365226616676],[103.84903793006544,1.240109521102415],[103.8480444531472,1.239102491781851],[103.84588843556217,1.237692250303754],[103.84495824202462,1.237948105822419],[103.84502979964938,1.239611406771734],[103.84662455110663,1.240971435132953],[103.84804775412636,1.241669479002143],[103.84991009867535,1.243111691603924],[103.8511823855583,1.244881709447653],[103.85209368765766,1.245526177193409],[103.85307342282984,1.2452005325251],[103.85485227666874,1.242834674911841],[103.855394534008,1.240894332384193]]],[[[103.82330395614848,1.257453214102405],[103.8236446330146,1.258417616760839],[103.82401119190077,1.258232236827986],[103.82400883814257,1.256349038499161],[103.82522423964306,1.255269521848696],[103.82723661646561,1.25463172566008],[103.82949166630368,1.254500510208503],[103.83084222552908,1.25477727742467],[103.83313874606127,1.254352101296055],[103.83433120532813,1.253437219121551],[103.83656020262391,1.253201301911078],[103.83835302705415,1.254075664597685],[103.84182627833228,1.253448976670634],[103.84227356534245,1.252197662124308],[103.84646267157885,1.253213843281329],[103.84842349761198,1.252114160858216],[103.84806212011172,1.250794441001071],[103.8458382293544,1.24737206361367],[103.84384250058069,1.244603855835432],[103.83958789875821,1.240311001571017],[103.83705906156679,1.238678536700423],[103.83488617140651,1.238978308821646],[103.83370933851201,1.237998393346483],[103.83258267169735,1.237864880921896],[103.83040766675488,1.23963513907528],[103.83007499534419,1.241125170821076],[103.82908817210017,1.241472545134257],[103.8284281054998,1.242668516326248],[103.82716262321719,1.242025018022447],[103.82367835680803,1.245852498936153],[103.82402255206283,1.247274922796558],[103.82251488825561,1.248089702972121],[103.82102428900427,1.249730562020401],[103.81977016217436,1.248989615780655],[103.81740551947499,1.250343942558102],[103.81555557826223,1.252502071311627],[103.81309621741315,1.254653501698064],[103.81193258189677,1.255177255403144],[103.81069009475098,1.256305820100599],[103.80957042191449,1.255867650661287],[103.80877682541178,1.257395061546176],[103.80672887912922,1.259374169090163],[103.80740024720612,1.259984766969228],[103.80875265086753,1.260038383685806],[103.81249403251364,1.259025547571159],[103.81424720153406,1.259033542101206],[103.81702335893691,1.259998200240023],[103.8178898410496,1.260021520085077],[103.82052952227235,1.258915884886661],[103.82301692003637,1.257615740044247],[103.8232017895788,1.258641575654089],[103.82346731845874,1.258507290220551],[103.82330395614848,1.257453214102405]]]]},"properties":{"PLN_AREA_N":"SOUTHERN ISLANDS"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.85156581997522,1.268105448048998],[103.8515644182791,1.269263145564809],[103.85249057305114,1.268720448399581],[103.85842618395831,1.278042607943634],[103.86642700988341,1.272837678313038],[103.86306531368724,1.270367963236026],[103.86322393568814,1.270142522218883],[103.8599705824263,1.267785084859745],[103.86172527613145,1.26533836013883],[103.8608537159297,1.264699413147089],[103.85909553105714,1.267151005526268],[103.85747962827635,1.265989263111709],[103.85578997522065,1.265647029606632],[103.85439305330598,1.266356106051464],[103.85261319144327,1.268105902542384],[103.85156581997522,1.268105448048998]]]},"properties":{"PLN_AREA_N":"STRAITS VIEW"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.88107889625859,1.284839210641163],[103.87547599694766,1.291279488502126],[103.87567106243134,1.293189098141644],[103.87649246578016,1.294674890125192],[103.87766797764533,1.29552193193256],[103.88532905459958,1.295763343841319],[103.88551848286856,1.301201472290001],[103.88375347070782,1.304587872982454],[103.88480067534573,1.305435876857032],[103.88923761355639,1.306161117895124],[103.89007430188433,1.307252253451283],[103.88972252983154,1.308588314083776],[103.89461827775717,1.309576809697707],[103.9015024156519,1.309540685952903],[103.90670620698207,1.313323499845671],[103.90766298830253,1.311072822437148],[103.90853515655058,1.308257457895622],[103.90998325114899,1.305547337131528],[103.915984921741,1.307029613330156],[103.91825976348726,1.307471177568296],[103.91859389491366,1.306555215718435],[103.91950883367144,1.301992586923401],[103.917618977688,1.301833526594732],[103.91527492905281,1.300643228176872],[103.91117046490497,1.298948916370571],[103.90435485275799,1.297386046184121],[103.90059312675754,1.295854811433991],[103.89914704708875,1.295552981015802],[103.89568614172008,1.294067954604138],[103.89485239088279,1.293224809099967],[103.89317166238536,1.293451814237087],[103.89002808173419,1.29036722283958],[103.88837292592092,1.290626925061693],[103.88540322989421,1.287756820829975],[103.88419437377206,1.288054878722304],[103.88107889625859,1.284839210641163]]]},"properties":{"PLN_AREA_N":"MARINE PARADE"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.85942339783621,1.299781514326262],[103.85618772616726,1.302480790603951],[103.85446135961209,1.303086461529763],[103.85402719705907,1.302709648933752],[103.8558537715056,1.300632293843607],[103.85230621877442,1.296384016355197],[103.85163934405186,1.29727939035792],[103.84915174550981,1.299141360475895],[103.8464050978499,1.30008521567775],[103.84542500606887,1.301363766296407],[103.84604055997231,1.304757673264634],[103.84815599447982,1.30345280347008],[103.84866958207363,1.305406754550383],[103.84656035978963,1.306906500870615],[103.84704046487488,1.308141249140542],[103.8487638704258,1.306623475420494],[103.85212529645257,1.31109486473403],[103.85436533166046,1.313620323081094],[103.85541356751382,1.311804787490143],[103.8544726499112,1.310617880356455],[103.85871170393683,1.306817567538453],[103.86019598969129,1.305009177196749],[103.862277274912,1.301582242232334],[103.85942339783621,1.299781514326262]]]},"properties":{"PLN_AREA_N":"ROCHOR"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.88375347070782,1.304587872982454],[103.88551848286856,1.301201472290001],[103.88532905459958,1.295763343841319],[103.87766797764533,1.29552193193256],[103.87275214332526,1.295362753273514],[103.8701312799174,1.295061197273256],[103.86445205414995,1.294012737120611],[103.86300410076473,1.293916033676542],[103.86147006619618,1.295125225799535],[103.8611282182997,1.297282871090697],[103.85942339783621,1.299781514326262],[103.862277274912,1.301582242232334],[103.86019598969129,1.305009177196749],[103.85871170393683,1.306817567538453],[103.8544726499112,1.310617880356455],[103.85541356751382,1.311804787490143],[103.85436533166046,1.313620323081094],[103.85212529645257,1.31109486473403],[103.8487638704258,1.306623475420494],[103.84704046487488,1.308141249140542],[103.84576887256819,1.309843983746361],[103.84432443112314,1.310556231108791],[103.84578478596715,1.31477135952705],[103.84671116130922,1.315895167075955],[103.84830354926156,1.317078888099444],[103.85214885248786,1.318851981761861],[103.85451670905789,1.320173321592198],[103.85627330093537,1.32161393335946],[103.85806818004806,1.323655730626482],[103.86089526409977,1.326317606242237],[103.86218448805685,1.328626970282211],[103.86235230090725,1.33043906781362],[103.86688608795298,1.328703590687592],[103.86874319468647,1.327819176686306],[103.87044001196739,1.326548224817519],[103.87197897342607,1.324714624881214],[103.87452409004985,1.321194436531365],[103.87591844448498,1.320074355754514],[103.87527272101468,1.319227918783043],[103.87471290854332,1.316152213702442],[103.87528319691202,1.311784236828646],[103.87600420929905,1.308788869030783],[103.88081637255989,1.306931081796188],[103.88375347070782,1.304587872982454]]]},"properties":{"PLN_AREA_N":"KALLANG"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.84298390805137,1.300011640293229],[103.84162559649258,1.299754034125094],[103.84135764914667,1.299072663948136],[103.83965693811541,1.29924319764315],[103.83883339363287,1.298239679312842],[103.83775198146864,1.298460747999408],[103.83736668127506,1.299699212041036],[103.8353749490421,1.300167894275604],[103.83427619668835,1.300820362478914],[103.8315852269548,1.303383687269223],[103.82982771227007,1.304415700380832],[103.82845985347032,1.304649823657512],[103.82707573248008,1.304173283650558],[103.82522274582662,1.302925337245447],[103.82341292501825,1.302677693949675],[103.82329148248651,1.304379770351502],[103.82266395000954,1.305054368692437],[103.82510243973394,1.30561826380648],[103.82775731949341,1.307450307029024],[103.82816307683771,1.30823976044374],[103.82963169905177,1.307946858308078],[103.8312956539502,1.307123219072226],[103.83168640565465,1.307985563704966],[103.83323883754913,1.30798575416359],[103.83415854139548,1.309792732655813],[103.8354042525471,1.309146502736736],[103.83512382317666,1.308376411960802],[103.83587433110127,1.306802072356613],[103.83368112139739,1.30601812413212],[103.83391180341312,1.305160830608411],[103.83528449020427,1.304181203004735],[103.83681348554195,1.304741863187494],[103.8377012939457,1.30384134419252],[103.837717856053,1.302340503787718],[103.8394040499052,1.301883446064098],[103.83982261574864,1.30325178419504],[103.84124240441261,1.302795310131755],[103.84322417294354,1.300998585309268],[103.84298390805137,1.300011640293229]]]},"properties":{"PLN_AREA_N":"ORCHARD"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.84542500606887,1.301363766296407],[103.84426911494344,1.299594639652377],[103.84298390805137,1.300011640293229],[103.84322417294354,1.300998585309268],[103.84124240441261,1.302795310131755],[103.83982261574864,1.30325178419504],[103.8394040499052,1.301883446064098],[103.837717856053,1.302340503787718],[103.8377012939457,1.30384134419252],[103.83681348554195,1.304741863187494],[103.83528449020427,1.304181203004735],[103.83391180341312,1.305160830608411],[103.83368112139739,1.30601812413212],[103.83587433110127,1.306802072356613],[103.83512382317666,1.308376411960802],[103.8354042525471,1.309146502736736],[103.83415854139548,1.309792732655813],[103.83323883754913,1.30798575416359],[103.83168640565465,1.307985563704966],[103.8312956539502,1.307123219072226],[103.82963169905177,1.307946858308078],[103.82816307683771,1.30823976044374],[103.82775731949341,1.307450307029024],[103.82673153955167,1.309070425116506],[103.82780916413549,1.311855171107138],[103.82942700264483,1.312602436267018],[103.8353398251071,1.317369007500383],[103.83908029797621,1.313108914006046],[103.84004674821074,1.312384969445048],[103.84432443112314,1.310556231108791],[103.84576887256819,1.309843983746361],[103.84704046487488,1.308141249140542],[103.84656035978963,1.306906500870615],[103.84866958207363,1.305406754550383],[103.84815599447982,1.30345280347008],[103.84604055997231,1.304757673264634],[103.84542500606887,1.301363766296407]]]},"properties":{"PLN_AREA_N":"NEWTON"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.65709033722237,1.311131116022545],[103.65820360107968,1.312317328506646],[103.65586952588481,1.314534324430771],[103.66289608570652,1.322012749991507],[103.66611890141513,1.326623310280011],[103.66772146838156,1.327987857730117],[103.67120683014397,1.329837422479025],[103.67398261827121,1.330499395906039],[103.67493190292262,1.331049776527063],[103.67590386461418,1.330497952767961],[103.67945344592854,1.330203396131243],[103.67934418148222,1.327773376770219],[103.69650828326402,1.327763002220425],[103.69653484676377,1.322742490358928],[103.69626717904204,1.318253149922388],[103.69587469715897,1.315222184919041],[103.69404869826325,1.315379328988167],[103.69079433670652,1.315038286459237],[103.6892750911558,1.31454101131216],[103.68463527691426,1.311899926551964],[103.68110366071572,1.310623505007555],[103.68155941712637,1.309194739279214],[103.680686583611,1.308828160899081],[103.68175988330502,1.300324234048608],[103.68190000548832,1.298000874173129],[103.67844353704227,1.29661457577586],[103.67301796248255,1.302625672489819],[103.67271535281668,1.306810853123779],[103.66879327633913,1.306317159312982],[103.66933987124438,1.301302884941334],[103.66963772272629,1.300422039530611],[103.6743433357471,1.295455181989057],[103.67228048953172,1.293402910519552],[103.66658593825906,1.288675725764247],[103.66520333873243,1.290355873668364],[103.66473883548068,1.291878799197313],[103.65936067415105,1.294809527846747],[103.65904862852865,1.295692164060971],[103.6576363662915,1.296777105931507],[103.65667305423857,1.295952044634184],[103.65586802277815,1.296681640497447],[103.6568249420984,1.297500392832661],[103.65375160412778,1.301030981531224],[103.65177802844252,1.29935542795345],[103.64980778357605,1.301688506704521],[103.65312145183789,1.305205315965119],[103.65576547103937,1.30847329390839],[103.65748723006728,1.310058090597442],[103.65709033722237,1.311131116022545]]]},"properties":{"PLN_AREA_N":"PIONEER"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.83033814742025,1.295609930816863],[103.83180553925254,1.292154761925635],[103.83104483524923,1.292080066239505],[103.82859709543314,1.292719790635833],[103.82610573998436,1.292425104678634],[103.82438878635571,1.291930300369257],[103.82161689309346,1.293571887556041],[103.815976656856,1.294106058810527],[103.81659816960274,1.296767375284222],[103.8106214422567,1.296794374353355],[103.80861182572036,1.298363330550186],[103.80893428915874,1.299380244812645],[103.80480377194205,1.300482393022697],[103.8038564173537,1.302542120539139],[103.80318990993705,1.306719297831616],[103.8022839818715,1.307242212959725],[103.8033540090134,1.310194018791847],[103.80464052748086,1.314367261476628],[103.80519268853895,1.315224966268005],[103.80899271490846,1.318702853579828],[103.81158558538024,1.32014088979249],[103.81302529926985,1.321830953274745],[103.81335644917748,1.323294813850596],[103.81892747511246,1.322657079407702],[103.8201179103329,1.322360811704154],[103.82175023272434,1.32190996610874],[103.82300748927048,1.32155705334101],[103.83510853725798,1.317548180406612],[103.8353398251071,1.317369007500383],[103.82942700264483,1.312602436267018],[103.82780916413549,1.311855171107138],[103.82673153955167,1.309070425116506],[103.82775731949341,1.307450307029024],[103.82510243973394,1.30561826380648],[103.82266395000954,1.305054368692437],[103.82329148248651,1.304379770351502],[103.82341292501825,1.302677693949675],[103.82358674584545,1.300621075978104],[103.82650203651731,1.299198128197552],[103.82928744462839,1.29899102745536],[103.82994968524439,1.299196238757913],[103.83033814742025,1.295609930816863]]]},"properties":{"PLN_AREA_N":"TANGLIN"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.75866536610222,1.299217220747951],[103.75857077695511,1.299289310216429],[103.75728115476225,1.298371696522008],[103.75532184756,1.302251202274006],[103.75342549257216,1.306784048521484],[103.75275243506012,1.307611951190393],[103.75069348997529,1.308975333441043],[103.74785920196452,1.309388085305069],[103.74746656949972,1.312753013793475],[103.74762521382084,1.313749931018148],[103.75124873605847,1.320159471051075],[103.75217826763955,1.322898630495017],[103.75019398045562,1.326318791809957],[103.74998627941677,1.327082788475556],[103.74866061920237,1.339067552766896],[103.7494151336269,1.341267038921699],[103.75283686888893,1.339270402025497],[103.76092442614117,1.334741527781881],[103.7646077302215,1.332817581845465],[103.76504516716574,1.332097559432237],[103.7670776349357,1.33119008602909],[103.76812988876682,1.331212017949958],[103.76911654258915,1.329986811646069],[103.77051045834712,1.329466123975575],[103.77564504398104,1.326426737365673],[103.77462371529681,1.325239068748387],[103.77266919965612,1.324277211127778],[103.77110275937072,1.321887425190516],[103.77078270139407,1.320519956167405],[103.77120109707273,1.318732925126532],[103.77175308042143,1.316436527739668],[103.77226624272255,1.312581582306221],[103.77216551801133,1.311363425672224],[103.77123986324959,1.306603302551184],[103.77083138028954,1.30241478640568],[103.76986648234495,1.300419431676919],[103.76962661326002,1.295496445519551],[103.76910224659987,1.2938702957093],[103.76737037986034,1.291649577335076],[103.76610218532018,1.293164917397716],[103.76232754200815,1.301344462802843],[103.76102388392712,1.301025062928706],[103.75866536610222,1.299217220747951]]]},"properties":{"PLN_AREA_N":"CLEMENTI"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.6387934746756,1.353104086768726],[103.64410335154366,1.348294844481877],[103.64552154368343,1.347266335513336],[103.64662072339372,1.345756699736858],[103.64777912107992,1.345043805066646],[103.64987640082585,1.344883513105319],[103.65171081079339,1.343466738939563],[103.65208231097407,1.342353362152752],[103.65139087563836,1.340666894480404],[103.6519593103147,1.338764101171462],[103.65474712407087,1.33614103333613],[103.65672573638665,1.334543149239396],[103.65713755868248,1.33356865843727],[103.66475388684366,1.330325643386084],[103.66544573153823,1.330137780982886],[103.66772146838156,1.327987857730117],[103.66611890141513,1.326623310280011],[103.66289608570652,1.322012749991507],[103.65586952588481,1.314534324430771],[103.65820360107968,1.312317328506646],[103.65709033722237,1.311131116022545],[103.6560829603555,1.311495489928082],[103.65390138692733,1.30899919063706],[103.65135241977286,1.306690192398513],[103.65045249644025,1.305564142206449],[103.64933189000926,1.305355632065015],[103.6467809865266,1.30782462409622],[103.64633840628288,1.309040830215539],[103.64900492415845,1.312024020623701],[103.65186933492267,1.314796751749643],[103.65207940416886,1.315319460137503],[103.64980666799646,1.317397053801795],[103.64855930282022,1.316459932887722],[103.64754080565592,1.315167182765054],[103.64373320551884,1.311540574903863],[103.64289033730788,1.31151232161532],[103.64033668548221,1.31360435155236],[103.63764226898427,1.316201560328097],[103.63454858362546,1.312027216069905],[103.63470967719915,1.311560813799665],[103.63801106494682,1.308828799188465],[103.64503452914879,1.300617338029273],[103.64654955516644,1.291680239350554],[103.64968985483058,1.285876871856529],[103.65017368567223,1.283276347448414],[103.64945886869482,1.281204551214681],[103.64808706094678,1.279817018545016],[103.64675572998483,1.279213296319634],[103.64531389966092,1.279083153386156],[103.6407199351017,1.279439528039695],[103.64043811113926,1.279079678247962],[103.63973582930319,1.269808178178723],[103.64335436714718,1.269808104683204],[103.64335501855392,1.260853796233661],[103.61734269957239,1.260851755255541],[103.61734326448101,1.253978629631586],[103.6443542698793,1.253980732232188],[103.64435470035373,1.247963776051446],[103.63778532919464,1.245027084076041],[103.61734399571421,1.245025478604342],[103.61734455350711,1.238152352148579],[103.64983862452235,1.238154815830065],[103.64983923787345,1.229201645905846],[103.61734527547132,1.229199200044652],[103.61734588393503,1.221602585665224],[103.6569175285141,1.221605493420225],[103.65857532673118,1.217166317916123],[103.64806401875813,1.213277032926859],[103.64504532068173,1.21144227095367],[103.64347438635508,1.210776053967082],[103.64180296234558,1.21076854341284],[103.61005648005846,1.21876122976866],[103.60784903452563,1.21958078854296],[103.60607379083666,1.221551021378205],[103.60571267211441,1.223044610480171],[103.60570154061378,1.243675228736844],[103.6124345343779,1.243682874734254],[103.61243590566427,1.246390797103799],[103.60884771320158,1.246392635102869],[103.60884715655939,1.25294927343228],[103.61199401813725,1.25294954288359],[103.61199379017224,1.255662826786193],[103.60974773298888,1.255662634439655],[103.60974734422057,1.2602300808977],[103.60570883484812,1.260229728889555],[103.60598994498164,1.262593771414375],[103.61115388774806,1.27654138084845],[103.61303650364668,1.278498419529212],[103.61660254511897,1.279916265207017],[103.61812235987709,1.281146149767497],[103.619462557826,1.283034561632246],[103.6202821577364,1.28580568475743],[103.6202363430946,1.287767930178814],[103.61957666054116,1.289957228980644],[103.61821662317274,1.293346859842375],[103.61739327873667,1.294307702825898],[103.61781730847447,1.296727146542784],[103.6186978491985,1.297067991324973],[103.6220057152748,1.305919392826453],[103.62672777498774,1.318821243906394],[103.6321883687695,1.333464514367341],[103.63272320376598,1.336013575449223],[103.63336147095082,1.336932501767535],[103.63477852796696,1.340978697309863],[103.63453269958038,1.342271319185879],[103.63568139060312,1.343455311159074],[103.63651042708389,1.345433475953187],[103.63526649107044,1.345559256907085],[103.63415099573342,1.347674750530033],[103.63429319211357,1.349712579590439],[103.6352328298478,1.350778364288508],[103.6369668414727,1.351678151476044],[103.6382829154068,1.350985852797527],[103.6387934746756,1.353104086768726]]]},"properties":{"PLN_AREA_N":"TUAS"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.91950883367144,1.301992586923401],[103.91859389491366,1.306555215718435],[103.91825976348726,1.307471177568296],[103.915984921741,1.307029613330156],[103.90998325114899,1.305547337131528],[103.90853515655058,1.308257457895622],[103.90766298830253,1.311072822437148],[103.90670620698207,1.313323499845671],[103.90523247507784,1.31686871937185],[103.90494236219291,1.319299845307498],[103.90584924819214,1.326599269164874],[103.90547064705294,1.328490812525985],[103.90482304697179,1.32945327359911],[103.89617617795149,1.337797238681332],[103.89793972526302,1.340356739692229],[103.89933198255795,1.339568163929817],[103.90209775136442,1.338700371978434],[103.90233074182105,1.339203683671857],[103.9075909256417,1.339164879196194],[103.90887191025017,1.340833678460191],[103.91299531388843,1.344462760824218],[103.91589554084656,1.342275073574778],[103.91693390794173,1.343759250546262],[103.92009245993995,1.346238076751435],[103.92421573457798,1.348042315813093],[103.92497049593156,1.348585065392398],[103.92629803566531,1.347443134942161],[103.9293504617399,1.345548459939141],[103.93192898005594,1.343093956503653],[103.93833046952042,1.336743247704099],[103.93914730032228,1.336273646359316],[103.94897529981213,1.334334341008323],[103.95417182388482,1.326603638313504],[103.95987551877549,1.321918061383409],[103.9606560577129,1.320901789202044],[103.96363401398479,1.314419559040436],[103.96263064674037,1.314572378221565],[103.96034683598373,1.313642852253382],[103.9584398922055,1.312412214741143],[103.95779677897858,1.312511650944906],[103.95591719638894,1.311378732628077],[103.95482216428897,1.311568757679415],[103.95135734620946,1.31061764699803],[103.94874149404833,1.310408060577093],[103.9445270989473,1.309130729300162],[103.94306672889799,1.308509549065181],[103.94190241934896,1.308507434094828],[103.9398571025691,1.307324708450308],[103.9360977169249,1.306309234487039],[103.93368150482284,1.30504267961368],[103.93219086665138,1.305599566418365],[103.93122080953759,1.304931014149762],[103.92937729353866,1.304482970837928],[103.92811178385972,1.303660658758163],[103.92549214080556,1.303625254918005],[103.9239475917758,1.302939724103783],[103.92319864057518,1.303178584499132],[103.91950883367144,1.301992586923401]]]},"properties":{"PLN_AREA_N":"BEDOK"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.84826690814354,1.290082490094547],[103.84738957322863,1.290428036652802],[103.84214056639016,1.294130255149185],[103.84206614957897,1.29506850588492],[103.8432736382626,1.296730944610435],[103.84224104652269,1.298663995699528],[103.84135764914667,1.299072663948136],[103.84162559649258,1.299754034125094],[103.84298390805137,1.300011640293229],[103.84426911494344,1.299594639652377],[103.84542500606887,1.301363766296407],[103.8464050978499,1.30008521567775],[103.84915174550981,1.299141360475895],[103.85163934405186,1.29727939035792],[103.85230621877442,1.296384016355197],[103.85079257054672,1.29478513658719],[103.84826690814354,1.290082490094547]]]},"properties":{"PLN_AREA_N":"MUSEUM"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.75728115476225,1.298371696522008],[103.75536942724887,1.297125511182716],[103.75422091364244,1.2972202092467],[103.75193512456163,1.296671753533573],[103.74908269135537,1.29650271541075],[103.74600954238355,1.29728130490886],[103.74391258226818,1.298299455216228],[103.74390925814288,1.299154880968955],[103.74483041187162,1.300882439128538],[103.74343084807111,1.301322216665338],[103.74085592871586,1.298813846080639],[103.73492718123872,1.300332607737924],[103.73064264801201,1.30124208805758],[103.72965423464606,1.30163093263666],[103.72760803501063,1.300271205736095],[103.72251398698505,1.302763890775723],[103.71584766686503,1.308417173232416],[103.71219993009204,1.308439453086045],[103.71277737301476,1.306414954759924],[103.71535832477396,1.305898831562859],[103.72091703378587,1.301184028492126],[103.72039380504843,1.299516359541267],[103.711877509315,1.29961016034182],[103.71185310827292,1.297355885738479],[103.71133587567672,1.297363172467805],[103.71143910395928,1.306694591081237],[103.7108116698453,1.308411537205942],[103.70982796242718,1.307787054306097],[103.71007667312486,1.311126078344882],[103.7098121311425,1.314090678866866],[103.71788638771942,1.314621392222413],[103.71947730612628,1.314307870661126],[103.72023606427976,1.318124457928771],[103.72032617797436,1.319998083109475],[103.71959890856317,1.323588553856451],[103.72601484019458,1.325032307183641],[103.72477623067974,1.328681650496036],[103.72508465905848,1.336773593517198],[103.72316467605701,1.340345564459029],[103.72184343498692,1.341375559934933],[103.7214002784483,1.342784048401696],[103.72185255930049,1.344917164320418],[103.72365447730083,1.345021681384974],[103.72816110537781,1.34436468135616],[103.72814262666749,1.353609209366154],[103.73209726760159,1.351113700416072],[103.7360047008653,1.346950061099131],[103.73726409671123,1.34600303693633],[103.73973839929003,1.345085972855723],[103.74242199669168,1.344838608576252],[103.74530430739858,1.343643179931546],[103.7494151336269,1.341267038921699],[103.74866061920237,1.339067552766896],[103.74998627941677,1.327082788475556],[103.75019398045562,1.326318791809957],[103.75217826763955,1.322898630495017],[103.75124873605847,1.320159471051075],[103.74762521382084,1.313749931018148],[103.74746656949972,1.312753013793475],[103.74785920196452,1.309388085305069],[103.75069348997529,1.308975333441043],[103.75275243506012,1.307611951190393],[103.75342549257216,1.306784048521484],[103.75532184756,1.302251202274006],[103.75728115476225,1.298371696522008]]]},"properties":{"PLN_AREA_N":"JURONG EAST"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.88375347070782,1.304587872982454],[103.88081637255989,1.306931081796188],[103.87600420929905,1.308788869030783],[103.87528319691202,1.311784236828646],[103.87471290854332,1.316152213702442],[103.87527272101468,1.319227918783043],[103.87591844448498,1.320074355754514],[103.87452409004985,1.321194436531365],[103.87197897342607,1.324714624881214],[103.87044001196739,1.326548224817519],[103.86874319468647,1.327819176686306],[103.87588884966478,1.33028173059946],[103.8798035220125,1.331529426306905],[103.88887199886949,1.333560170763842],[103.89282396265725,1.335041822288138],[103.89440660698618,1.336080883039068],[103.89617617795149,1.337797238681332],[103.90482304697179,1.32945327359911],[103.90547064705294,1.328490812525985],[103.90584924819214,1.326599269164874],[103.90494236219291,1.319299845307498],[103.90523247507784,1.31686871937185],[103.90670620698207,1.313323499845671],[103.9015024156519,1.309540685952903],[103.89461827775717,1.309576809697707],[103.88972252983154,1.308588314083776],[103.89007430188433,1.307252253451283],[103.88923761355639,1.306161117895124],[103.88480067534573,1.305435876857032],[103.88375347070782,1.304587872982454]]]},"properties":{"PLN_AREA_N":"GEYLANG"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.68155941712637,1.309194739279214],[103.68110366071572,1.310623505007555],[103.68463527691426,1.311899926551964],[103.6892750911558,1.31454101131216],[103.69079433670652,1.315038286459237],[103.69404869826325,1.315379328988167],[103.69587469715897,1.315222184919041],[103.69626717904204,1.318253149922388],[103.69653484676377,1.322742490358928],[103.69650828326402,1.327763002220425],[103.70669632340991,1.327766636897525],[103.71327027572072,1.329320669144374],[103.72106178763644,1.331653516357108],[103.72105919391882,1.329836064375287],[103.72065552204042,1.328649176364047],[103.71936695081821,1.326483909550712],[103.71920119932327,1.325384642537383],[103.71959890856317,1.323588553856451],[103.72032617797436,1.319998083109475],[103.72023606427976,1.318124457928771],[103.71947730612628,1.314307870661126],[103.71788638771942,1.314621392222413],[103.7098121311425,1.314090678866866],[103.71007667312486,1.311126078344882],[103.70982796242718,1.307787054306097],[103.709828810576,1.307751890920168],[103.70982769556831,1.307750101131316],[103.70838926699254,1.307620447900629],[103.7084609339361,1.305457911615335],[103.70782380660653,1.304855128362534],[103.70746872494884,1.303122686421701],[103.70777999710374,1.302062463515426],[103.70240932448924,1.301837273666383],[103.70231773242735,1.30399306989019],[103.69948008967728,1.3049344060214],[103.69729101376821,1.307543927147306],[103.69533185335459,1.307783859854151],[103.69796688398183,1.305331059200689],[103.69954445870543,1.302602230934623],[103.69941007929644,1.299526264155937],[103.69617859540492,1.299617810079053],[103.69561279612414,1.300492788389118],[103.69529303218341,1.30316193600914],[103.69437485359542,1.30485188474721],[103.6947501123639,1.306004307075543],[103.69557448845998,1.306628651944497],[103.69506089085874,1.307864435267412],[103.69400396690439,1.306566410695289],[103.69350801791181,1.3047117055116],[103.69375052682787,1.30094056534913],[103.69087693876284,1.299871728215176],[103.68776000248718,1.299756858164593],[103.68388183374434,1.299095407052634],[103.6835181283145,1.300849384935578],[103.68250790790921,1.308953676893917],[103.68155941712637,1.309194739279214]]]},"properties":{"PLN_AREA_N":"BOON LAY"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.77120109707273,1.318732925126532],[103.77078270139407,1.320519956167405],[103.77110275937072,1.321887425190516],[103.77266919965612,1.324277211127778],[103.77462371529681,1.325239068748387],[103.77564504398104,1.326426737365673],[103.77051045834712,1.329466123975575],[103.76911654258915,1.329986811646069],[103.76812988876682,1.331212017949958],[103.7670776349357,1.33119008602909],[103.76504516716574,1.332097559432237],[103.7646077302215,1.332817581845465],[103.7656411902331,1.332453115808684],[103.76532828192501,1.335451924520798],[103.76450075946158,1.336611405268793],[103.76414709571907,1.339355670226637],[103.76468592273515,1.339576967032049],[103.76512467453057,1.342108443929901],[103.76689552575091,1.342216582552045],[103.76648525775215,1.343310979101491],[103.76536761054437,1.344624400902688],[103.76419858126678,1.345021247929102],[103.76318337967965,1.346712644034818],[103.76489883934835,1.347150030786387],[103.76730933113923,1.347339202002086],[103.7703840234761,1.349016439412977],[103.77187932919887,1.346599312958004],[103.77521027567714,1.34453053590551],[103.77782825991115,1.341856662185881],[103.77973901583293,1.342503341669689],[103.78113059622217,1.342270684504461],[103.78377222318896,1.343103318249689],[103.78737410487722,1.344712460975779],[103.78830597173962,1.345692806522012],[103.78617701107898,1.34857548374347],[103.7916561046892,1.349270167714696],[103.79402821310873,1.349526986291355],[103.79643772846421,1.348882433222871],[103.79849554589497,1.347378250910671],[103.80421311111336,1.341352450833885],[103.8073736825589,1.341029434093434],[103.80857531763724,1.341810880780915],[103.80990241134407,1.341744703501808],[103.80986108558109,1.340905724226463],[103.81168750814038,1.340454581779051],[103.81165010707228,1.339572106237587],[103.81357993470111,1.338198018627585],[103.81457069150784,1.33835132889444],[103.81674840876107,1.336347478261433],[103.81861835623731,1.335787408265597],[103.81661196457522,1.332747668858999],[103.81401432886821,1.328469618446705],[103.81335644917748,1.323294813850596],[103.81302529926985,1.321830953274745],[103.81158558538024,1.32014088979249],[103.80899271490846,1.318702853579828],[103.80519268853895,1.315224966268005],[103.80464052748086,1.314367261476628],[103.8033540090134,1.310194018791847],[103.8022839818715,1.307242212959725],[103.80032196329908,1.308739963858564],[103.79904904713993,1.308002721330195],[103.79747864050701,1.30879548059771],[103.79680238186366,1.309648901517217],[103.79538802652044,1.309885796748254],[103.79425435809746,1.311487146504784],[103.79401968019664,1.312829877198752],[103.7931321030543,1.313390742614862],[103.7913230768773,1.311491121334978],[103.7896009939722,1.313283046397108],[103.78769779749746,1.31459428629661],[103.78668279022399,1.315799004688954],[103.78479122222893,1.315011758080559],[103.78584585966549,1.313569941308484],[103.78477702717082,1.310994464501958],[103.7809048704905,1.312463007589578],[103.77890872693128,1.312992981848121],[103.77770992693951,1.314074856229029],[103.77120109707273,1.318732925126532]]]},"properties":{"PLN_AREA_N":"BUKIT TIMAH"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.84432443112314,1.310556231108791],[103.84004674821074,1.312384969445048],[103.83908029797621,1.313108914006046],[103.8353398251071,1.317369007500383],[103.83510853725798,1.317548180406612],[103.82300748927048,1.32155705334101],[103.82175023272434,1.32190996610874],[103.8201179103329,1.322360811704154],[103.81892747511246,1.322657079407702],[103.81335644917748,1.323294813850596],[103.81401432886821,1.328469618446705],[103.81661196457522,1.332747668858999],[103.81861835623731,1.335787408265597],[103.81992897975827,1.338993876339074],[103.82112846317658,1.339956887035761],[103.82480044156038,1.341150206202709],[103.82808944353313,1.341150019270371],[103.82928740941023,1.340798818838976],[103.83356382284427,1.34049851348821],[103.83598820338983,1.341683699817672],[103.83714354819483,1.339771944070647],[103.83732032157425,1.337986333928395],[103.83710099813298,1.335264706187786],[103.83905147700594,1.330788847558312],[103.84057766604774,1.328846149936147],[103.8430151359213,1.329591280065129],[103.84775339201393,1.329751748038696],[103.85582436622256,1.329102173624864],[103.8576763469858,1.329356938950105],[103.86115518093618,1.33050574058667],[103.86235230090725,1.33043906781362],[103.86218448805685,1.328626970282211],[103.86089526409977,1.326317606242237],[103.85806818004806,1.323655730626482],[103.85627330093537,1.32161393335946],[103.85451670905789,1.320173321592198],[103.85214885248786,1.318851981761861],[103.84830354926156,1.317078888099444],[103.84671116130922,1.315895167075955],[103.84578478596715,1.31477135952705],[103.84432443112314,1.310556231108791]]]},"properties":{"PLN_AREA_N":"NOVENA"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.98381962819508,1.31668035919516],[103.98274226640733,1.316314457302291],[103.98018430818836,1.316618104946428],[103.97669619110864,1.315431499824771],[103.97522444191205,1.315989103689396],[103.97300992952995,1.316093740250509],[103.97111719848967,1.315526135622602],[103.97013002464304,1.315833600140004],[103.96637238161517,1.314525638332798],[103.96473705814526,1.314134577013296],[103.96363401398479,1.314419559040436],[103.9606560577129,1.320901789202044],[103.95987551877549,1.321918061383409],[103.95417182388482,1.326603638313504],[103.94897529981213,1.334334341008323],[103.93914730032228,1.336273646359316],[103.93833046952042,1.336743247704099],[103.93192898005594,1.343093956503653],[103.9293504617399,1.345548459939141],[103.92629803566531,1.347443134942161],[103.92497049593156,1.348585065392398],[103.92563902417629,1.349430247931376],[103.93026154656408,1.357913487637572],[103.93093789869228,1.360684202538],[103.93093095741827,1.366109992043224],[103.93039913668332,1.370963686489368],[103.93071225022133,1.37313686602038],[103.93188765443531,1.375782069103441],[103.93510627194479,1.37427932256602],[103.94074480797728,1.371212948248451],[103.94463928514492,1.367959025523487],[103.9470399790104,1.367019704657603],[103.95322736287979,1.365558489481947],[103.95552352004475,1.364795274073554],[103.95829439000623,1.363181547937252],[103.96115023544439,1.360241516729424],[103.962612757197,1.357641750128677],[103.96428702502968,1.352698726843564],[103.96516177109872,1.350030263183839],[103.96780596958823,1.345667678015124],[103.9701798249878,1.342023237162304],[103.97241572172983,1.340160208099228],[103.97710645374345,1.338143252471665],[103.98083773301789,1.336162149543256],[103.98474618287746,1.334491609079598],[103.97958757277812,1.322206443500292],[103.98068278304814,1.320774251134477],[103.98481794081937,1.318999675391829],[103.98381962819508,1.31668035919516]]]},"properties":{"PLN_AREA_N":"TAMPINES"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.7646077302215,1.332817581845465],[103.76092442614117,1.334741527781881],[103.75283686888893,1.339270402025497],[103.7494151336269,1.341267038921699],[103.74530430739858,1.343643179931546],[103.74242199669168,1.344838608576252],[103.73973839929003,1.345085972855723],[103.73726409671123,1.34600303693633],[103.73824767963585,1.347974962827438],[103.73825611828222,1.349357578932417],[103.73666554046008,1.35387760055167],[103.73655308301218,1.355112546362589],[103.7369827367864,1.356607907194552],[103.7399845651417,1.360043617169101],[103.74411082969146,1.365143146617296],[103.74848611901146,1.369052415485469],[103.75128368424842,1.371728475780862],[103.75195457808354,1.372691750709595],[103.75297172155727,1.375211355213732],[103.75380984944908,1.37627853404107],[103.75789688639063,1.378245091093138],[103.76124029618575,1.379669461087535],[103.76232912055086,1.376706444616413],[103.76327689246804,1.37161250933948],[103.76385278187813,1.370360130949624],[103.76725143597649,1.365193591586322],[103.76764692035631,1.364055449885689],[103.76709199442129,1.360543221346093],[103.76760953920308,1.357376383371574],[103.76884738614123,1.355383178262448],[103.76980487337448,1.35243657468852],[103.7703840234761,1.349016439412977],[103.76730933113923,1.347339202002086],[103.76489883934835,1.347150030786387],[103.76318337967965,1.346712644034818],[103.76419858126678,1.345021247929102],[103.76536761054437,1.344624400902688],[103.76648525775215,1.343310979101491],[103.76689552575091,1.342216582552045],[103.76512467453057,1.342108443929901],[103.76468592273515,1.339576967032049],[103.76414709571907,1.339355670226637],[103.76450075946158,1.336611405268793],[103.76532828192501,1.335451924520798],[103.7656411902331,1.332453115808684],[103.7646077302215,1.332817581845465]]]},"properties":{"PLN_AREA_N":"BUKIT BATOK"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.69650828326402,1.327763002220425],[103.67934418148222,1.327773376770219],[103.67945344592854,1.330203396131243],[103.67590386461418,1.330497952767961],[103.67493190292262,1.331049776527063],[103.67551371243843,1.331907759756576],[103.67721790342485,1.337226757089778],[103.67860097678823,1.338984574316827],[103.6818772712662,1.339596470317998],[103.68272101825245,1.340006381032491],[103.69031113406731,1.345912036440214],[103.69254672678274,1.348086770186732],[103.69466482460865,1.350760164203798],[103.69699577601824,1.354036691359404],[103.7021988729308,1.360137303430509],[103.70624573364971,1.364348491716034],[103.71141500923116,1.359691575467715],[103.71407326839415,1.357428012214527],[103.71746062739437,1.355923712990223],[103.7184587769634,1.35570954721064],[103.7233200671206,1.355425922060466],[103.72506065355165,1.355001802402769],[103.72814262666749,1.353609209366154],[103.72816110537781,1.34436468135616],[103.72365447730083,1.345021681384974],[103.72185255930049,1.344917164320418],[103.7214002784483,1.342784048401696],[103.72184343498692,1.341375559934933],[103.72316467605701,1.340345564459029],[103.72508465905848,1.336773593517198],[103.72477623067974,1.328681650496036],[103.72601484019458,1.325032307183641],[103.71959890856317,1.323588553856451],[103.71920119932327,1.325384642537383],[103.71936695081821,1.326483909550712],[103.72065552204042,1.328649176364047],[103.72105919391882,1.329836064375287],[103.72106178763644,1.331653516357108],[103.71327027572072,1.329320669144374],[103.70669632340991,1.327766636897525],[103.69650828326402,1.327763002220425]]]},"properties":{"PLN_AREA_N":"JURONG WEST"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.88506195706918,1.34086055040524],[103.88320696245586,1.341228198701541],[103.87943587325418,1.342987349202373],[103.87744929368417,1.344162301718119],[103.87607370208384,1.344190641978417],[103.87431405820595,1.343506184353107],[103.87177932572553,1.34353643881404],[103.86996688332162,1.342744352232688],[103.8691292658112,1.342780946255496],[103.86556385763278,1.344268616732159],[103.86043696024461,1.3434034315038],[103.8571692390602,1.35266358268082],[103.8568628822868,1.355512347795921],[103.85739121521573,1.358158652705175],[103.8603851122945,1.366560305742575],[103.86086995460323,1.368261105393602],[103.86054181581363,1.371048425600925],[103.85942068347903,1.373617041319919],[103.85853432138275,1.376596398125274],[103.85826439187971,1.379186452850222],[103.85838438754752,1.382803131195083],[103.85811147784995,1.391111697728042],[103.85952250457464,1.390791304201036],[103.86886511529495,1.388197209499327],[103.87310966260189,1.387335101786589],[103.87637741771384,1.384554088142055],[103.87690819318016,1.382454220424996],[103.8767391381793,1.378747665305837],[103.87697179202755,1.373837329103991],[103.87630459427258,1.369389964811118],[103.87558980794003,1.367284778159074],[103.87344248806548,1.362885330768751],[103.8732694447654,1.362184802361449],[103.87403493224245,1.358955434497493],[103.87596956091818,1.356323039309068],[103.87807314769009,1.353877742499667],[103.87649334653793,1.352431170310709],[103.87922526555877,1.351031590158415],[103.88029749036316,1.348455158215583],[103.88042087226485,1.347302900938048],[103.88238867493253,1.344520780049517],[103.88362677642672,1.342230213775272],[103.88506195706918,1.34086055040524]]]},"properties":{"PLN_AREA_N":"SERANGOON"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.88887199886949,1.333560170763842],[103.88707877441163,1.337977525019873],[103.88506195706918,1.34086055040524],[103.88362677642672,1.342230213775272],[103.88238867493253,1.344520780049517],[103.88042087226485,1.347302900938048],[103.88029749036316,1.348455158215583],[103.87922526555877,1.351031590158415],[103.87649334653793,1.352431170310709],[103.87807314769009,1.353877742499667],[103.87596956091818,1.356323039309068],[103.87403493224245,1.358955434497493],[103.8732694447654,1.362184802361449],[103.87344248806548,1.362885330768751],[103.87558980794003,1.367284778159074],[103.87630459427258,1.369389964811118],[103.87697179202755,1.373837329103991],[103.8767391381793,1.378747665305837],[103.87690819318016,1.382454220424996],[103.87637741771384,1.384554088142055],[103.87310966260189,1.387335101786589],[103.87475487492246,1.387602424153719],[103.87697599126673,1.388478663738151],[103.87951496425411,1.388587704091762],[103.8815164574539,1.387738868702905],[103.88368164580284,1.386307137645893],[103.89089422342272,1.380299842934107],[103.8918562539094,1.380054332484691],[103.894849169761,1.380004658472171],[103.89710241545073,1.37937979833308],[103.9041955875615,1.380434240743438],[103.90630499224596,1.379799570229522],[103.90852094281412,1.378152448785267],[103.91004529076457,1.375856135241892],[103.90945282059789,1.374651036691238],[103.90679132785608,1.36654908412529],[103.90597223413417,1.364480448925592],[103.9019741017741,1.357156518831586],[103.9001513844275,1.356969350614792],[103.89966058352555,1.35616950056772],[103.89849302540716,1.356203744562294],[103.89724432024516,1.353586531043048],[103.89572555152264,1.354007724051975],[103.89349715360552,1.348762542317889],[103.89381693878717,1.347832848209034],[103.8961913951264,1.346774455839475],[103.89836278872696,1.347436933678786],[103.89915214345285,1.344282429681518],[103.89912635477899,1.343107242071064],[103.89793972526302,1.340356739692229],[103.89617617795149,1.337797238681332],[103.89440660698618,1.336080883039068],[103.89282396265725,1.335041822288138],[103.88887199886949,1.333560170763842]]]},"properties":{"PLN_AREA_N":"HOUGANG"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.91004529076457,1.375856135241892],[103.91204782604605,1.377739706583816],[103.91566635658788,1.380068886905523],[103.91749852126583,1.382364899303119],[103.92064889191683,1.379697835103687],[103.92394963469675,1.378376278180301],[103.92781102081008,1.377452811455914],[103.93188765443531,1.375782069103441],[103.93071225022133,1.37313686602038],[103.93039913668332,1.370963686489368],[103.93093095741827,1.366109992043224],[103.93093789869228,1.360684202538],[103.93026154656408,1.357913487637572],[103.92563902417629,1.349430247931376],[103.92497049593156,1.348585065392398],[103.92421573457798,1.348042315813093],[103.92009245993995,1.346238076751435],[103.91693390794173,1.343759250546262],[103.91589554084656,1.342275073574778],[103.91299531388843,1.344462760824218],[103.90887191025017,1.340833678460191],[103.9075909256417,1.339164879196194],[103.90233074182105,1.339203683671857],[103.90209775136442,1.338700371978434],[103.89933198255795,1.339568163929817],[103.89793972526302,1.340356739692229],[103.89912635477899,1.343107242071064],[103.89915214345285,1.344282429681518],[103.89836278872696,1.347436933678786],[103.8961913951264,1.346774455839475],[103.89381693878717,1.347832848209034],[103.89349715360552,1.348762542317889],[103.89572555152264,1.354007724051975],[103.89724432024516,1.353586531043048],[103.89849302540716,1.356203744562294],[103.89966058352555,1.35616950056772],[103.9001513844275,1.356969350614792],[103.9019741017741,1.357156518831586],[103.90597223413417,1.364480448925592],[103.90679132785608,1.36654908412529],[103.90945282059789,1.374651036691238],[103.91004529076457,1.375856135241892]]]},"properties":{"PLN_AREA_N":"PAYA LEBAR"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.86043696024461,1.3434034315038],[103.8543041220751,1.343205546737506],[103.84883174329997,1.343951117844604],[103.84401674289741,1.344063338365109],[103.84237471045448,1.344886793302032],[103.84120264405907,1.345070637500708],[103.83895364032307,1.343385447375376],[103.83652007133277,1.341995936447045],[103.8359246025966,1.342709391207183],[103.83707615196943,1.343460437280644],[103.8367787782889,1.346357137022785],[103.83578243594454,1.346289771221576],[103.83561106328453,1.347389858404212],[103.83383952075631,1.349573755769929],[103.83235050314508,1.349796518671621],[103.83207257619883,1.350817382298488],[103.82981885116276,1.353117948404267],[103.82673786130744,1.35419441503213],[103.82354651702715,1.352322678263038],[103.81903663119516,1.35418084330074],[103.8185371689009,1.354870317734009],[103.81916266373777,1.357446728954383],[103.82069354954642,1.361201161756026],[103.82434403843396,1.361775702806908],[103.82505509588094,1.363493021791616],[103.82710457879537,1.36269019484746],[103.82830004129958,1.36747164235783],[103.82833360448392,1.36799422300842],[103.83193548348503,1.367668232544553],[103.83357567211148,1.367268018275379],[103.8410117640182,1.364611683571432],[103.84554223020152,1.364113274982162],[103.84761651520051,1.3635855162765],[103.849356450499,1.362682483934137],[103.85339181712057,1.359297729055466],[103.85489178402545,1.356650295335881],[103.8568628822868,1.355512347795921],[103.8571692390602,1.35266358268082],[103.86043696024461,1.3434034315038]]]},"properties":{"PLN_AREA_N":"BISHAN"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.86235230090725,1.33043906781362],[103.86115518093618,1.33050574058667],[103.8576763469858,1.329356938950105],[103.85582436622256,1.329102173624864],[103.84775339201393,1.329751748038696],[103.8430151359213,1.329591280065129],[103.84057766604774,1.328846149936147],[103.83905147700594,1.330788847558312],[103.83710099813298,1.335264706187786],[103.83732032157425,1.337986333928395],[103.83714354819483,1.339771944070647],[103.83598820338983,1.341683699817672],[103.83652007133277,1.341995936447045],[103.83895364032307,1.343385447375376],[103.84120264405907,1.345070637500708],[103.84237471045448,1.344886793302032],[103.84401674289741,1.344063338365109],[103.84883174329997,1.343951117844604],[103.8543041220751,1.343205546737506],[103.86043696024461,1.3434034315038],[103.86556385763278,1.344268616732159],[103.8691292658112,1.342780946255496],[103.86996688332162,1.342744352232688],[103.87177932572553,1.34353643881404],[103.87431405820595,1.343506184353107],[103.87607370208384,1.344190641978417],[103.87744929368417,1.344162301718119],[103.87943587325418,1.342987349202373],[103.88320696245586,1.341228198701541],[103.88506195706918,1.34086055040524],[103.88707877441163,1.337977525019873],[103.88887199886949,1.333560170763842],[103.8798035220125,1.331529426306905],[103.87588884966478,1.33028173059946],[103.86874319468647,1.327819176686306],[103.86688608795298,1.328703590687592],[103.86235230090725,1.33043906781362]]]},"properties":{"PLN_AREA_N":"TOA PAYOH"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.7916561046892,1.349270167714696],[103.78617701107898,1.34857548374347],[103.78830597173962,1.345692806522012],[103.78737410487722,1.344712460975779],[103.78377222318896,1.343103318249689],[103.78113059622217,1.342270684504461],[103.77973901583293,1.342503341669689],[103.77782825991115,1.341856662185881],[103.77521027567714,1.34453053590551],[103.77187932919887,1.346599312958004],[103.7703840234761,1.349016439412977],[103.76980487337448,1.35243657468852],[103.76884738614123,1.355383178262448],[103.76760953920308,1.357376383371574],[103.76709199442129,1.360543221346093],[103.76764692035631,1.364055449885689],[103.76725143597649,1.365193591586322],[103.76385278187813,1.370360130949624],[103.76327689246804,1.37161250933948],[103.76232912055086,1.376706444616413],[103.76124029618575,1.379669461087535],[103.75942814972028,1.383042073049219],[103.75737772375699,1.385307057437654],[103.75599681834655,1.387189395934087],[103.75512947744859,1.388865897642869],[103.75893346367224,1.389234960779232],[103.76220534691238,1.390367681506655],[103.76587321686488,1.390808252841334],[103.77181269902735,1.390367953091781],[103.77445026157248,1.390289453272446],[103.77535933747724,1.383114098818534],[103.77597667880318,1.379828340673686],[103.77850577448818,1.370737001122628],[103.77917514784772,1.367992591301042],[103.77987273823076,1.36378187325141],[103.78063587798034,1.361068197812907],[103.7815813451854,1.359095892798204],[103.78365713904694,1.356483455048735],[103.78557295652885,1.354861326066321],[103.7889286788181,1.352697698197152],[103.79050350979603,1.351105342150079],[103.7916561046892,1.349270167714696]]]},"properties":{"PLN_AREA_N":"BUKIT PANJANG"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[104.01524616270076,1.315717475037625],[104.01878854765181,1.325036195411238],[104.02795756697189,1.346745309829314],[104.03219599385629,1.356934872471966],[104.03257060340478,1.355867097469722],[104.03159014144717,1.353796568147595],[104.02781578280249,1.34465761155458],[104.0256234198353,1.339679713023957],[104.02474617911373,1.337010936020269],[104.02276344544212,1.333085084070893],[104.02115825657305,1.32895907667022],[104.02069271875158,1.327304604200207],[104.02075765038823,1.325664796073418],[104.02138848887552,1.324321656187673],[104.03254994993404,1.324595728339999],[104.0327351552916,1.317994112288176],[104.03355339572066,1.317434562649933],[104.03269497973734,1.31617652360555],[104.02906343819966,1.316081349796431],[104.02895238154595,1.320375654770547],[104.02266464223753,1.320209208890084],[104.02277675209274,1.315915454179833],[104.01524616270076,1.315717475037625]]],[[[104.0329670977046,1.358785824947771],[104.0336442927576,1.360400874688835],[104.03701478270403,1.358161780453653],[104.0413466009889,1.354833469783749],[104.04261709177574,1.353236318023605],[104.04355424431849,1.350420138885025],[104.04334752263568,1.348905535727727],[104.04201509650905,1.348782694504627],[104.04185711830196,1.349665913606429],[104.04269578624755,1.351250034584572],[104.0419350944433,1.353460244725562],[104.0410422531644,1.354447163182705],[104.03785685507863,1.356932803144106],[104.03668406447727,1.357049239332876],[104.03473130476847,1.358350323812614],[104.0329670977046,1.358785824947771]]]]},"properties":{"PLN_AREA_N":"CHANGI BAY"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.8568628822868,1.355512347795921],[103.85489178402545,1.356650295335881],[103.85339181712057,1.359297729055466],[103.849356450499,1.362682483934137],[103.84761651520051,1.3635855162765],[103.84554223020152,1.364113274982162],[103.8410117640182,1.364611683571432],[103.83357567211148,1.367268018275379],[103.83193548348503,1.367668232544553],[103.82833360448392,1.36799422300842],[103.82830004129958,1.36747164235783],[103.82738162209178,1.369062886401698],[103.82794352966262,1.37176284468422],[103.82747460851046,1.372886186984059],[103.82630032289485,1.373513176823203],[103.82657854819766,1.374601210119302],[103.82630059990613,1.376191048181021],[103.82783188815542,1.377408486555814],[103.82728196789346,1.37909356897494],[103.82571310801244,1.379757223070169],[103.82415751427246,1.378660269887378],[103.82276490195449,1.379719801800299],[103.82170864953018,1.379576419848019],[103.82047418160936,1.380541370948291],[103.81806027370637,1.380159278993306],[103.81779202644644,1.380635971217969],[103.81934107887142,1.383389133116637],[103.81945207298205,1.385349824189065],[103.8188535960701,1.386687363383619],[103.81736167416273,1.386392585284749],[103.81706014415074,1.387719128022225],[103.81838398418616,1.388619775854587],[103.81801867188845,1.390458040050561],[103.81882248913352,1.394340858203949],[103.82340470625662,1.393137865370987],[103.82580152655521,1.392915704604403],[103.82973496676993,1.393265766166498],[103.83504081528325,1.394540007381921],[103.84046510017549,1.39598718677001],[103.84493985735432,1.396613088242689],[103.85007095894274,1.396469066075525],[103.85238819145135,1.397087633320005],[103.85365535721408,1.397614082774943],[103.85518171693596,1.397700230458505],[103.85675085622918,1.396953654620006],[103.85749263354829,1.396164025148739],[103.85804619329087,1.39316834883724],[103.85811147784995,1.391111697728042],[103.85838438754752,1.382803131195083],[103.85826439187971,1.379186452850222],[103.85853432138275,1.376596398125274],[103.85942068347903,1.373617041319919],[103.86054181581363,1.371048425600925],[103.86086995460323,1.368261105393602],[103.8603851122945,1.366560305742575],[103.85739121521573,1.358158652705175],[103.8568628822868,1.355512347795921]]]},"properties":{"PLN_AREA_N":"ANG MO KIO"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.96428702502968,1.352698726843564],[103.962612757197,1.357641750128677],[103.96115023544439,1.360241516729424],[103.95829439000623,1.363181547937252],[103.95552352004475,1.364795274073554],[103.95322736287979,1.365558489481947],[103.9470399790104,1.367019704657603],[103.94463928514492,1.367959025523487],[103.94074480797728,1.371212948248451],[103.93510627194479,1.37427932256602],[103.93188765443531,1.375782069103441],[103.92781102081008,1.377452811455914],[103.92394963469675,1.378376278180301],[103.92064889191683,1.379697835103687],[103.91749852126583,1.382364899303119],[103.9143258308124,1.385926360326872],[103.91493697365601,1.386768861194394],[103.91648670254322,1.390322499351837],[103.91989997192239,1.394317289464989],[103.92283199804541,1.396919517078481],[103.92494663831987,1.398329787229286],[103.93017854885002,1.400592120607066],[103.9301373948423,1.399696115872681],[103.9340793326067,1.40114875675479],[103.93477911792675,1.400988154975987],[103.93848275366592,1.397415560618466],[103.93849626957903,1.39649447579819],[103.93662430339735,1.394766709438359],[103.93615185430217,1.393399534716029],[103.9375689406621,1.393247466784734],[103.93995759292314,1.395328716117627],[103.94074320257761,1.395241874922283],[103.94290536848533,1.393095688160415],[103.94323437563712,1.392246636483246],[103.94262428813317,1.388291529781208],[103.94375507188062,1.386702547335456],[103.94924069142542,1.382989645543631],[103.95350385220611,1.381931871054797],[103.95835335970347,1.381327093871672],[103.96135545710874,1.381546522058691],[103.96450004748267,1.382123465245376],[103.96622424511234,1.380610654646582],[103.9675064063923,1.381087167241658],[103.96781427086025,1.382001485631488],[103.9673654322712,1.383221660594417],[103.96925087532138,1.38438895421516],[103.97069672744031,1.386154636311139],[103.97290198382488,1.387716205856875],[103.9746541319267,1.385958816657923],[103.97854824227319,1.379018525708067],[103.97794502122413,1.377058187654158],[103.97490143746896,1.373999598540877],[103.97598557124715,1.373185195962829],[103.97886669602777,1.372512281280267],[103.97998357089466,1.370920541272794],[103.97911208041606,1.369581219400478],[103.97566635340182,1.36660047958586],[103.97451879137263,1.363392651568059],[103.97387172939476,1.362652835957524],[103.97155061233327,1.3615084443917],[103.96995763785996,1.35957713734942],[103.96860319553002,1.354564011698726],[103.96775572960726,1.353756455834281],[103.96428702502968,1.352698726843564]]]},"properties":{"PLN_AREA_N":"PASIR RIS"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.73726409671123,1.34600303693633],[103.7360047008653,1.346950061099131],[103.73209726760159,1.351113700416072],[103.72814262666749,1.353609209366154],[103.72506065355165,1.355001802402769],[103.7233200671206,1.355425922060466],[103.7184587769634,1.35570954721064],[103.71746062739437,1.355923712990223],[103.71407326839415,1.357428012214527],[103.71141500923116,1.359691575467715],[103.70624573364971,1.364348491716034],[103.70865993864052,1.366120496731783],[103.71157692617143,1.367397629367416],[103.71455718942096,1.368059476220796],[103.72133983736767,1.370136392692236],[103.72299991904234,1.370840600589486],[103.72680489359226,1.373425238173238],[103.73053604659641,1.37707468276731],[103.73266667239348,1.37893425727455],[103.73540149517525,1.376036633263255],[103.73836855267007,1.373833571063814],[103.74182144793909,1.372556928631896],[103.74570616697314,1.371562168794176],[103.74848611901146,1.369052415485469],[103.74411082969146,1.365143146617296],[103.7399845651417,1.360043617169101],[103.7369827367864,1.356607907194552],[103.73655308301218,1.355112546362589],[103.73666554046008,1.35387760055167],[103.73825611828222,1.349357578932417],[103.73824767963585,1.347974962827438],[103.73726409671123,1.34600303693633]]]},"properties":{"PLN_AREA_N":"TENGAH"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.74848611901146,1.369052415485469],[103.74570616697314,1.371562168794176],[103.74182144793909,1.372556928631896],[103.73836855267007,1.373833571063814],[103.73540149517525,1.376036633263255],[103.73266667239348,1.37893425727455],[103.74156957843701,1.386612658715883],[103.74041359370561,1.389115230717533],[103.74016297920122,1.390347062582494],[103.74072038096959,1.392531934159201],[103.74207484903204,1.3947129146449],[103.74283624622997,1.396778424207054],[103.74364559044109,1.402099712534701],[103.74454238704881,1.403822170363541],[103.74601761284146,1.405487955224344],[103.74910587638693,1.40534359012024],[103.75101504188483,1.404943740213452],[103.7522190337471,1.404194236493189],[103.7528495505492,1.402816178125626],[103.75232113845554,1.40119855257449],[103.75202933463507,1.397868266724392],[103.75332082867686,1.388999409370193],[103.75512947744859,1.388865897642869],[103.75599681834655,1.387189395934087],[103.75737772375699,1.385307057437654],[103.75942814972028,1.383042073049219],[103.76124029618575,1.379669461087535],[103.75789688639063,1.378245091093138],[103.75380984944908,1.37627853404107],[103.75297172155727,1.375211355213732],[103.75195457808354,1.372691750709595],[103.75128368424842,1.371728475780862],[103.74848611901146,1.369052415485469]]]},"properties":{"PLN_AREA_N":"CHOA CHU KANG"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.91749852126583,1.382364899303119],[103.91566635658788,1.380068886905523],[103.91204782604605,1.377739706583816],[103.91004529076457,1.375856135241892],[103.90852094281412,1.378152448785267],[103.90630499224596,1.379799570229522],[103.9041955875615,1.380434240743438],[103.89710241545073,1.37937979833308],[103.894849169761,1.380004658472171],[103.8918562539094,1.380054332484691],[103.89089422342272,1.380299842934107],[103.88368164580284,1.386307137645893],[103.8815164574539,1.387738868702905],[103.87951496425411,1.388587704091762],[103.87697599126673,1.388478663738151],[103.87475487492246,1.387602424153719],[103.87310966260189,1.387335101786589],[103.86886511529495,1.388197209499327],[103.85952250457464,1.390791304201036],[103.85811147784995,1.391111697728042],[103.85804619329087,1.39316834883724],[103.85749263354829,1.396164025148739],[103.85675085622918,1.396953654620006],[103.85518171693596,1.397700230458505],[103.85365535721408,1.397614082774943],[103.85238819145135,1.397087633320005],[103.85535247383737,1.39939228666331],[103.85563521369447,1.401231800112658],[103.85788116497282,1.400462996697965],[103.86097157975065,1.400892891272626],[103.87211363285768,1.401082759110481],[103.87823326777188,1.401374451152416],[103.88223691734031,1.401405129703979],[103.88680747870154,1.401207473668542],[103.8899606329434,1.400881768522818],[103.89597122683838,1.399924120639728],[103.8996183489571,1.398856800334671],[103.90128479005072,1.398165190180533],[103.90510928302858,1.395802844182802],[103.90738705247,1.393850208361584],[103.9143258308124,1.385926360326872],[103.91749852126583,1.382364899303119]]]},"properties":{"PLN_AREA_N":"SENGKANG"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.0336442927576,1.360400874688835],[104.0329670977046,1.358785824947771],[104.03127554856367,1.357578358232856],[104.03219599385629,1.356934872471966],[104.02795756697189,1.346745309829314],[104.01878854765181,1.325036195411238],[104.01524616270076,1.315717475037625],[104.01073961762337,1.315220937902119],[104.00817405014195,1.313750222109523],[104.0065911441462,1.31241930425398],[104.00451582901586,1.31112699910663],[104.0021674528086,1.310413935453594],[103.99923460780437,1.310796415047407],[103.99127367659753,1.3142176885357],[103.98499427241168,1.312728045084583],[103.98518895778199,1.313592041192831],[103.98456293555691,1.316036623771408],[103.98381962819508,1.31668035919516],[103.98481794081937,1.318999675391829],[103.98068278304814,1.320774251134477],[103.97958757277812,1.322206443500292],[103.98474618287746,1.334491609079598],[103.98083773301789,1.336162149543256],[103.97710645374345,1.338143252471665],[103.97241572172983,1.340160208099228],[103.9701798249878,1.342023237162304],[103.96780596958823,1.345667678015124],[103.96516177109872,1.350030263183839],[103.96428702502968,1.352698726843564],[103.96775572960726,1.353756455834281],[103.96860319553002,1.354564011698726],[103.96995763785996,1.35957713734942],[103.97155061233327,1.3615084443917],[103.97387172939476,1.362652835957524],[103.97451879137263,1.363392651568059],[103.97566635340182,1.36660047958586],[103.97911208041606,1.369581219400478],[103.97998357089466,1.370920541272794],[103.97886669602777,1.372512281280267],[103.97598557124715,1.373185195962829],[103.97490143746896,1.373999598540877],[103.97794502122413,1.377058187654158],[103.97854824227319,1.379018525708067],[103.9746541319267,1.385958816657923],[103.97290198382488,1.387716205856875],[103.97388002945132,1.390506734664179],[103.97649723760355,1.392393113838085],[103.98073594447992,1.392757987686475],[103.9813657629399,1.393496594820418],[103.98405316765069,1.393152077049467],[103.9842217348194,1.393514609125514],[103.98803273716968,1.393132771673146],[103.99311373595924,1.39158044372157],[103.99507091643657,1.391404842765259],[103.99713961001132,1.390362637196879],[103.99913163701243,1.388932662898773],[104.00068962282332,1.386197538131285],[104.00105401009387,1.384675471138272],[104.0028591106592,1.381644783862175],[104.00416091842233,1.378151943440932],[104.00546722803493,1.376234749127164],[104.00616436605624,1.374506881332992],[104.00714855851929,1.373635938743654],[104.00886200157953,1.373642495935251],[104.00869627373928,1.372587065794229],[104.00682398687782,1.37251380534268],[104.00567332417828,1.369527097630771],[104.00665354726885,1.369698781677111],[104.00893208296957,1.36878832485812],[104.01074657857009,1.368731862412313],[104.01247952046624,1.369854415041525],[104.01360516949286,1.370097727677227],[104.0198222203938,1.36748834989749],[104.02115968865118,1.366605336041619],[104.02799748726808,1.363696212057634],[104.03211739287532,1.360986494548805],[104.0336442927576,1.360400874688835]]]},"properties":{"PLN_AREA_N":"CHANGI"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.9143258308124,1.385926360326872],[103.90738705247,1.393850208361584],[103.90510928302858,1.395802844182802],[103.90128479005072,1.398165190180533],[103.8996183489571,1.398856800334671],[103.89597122683838,1.399924120639728],[103.8899606329434,1.400881768522818],[103.88680747870154,1.401207473668542],[103.88737622788314,1.403789713528094],[103.8881950166007,1.404642130294659],[103.89094409941012,1.406073536483827],[103.89303530231123,1.407995951522873],[103.89581147719328,1.41138941440844],[103.89741458993163,1.414905499184847],[103.89741490894947,1.414906210005578],[103.8974636746469,1.415014818168594],[103.89813062319838,1.414733466548149],[103.89926323659121,1.416913210526297],[103.90178616885169,1.41903259903153],[103.90409348564745,1.420237816523861],[103.9054667849259,1.420367230682516],[103.90695621289497,1.420024942561591],[103.90802973769566,1.421054508139251],[103.91072116071713,1.421506932417199],[103.91253858267147,1.421119329151166],[103.91398129142709,1.418187109782933],[103.91410751363206,1.416249694790331],[103.91503049644433,1.416378946356336],[103.91570698152128,1.417344952853622],[103.91662832825291,1.416939245983408],[103.91878273920408,1.414815992390795],[103.91927972431844,1.413481848691492],[103.92133592658566,1.412710805462954],[103.92350124032627,1.411204312992342],[103.92556763796475,1.408835169005454],[103.92774878881279,1.406650264561589],[103.93087484923224,1.403872951291191],[103.93067910904978,1.401952683628878],[103.93017854885002,1.400592120607066],[103.92494663831987,1.398329787229286],[103.92283199804541,1.396919517078481],[103.91989997192239,1.394317289464989],[103.91648670254322,1.390322499351837],[103.91493697365601,1.386768861194394],[103.9143258308124,1.385926360326872]]]},"properties":{"PLN_AREA_N":"PUNGGOL"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.77445026157248,1.390289453272446],[103.77181269902735,1.390367953091781],[103.76587321686488,1.390808252841334],[103.76220534691238,1.390367681506655],[103.75893346367224,1.389234960779232],[103.75512947744859,1.388865897642869],[103.75332082867686,1.388999409370193],[103.75202933463507,1.397868266724392],[103.75232113845554,1.40119855257449],[103.7528495505492,1.402816178125626],[103.7522190337471,1.404194236493189],[103.75101504188483,1.404943740213452],[103.74910587638693,1.40534359012024],[103.74601761284146,1.405487955224344],[103.74413573627507,1.406076777661393],[103.7425639029975,1.407207673102319],[103.7418838061074,1.408258361344442],[103.74155550647954,1.410193569032201],[103.74209652988296,1.412820054482968],[103.7420339904754,1.414214661740147],[103.7393285635749,1.422280703176586],[103.74199566119333,1.424797124230831],[103.74325811825452,1.426370765400313],[103.74359613047992,1.428268358684735],[103.74319163570223,1.431795357270123],[103.74262345348062,1.433673061102447],[103.74178771008248,1.434966266187769],[103.7407856801334,1.438285004777898],[103.73848368712794,1.438315014099358],[103.73720908296764,1.437408078404822],[103.73699792831633,1.438718545839843],[103.73773545842906,1.440642217544053],[103.73842398758357,1.44078205642626],[103.73870828124184,1.438901280097149],[103.74216074651254,1.438900075873628],[103.74289777138596,1.439278999867853],[103.7429219933737,1.445213491468445],[103.74420346631454,1.446292592611521],[103.75728241237,1.443505957988569],[103.75885934178592,1.443451831929676],[103.7603815521764,1.444124220283854],[103.76187493955824,1.44435253918767],[103.76439561737477,1.443449885949175],[103.76519210522908,1.442985281818602],[103.76676354554857,1.440679366387172],[103.7684174160202,1.440510511925189],[103.76855346051049,1.434049954153212],[103.76890843300782,1.431351300960726],[103.77041714307713,1.427030039424581],[103.77112770376395,1.424173083801312],[103.77126627385583,1.421507579700324],[103.77148505672395,1.411453010811588],[103.7716817470618,1.409991160486875],[103.77183479877591,1.40888660487544],[103.77335644052427,1.40278939795365],[103.77378443013187,1.399897423421078],[103.77398415630333,1.394154754981962],[103.77445026157248,1.390289453272446]]]},"properties":{"PLN_AREA_N":"SUNGEI KADUT"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.81882248913352,1.394340858203949],[103.81644277554979,1.395096268383279],[103.8145304890553,1.396669281988318],[103.81323391055521,1.39981038153677],[103.81180868410802,1.402726447963969],[103.80912773024644,1.406312118816078],[103.80819311124857,1.40815199474984],[103.80577658482079,1.414355000813448],[103.80676444958576,1.414326735660087],[103.8095499408276,1.41541825004435],[103.81111105747401,1.415272618728705],[103.81466384332518,1.41370336635952],[103.81653790611807,1.413640040016986],[103.82102499310484,1.414242778033908],[103.82307967379973,1.413411020154673],[103.82487943463437,1.420814129639551],[103.82557286274671,1.424871510848559],[103.82665404274219,1.42723713292886],[103.82685369526182,1.428623423777902],[103.82660914931235,1.432714291964261],[103.82588445678041,1.435363086215239],[103.82775673047078,1.436495681495888],[103.8290502294102,1.437973752922172],[103.83031467910594,1.441626478303667],[103.8366941462159,1.445616141640464],[103.83793231653142,1.444337206400367],[103.84093995712394,1.442332748465353],[103.84414585169617,1.439743183960023],[103.8455037573167,1.437645967526942],[103.84618135115437,1.435744760585827],[103.84723539214342,1.434284409494509],[103.85218290785001,1.429499280327318],[103.85463073407264,1.427789452374932],[103.8619700789447,1.424478308420302],[103.86213066712966,1.42463003060846],[103.86379403935013,1.423822929563239],[103.86513015732002,1.424529997233837],[103.86724406110568,1.425077228131724],[103.8670478140487,1.424635612146261],[103.86403489060972,1.421865831650614],[103.86205852363172,1.418585946848732],[103.86142923131531,1.416064039367103],[103.86186386154725,1.412859707474028],[103.86163841272918,1.41132060687198],[103.86088573907654,1.409784715816111],[103.85964877106247,1.408533521973309],[103.85606158671031,1.406008549640581],[103.85505655500373,1.404873445049426],[103.85486732930543,1.402692498053983],[103.85563521369447,1.401231800112658],[103.85535247383737,1.39939228666331],[103.85238819145135,1.397087633320005],[103.85007095894274,1.396469066075525],[103.84493985735432,1.396613088242689],[103.84046510017549,1.39598718677001],[103.83504081528325,1.394540007381921],[103.82973496676993,1.393265766166498],[103.82580152655521,1.392915704604403],[103.82340470625662,1.393137865370987],[103.81882248913352,1.394340858203949]],[[103.85732879884236,1.425528086639269],[103.8599631651782,1.424506043246793],[103.86166063316767,1.423538910746298],[103.86316032891582,1.423614930621314],[103.85761506605058,1.426236412074453],[103.85732879884236,1.425528086639269]]]},"properties":{"PLN_AREA_N":"YISHUN"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.80577658482079,1.414355000813448],[103.80342789651893,1.415966030577374],[103.80131128259033,1.41606579957859],[103.79467933040821,1.414341718309444],[103.78955910491166,1.412545336254519],[103.78764322489597,1.412304263617794],[103.78322054343484,1.410903115503603],[103.77947325280768,1.410720992809202],[103.77603637259776,1.410775543708532],[103.77295116548008,1.409924268355231],[103.7716817470618,1.409991160486875],[103.77148505672395,1.411453010811588],[103.77126627385583,1.421507579700324],[103.77480985830414,1.424235507754773],[103.77756749244242,1.425588153353822],[103.77986990579767,1.426250725078178],[103.78253036248825,1.426550640094869],[103.78521151904573,1.426460896598182],[103.78755936140216,1.426028829035181],[103.78966701178506,1.425332545542227],[103.79496919953813,1.422566240039711],[103.79598123932882,1.423578227951889],[103.8105271841622,1.440428903798356],[103.81146951667735,1.442447622810839],[103.81170029081717,1.4442777604272],[103.81471496097622,1.442988326583278],[103.81857994935228,1.440436954296199],[103.821204832421,1.437823323428754],[103.82265177979419,1.43594239427651],[103.82443334961334,1.435048764846208],[103.82588445678041,1.435363086215239],[103.82660914931235,1.432714291964261],[103.82685369526182,1.428623423777902],[103.82665404274219,1.42723713292886],[103.82557286274671,1.424871510848559],[103.82487943463437,1.420814129639551],[103.82307967379973,1.413411020154673],[103.82102499310484,1.414242778033908],[103.81653790611807,1.413640040016986],[103.81466384332518,1.41370336635952],[103.81111105747401,1.415272618728705],[103.8095499408276,1.41541825004435],[103.80676444958576,1.414326735660087],[103.80577658482079,1.414355000813448]]]},"properties":{"PLN_AREA_N":"MANDAI"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[103.89741490355802,1.414906212718814],[103.8974636746469,1.415014818168594],[103.89741490894947,1.414906210005578],[103.89741490355802,1.414906212718814]]],[[[103.88680747870154,1.401207473668542],[103.88223691734031,1.401405129703979],[103.87823326777188,1.401374451152416],[103.87211363285768,1.401082759110481],[103.86097157975065,1.400892891272626],[103.85788116497282,1.400462996697965],[103.85563521369447,1.401231800112658],[103.85486732930543,1.402692498053983],[103.85505655500373,1.404873445049426],[103.85606158671031,1.406008549640581],[103.85964877106247,1.408533521973309],[103.86088573907654,1.409784715816111],[103.86163841272918,1.41132060687198],[103.86186386154725,1.412859707474028],[103.86142923131531,1.416064039367103],[103.86205852363172,1.418585946848732],[103.86403489060972,1.421865831650614],[103.8670478140487,1.424635612146261],[103.86724406110568,1.425077228131724],[103.86919549166704,1.426793946530592],[103.86966565223524,1.428469406628635],[103.87334320261681,1.430988422841865],[103.87533091717609,1.431819804690414],[103.87713026351088,1.431986300314473],[103.87921749031155,1.431542379530015],[103.88050739829077,1.430851989224548],[103.88517460041712,1.427582613985876],[103.88812373616729,1.425765272079085],[103.88654621306654,1.423594648873046],[103.88727416924026,1.423169791738512],[103.88867966961296,1.425436061366004],[103.89001725945117,1.424782436143238],[103.89501830557678,1.421853263905152],[103.89713404115317,1.420352244178901],[103.8977981314864,1.418042274588853],[103.89667170440943,1.415255440514981],[103.89741490355802,1.414906212718814],[103.89741458993163,1.414905499184847],[103.89581147719328,1.41138941440844],[103.89303530231123,1.407995951522873],[103.89094409941012,1.406073536483827],[103.8881950166007,1.404642130294659],[103.88737622788314,1.403789713528094],[103.88680747870154,1.401207473668542]],[[103.86846514616371,1.425687797190886],[103.86736150797809,1.424716900759365],[103.86996479731569,1.424494794994265],[103.87059794713127,1.425441636357287],[103.86935838970437,1.426473603888597],[103.86846514616371,1.425687797190886]]]]},"properties":{"PLN_AREA_N":"SELETAR"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.77126627385583,1.421507579700324],[103.77112770376395,1.424173083801312],[103.77041714307713,1.427030039424581],[103.76890843300782,1.431351300960726],[103.76855346051049,1.434049954153212],[103.7684174160202,1.440510511925189],[103.76676354554857,1.440679366387172],[103.76519210522908,1.442985281818602],[103.76439561737477,1.443449885949175],[103.76683738280958,1.444192543409165],[103.76749020363289,1.446563524937801],[103.76897413477637,1.447751611507413],[103.76986022210708,1.449825983359566],[103.76905359910545,1.452488423457342],[103.76940800199257,1.452685973598983],[103.7706180157313,1.448706547760185],[103.77457087652773,1.450801557439719],[103.77672970573147,1.451500210790461],[103.77973937769849,1.453475391291125],[103.78347224137833,1.455584090749149],[103.78567942264235,1.457880760306894],[103.7872062146214,1.458713214405472],[103.78986243918656,1.460831177086167],[103.7917916493401,1.462044598088424],[103.7933367774729,1.460266760113633],[103.79411093932275,1.45864683385218],[103.79509240278797,1.4574904314284],[103.79757333535937,1.455520620568266],[103.80049679726316,1.456671009301123],[103.80122853071757,1.454026779577104],[103.80322036132846,1.449690772985335],[103.80399487368211,1.44862872217715],[103.80633489137122,1.446720331768445],[103.80820895689766,1.445669454883689],[103.81170029081717,1.4442777604272],[103.81146951667735,1.442447622810839],[103.8105271841622,1.440428903798356],[103.79598123932882,1.423578227951889],[103.79496919953813,1.422566240039711],[103.78966701178506,1.425332545542227],[103.78755936140216,1.426028829035181],[103.78521151904573,1.426460896598182],[103.78253036248825,1.426550640094869],[103.77986990579767,1.426250725078178],[103.77756749244242,1.425588153353822],[103.77480985830414,1.424235507754773],[103.77126627385583,1.421507579700324]]]},"properties":{"PLN_AREA_N":"WOODLANDS"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.7393285635749,1.422280703176586],[103.7420339904754,1.414214661740147],[103.74209652988296,1.412820054482968],[103.74155550647954,1.410193569032201],[103.7418838061074,1.408258361344442],[103.7425639029975,1.407207673102319],[103.74413573627507,1.406076777661393],[103.74601761284146,1.405487955224344],[103.74454238704881,1.403822170363541],[103.74364559044109,1.402099712534701],[103.74283624622997,1.396778424207054],[103.74207484903204,1.3947129146449],[103.74072038096959,1.392531934159201],[103.74016297920122,1.390347062582494],[103.74041359370561,1.389115230717533],[103.74156957843701,1.386612658715883],[103.73266667239348,1.37893425727455],[103.73053604659641,1.37707468276731],[103.72680489359226,1.373425238173238],[103.72299991904234,1.370840600589486],[103.72133983736767,1.370136392692236],[103.71455718942096,1.368059476220796],[103.71157692617143,1.367397629367416],[103.70865993864052,1.366120496731783],[103.70624573364971,1.364348491716034],[103.7021988729308,1.360137303430509],[103.69699577601824,1.354036691359404],[103.69466482460865,1.350760164203798],[103.69254672678274,1.348086770186732],[103.69031113406731,1.345912036440214],[103.68272101825245,1.340006381032491],[103.6818772712662,1.339596470317998],[103.67860097678823,1.338984574316827],[103.67721790342485,1.337226757089778],[103.67551371243843,1.331907759756576],[103.67493190292262,1.331049776527063],[103.67398261827121,1.330499395906039],[103.67120683014397,1.329837422479025],[103.66772146838156,1.327987857730117],[103.66544573153823,1.330137780982886],[103.66475388684366,1.330325643386084],[103.65713755868248,1.33356865843727],[103.65672573638665,1.334543149239396],[103.65474712407087,1.33614103333613],[103.6519593103147,1.338764101171462],[103.65139087563836,1.340666894480404],[103.65208231097407,1.342353362152752],[103.65171081079339,1.343466738939563],[103.64987640082585,1.344883513105319],[103.64777912107992,1.345043805066646],[103.64662072339372,1.345756699736858],[103.64552154368343,1.347266335513336],[103.64410335154366,1.348294844481877],[103.6387934746756,1.353104086768726],[103.64081843118426,1.357975523509643],[103.64255094459948,1.359167884065251],[103.64361076578935,1.360498551124819],[103.64533004719333,1.363735296776045],[103.64670508445913,1.36741621271238],[103.64842627639287,1.36983037632784],[103.64938323985547,1.371761476122902],[103.6495483548131,1.372823860900217],[103.65115618232076,1.373342955124645],[103.65249760928732,1.373030551601976],[103.65470679409758,1.377175827579182],[103.65563316727172,1.379611979520321],[103.6573726861157,1.382700260865736],[103.65693936577313,1.383391241749841],[103.65883301830762,1.385566712904612],[103.65968191887781,1.385964974417489],[103.66042188440093,1.388041542586882],[103.66164133931066,1.388994314724288],[103.6616344370366,1.390603983771111],[103.66271015702624,1.392391469384875],[103.66237162728167,1.394743638188919],[103.66285025587818,1.397307401862872],[103.6620535553682,1.398732793983897],[103.66278408319567,1.400302636566786],[103.66343657934804,1.40274475571312],[103.66243529006806,1.405371533369626],[103.66414742009866,1.406190587564391],[103.66507926473457,1.407746859172532],[103.66513994720978,1.408919320290485],[103.66695585641143,1.40931841087586],[103.66763428192759,1.408897565789935],[103.66950266587277,1.410137490754174],[103.67059925968182,1.411696944868933],[103.67030834546968,1.41289496660023],[103.6711924817806,1.41370102913414],[103.67212265973744,1.413486826017295],[103.67154713036055,1.416045970792074],[103.67272055753664,1.419382722952129],[103.6741849115115,1.420487137486309],[103.67351228324664,1.422012730411206],[103.67430134106863,1.425175168864411],[103.67640368257123,1.426307344437532],[103.67689433500452,1.427773701761946],[103.67805912246959,1.429120075554482],[103.67899563805338,1.428526443561272],[103.68139789116442,1.429142404610034],[103.68334052858954,1.431170926425596],[103.68436277438126,1.430514956617198],[103.68592760341507,1.43041223609723],[103.68588006426926,1.431525736305662],[103.68793968575629,1.432055115101001],[103.68860341697004,1.432995156417711],[103.68964647446724,1.433351523518392],[103.6930147291588,1.43367381101706],[103.6933901260383,1.432634415767454],[103.69503443458612,1.431525314558521],[103.69578389440771,1.427740874162804],[103.69712529749185,1.426108097680931],[103.69701082165393,1.424260052992287],[103.7001109337357,1.42318716627699],[103.69864670081901,1.418636043939937],[103.69920606991927,1.418761282760515],[103.70156535592072,1.418054109901449],[103.70097278859312,1.41677256399369],[103.70222666720662,1.415298888148329],[103.70514971303719,1.412381403645127],[103.706034558006,1.412148216791979],[103.70862557011205,1.412361376021209],[103.7106813543842,1.412955289205644],[103.71336777830565,1.413008604128817],[103.71468098552084,1.414332315208454],[103.71624643248033,1.414225805288222],[103.71742093958895,1.412949118766132],[103.71856139263073,1.411068017483662],[103.72734802990455,1.411071453050394],[103.72873796104453,1.411638136509037],[103.7393285635749,1.422280703176586]]]},"properties":{"PLN_AREA_N":"WESTERN WATER CATCHMENT"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[104.05407956718199,1.432306252211724],[104.05482607109056,1.431329433467545],[104.05577783407156,1.431835938931276],[104.05740422919743,1.431808748331037],[104.05904830195877,1.431349218035336],[104.06245366050358,1.429926008863438],[104.06364095401935,1.429754188192375],[104.06621420245331,1.428368860080353],[104.06983338337864,1.427087178370299],[104.07269793138805,1.425308012120933],[104.07593789023795,1.422543164076073],[104.07784106238358,1.420605796057265],[104.08050699925715,1.418987781547031],[104.08155899127962,1.417439646920817],[104.08509151066418,1.410140511061845],[104.08508391737264,1.40896617048179],[104.0838145216201,1.407079144730684],[104.08615732696535,1.40652086712407],[104.08712528374275,1.405794202528785],[104.08828969898394,1.403692028259018],[104.08843518192292,1.399824510881421],[104.08812764230304,1.397796347403403],[104.08705995945529,1.394699020143543],[104.08507233154009,1.390907001693131],[104.08177151974485,1.385684645834083],[104.08055906840518,1.383461604878531],[104.07930058598008,1.380556249262523],[104.0766030800159,1.373095916786642],[104.07561828912884,1.369410304909485],[104.07480423408524,1.364904803433649],[104.07453941068921,1.362010410781655],[104.07477071361123,1.35735497834272],[104.07583303545847,1.354133284026041],[104.0786183800417,1.348916467185555],[104.08022176958322,1.346250823201015],[104.08393728352866,1.340839483054766],[104.0840036977234,1.33882872246535],[104.08337553726103,1.338011437418016],[104.08159416781604,1.337536092810938],[104.08051019847687,1.338039738421928],[104.03784067537161,1.374322685675115],[104.03250209743742,1.378808822304052],[104.02296045218732,1.387327565813685],[104.01993529669065,1.390770894575981],[104.01841991428618,1.393176313947241],[104.01633550231635,1.397995126511345],[104.01550097914594,1.400604043682363],[104.01581990516333,1.401675443182427],[104.01675914574837,1.402015285480865],[104.0243341076112,1.40175702592158],[104.02749596377255,1.402497448608842],[104.02923621147507,1.403811952674701],[104.02964067861275,1.404707816951478],[104.02929499929941,1.40619716394175],[104.02827193149336,1.407714402357479],[104.0301821293942,1.411401767654972],[104.0286477532936,1.412112749071781],[104.02642458777825,1.411587196019799],[104.02421549786708,1.409257661410083],[104.021876788326,1.408590357414711],[104.01479959383633,1.408876212904826],[104.01323606229124,1.409620994476848],[104.01223725248565,1.410806815688282],[104.00928289652371,1.418684111734397],[104.00894734675578,1.421049820088884],[104.009365414692,1.423458753319436],[104.0105112034396,1.425615194395705],[104.01132364235563,1.426529486694941],[104.02110692503027,1.435264613515003],[104.02281950819018,1.436433607453654],[104.02449301595682,1.437127058786115],[104.03606713284698,1.440362779210089],[104.03934081927854,1.440678945752165],[104.04348295547409,1.439802532879404],[104.0445818073358,1.43853283113799],[104.04585537876683,1.436006899499435],[104.04711035400952,1.43486466329959],[104.04814535949346,1.434537849452198],[104.05358542024803,1.433762224512666],[104.05407956718199,1.432306252211724]]],[[[103.94702124209454,1.40758868943988],[103.94775373978167,1.406867885772001],[103.94914606164174,1.404581896606051],[103.9505693789254,1.403679380322725],[103.95356765560975,1.402952138154397],[103.9545171322891,1.399459181409761],[103.95357350523737,1.398542332852071],[103.9475579169486,1.404016956875156],[103.94405661148541,1.408200697373716],[103.94702124209454,1.40758868943988]]],[[[103.92804984723439,1.419668019939198],[103.92748232988933,1.421828764632425],[103.92638544612979,1.422375786924079],[103.92704142979238,1.423826266580725],[103.92917922227173,1.424329176483699],[103.93048284446895,1.42607220802882],[103.93239853732113,1.426651650396688],[103.93371148602736,1.428102461810484],[103.93552330323249,1.427625638701182],[103.93830703316912,1.426508154782255],[103.93961844573009,1.425741573915867],[103.94294145506487,1.424337159697926],[103.9457563533282,1.4238663208601],[103.94808967637547,1.422626668461702],[103.94950136998794,1.420508662923607],[103.95235763150436,1.418960692158683],[103.9546473386442,1.419298315458076],[103.9564959382533,1.417926292138458],[103.95990713338719,1.417912151790881],[103.96140325702471,1.417663541370233],[103.96307479128706,1.418025409412893],[103.96402750698492,1.418640456991851],[103.96664261616499,1.419074733173002],[103.96925309121879,1.419079420449272],[103.97048884107294,1.419617613853587],[103.97401100345274,1.418270282619998],[103.97548754442394,1.418458018598507],[103.97865405601151,1.417633776000493],[103.98149269066873,1.417963768097579],[103.98217394044906,1.417607442123839],[103.9846667901365,1.418223077758225],[103.98575238688464,1.419106290645572],[103.99197199475928,1.419490022249704],[103.99449031685008,1.419214300202121],[103.99698087809031,1.418005569818304],[103.99885213105215,1.41612272275173],[104.00069812688,1.412327283188601],[104.00262854963981,1.40638711601812],[104.00314492260108,1.40383963716858],[104.002354460616,1.402941178700681],[104.00079624519786,1.40288439905355],[103.99644278540838,1.404056388722319],[103.98874929671643,1.404103658883202],[103.98796407991816,1.402737461888241],[103.9870301134997,1.404114545092404],[103.97819515305244,1.404170470525692],[103.97484526187061,1.402507987117836],[103.9728769056302,1.403467512234652],[103.97227873022396,1.402700371094405],[103.97038062017394,1.402566572213019],[103.96868541865582,1.401792826528853],[103.96815039329007,1.401115131770399],[103.96621965002561,1.401128562207298],[103.96227842014744,1.399738537443813],[103.95844150837617,1.399463883866702],[103.95561226025711,1.402794301760482],[103.9550764390043,1.404561643088466],[103.95348172478646,1.405776716606411],[103.95049491717933,1.405557500021442],[103.948671762956,1.408985015392825],[103.94859558722716,1.40965877802706],[103.94647968920825,1.411063067552344],[103.94350576988347,1.411808242927763],[103.94110706826358,1.412722811090586],[103.93895269917319,1.414278215014857],[103.93772716928312,1.414215372399148],[103.93725274381706,1.415041492741819],[103.9341417286208,1.415816090774413],[103.93367371951412,1.417107703686257],[103.9326170783631,1.417487617949257],[103.93065700426709,1.417175642312258],[103.92964976650305,1.418417455965192],[103.92804984723439,1.419668019939198]]]]},"properties":{"PLN_AREA_N":"NORTH-EASTERN ISLANDS"}},
{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[103.86213066712966,1.42463003060846],[103.8619700789447,1.424478308420302],[103.85463073407264,1.427789452374932],[103.85218290785001,1.429499280327318],[103.84723539214342,1.434284409494509],[103.84618135115437,1.435744760585827],[103.8455037573167,1.437645967526942],[103.84414585169617,1.439743183960023],[103.84093995712394,1.442332748465353],[103.83793231653142,1.444337206400367],[103.8366941462159,1.445616141640464],[103.83306394424099,1.451385287103461],[103.84781391403777,1.460523883338348],[103.85415776390381,1.457474772466436],[103.85819113088027,1.45485573070745],[103.8573742252443,1.453403983801243],[103.85503570627526,1.452488892982979],[103.85629119304802,1.449594631263204],[103.85875014865792,1.442400117433074],[103.86030830765199,1.440178190989708],[103.86337155753566,1.436441354474914],[103.86279428101585,1.435965878377137],[103.86360582575813,1.434105928998114],[103.86493973360798,1.434606280792071],[103.8653458585876,1.433478841126183],[103.86440694612544,1.431756737714661],[103.85975910655927,1.427869536295712],[103.85777773936245,1.426525346426083],[103.86213066712966,1.42463003060846]]],[[[103.87242041853611,1.439954691741803],[103.8722472121971,1.437940862512975],[103.86967792151862,1.435878668570079],[103.86807283238456,1.43533734524075],[103.86607612962106,1.435717451785715],[103.86364738355833,1.438166945359426],[103.86291730522868,1.439890249736999],[103.8614194022406,1.441710394653223],[103.85990907189466,1.44298291853562],[103.85970283491605,1.445971474605684],[103.85841644505619,1.448275112266654],[103.85747918585561,1.450718617053911],[103.85789757474458,1.451646159451621],[103.8608990308692,1.45274929984146],[103.86243006290103,1.451773740875797],[103.86941292739805,1.443814325595411],[103.87242041853611,1.439954691741803]]]]},"properties":{"PLN_AREA_N":"SIMPANG"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.81170029081717,1.4442777604272],[103.80820895689766,1.445669454883689],[103.80633489137122,1.446720331768445],[103.80399487368211,1.44862872217715],[103.80322036132846,1.449690772985335],[103.80122853071757,1.454026779577104],[103.80049679726316,1.456671009301123],[103.79757333535937,1.455520620568266],[103.79509240278797,1.4574904314284],[103.79411093932275,1.45864683385218],[103.7933367774729,1.460266760113633],[103.7917916493401,1.462044598088424],[103.79692511494486,1.465378704705666],[103.7990353873091,1.467045127203732],[103.79975726999456,1.46676615116485],[103.80158182367997,1.468476790338016],[103.80621835327452,1.470038379884284],[103.808799081485,1.470565120212687],[103.80977176214246,1.469792587346977],[103.81182217667845,1.470332730184565],[103.81428655496941,1.470616243518292],[103.81759362614213,1.470682543915808],[103.820354323597,1.469768466456116],[103.82216803564748,1.468637482053444],[103.82026569911028,1.467306667334718],[103.81859086563233,1.464957793328357],[103.81939905786199,1.464461746099627],[103.8205337424698,1.466148216323614],[103.82232664362337,1.467170471400796],[103.82338433471226,1.465759631317307],[103.82168461574102,1.462723715401268],[103.82264279045687,1.461015514011604],[103.82409125104596,1.463587294377523],[103.82455400925403,1.463321075134636],[103.82753875541974,1.468586573325628],[103.83429689157342,1.464708588474821],[103.83194639901815,1.460505233034012],[103.83289910041891,1.459957867365748],[103.8352698217954,1.464139806476834],[103.8371264926462,1.464812696688458],[103.84211367749526,1.462901137535575],[103.84781391403777,1.460523883338348],[103.83306394424099,1.451385287103461],[103.8366941462159,1.445616141640464],[103.83031467910594,1.441626478303667],[103.8290502294102,1.437973752922172],[103.82775673047078,1.436495681495888],[103.82588445678041,1.435363086215239],[103.82443334961334,1.435048764846208],[103.82265177979419,1.43594239427651],[103.821204832421,1.437823323428754],[103.81857994935228,1.440436954296199],[103.81471496097622,1.442988326583278],[103.81170029081717,1.4442777604272]]]},"properties":{"PLN_AREA_N":"SEMBAWANG"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.81882248913352,1.394340858203949],[103.81801867188845,1.390458040050561],[103.81838398418616,1.388619775854587],[103.81706014415074,1.387719128022225],[103.81736167416273,1.386392585284749],[103.8188535960701,1.386687363383619],[103.81945207298205,1.385349824189065],[103.81934107887142,1.383389133116637],[103.81779202644644,1.380635971217969],[103.81806027370637,1.380159278993306],[103.82047418160936,1.380541370948291],[103.82170864953018,1.379576419848019],[103.82276490195449,1.379719801800299],[103.82415751427246,1.378660269887378],[103.82571310801244,1.379757223070169],[103.82728196789346,1.37909356897494],[103.82783188815542,1.377408486555814],[103.82630059990613,1.376191048181021],[103.82657854819766,1.374601210119302],[103.82630032289485,1.373513176823203],[103.82747460851046,1.372886186984059],[103.82794352966262,1.37176284468422],[103.82738162209178,1.369062886401698],[103.82830004129958,1.36747164235783],[103.82710457879537,1.36269019484746],[103.82505509588094,1.363493021791616],[103.82434403843396,1.361775702806908],[103.82069354954642,1.361201161756026],[103.81916266373777,1.357446728954383],[103.8185371689009,1.354870317734009],[103.81903663119516,1.35418084330074],[103.82354651702715,1.352322678263038],[103.82673786130744,1.35419441503213],[103.82981885116276,1.353117948404267],[103.83207257619883,1.350817382298488],[103.83235050314508,1.349796518671621],[103.83383952075631,1.349573755769929],[103.83561106328453,1.347389858404212],[103.83578243594454,1.346289771221576],[103.8367787782889,1.346357137022785],[103.83707615196943,1.343460437280644],[103.8359246025966,1.342709391207183],[103.83652007133277,1.341995936447045],[103.83598820338983,1.341683699817672],[103.83356382284427,1.34049851348821],[103.82928740941023,1.340798818838976],[103.82808944353313,1.341150019270371],[103.82480044156038,1.341150206202709],[103.82112846317658,1.339956887035761],[103.81992897975827,1.338993876339074],[103.81861835623731,1.335787408265597],[103.81674840876107,1.336347478261433],[103.81457069150784,1.33835132889444],[103.81357993470111,1.338198018627585],[103.81165010707228,1.339572106237587],[103.81168750814038,1.340454581779051],[103.80986108558109,1.340905724226463],[103.80990241134407,1.341744703501808],[103.80857531763724,1.341810880780915],[103.8073736825589,1.341029434093434],[103.80421311111336,1.341352450833885],[103.79849554589497,1.347378250910671],[103.79643772846421,1.348882433222871],[103.79402821310873,1.349526986291355],[103.7916561046892,1.349270167714696],[103.79050350979603,1.351105342150079],[103.7889286788181,1.352697698197152],[103.78557295652885,1.354861326066321],[103.78365713904694,1.356483455048735],[103.7815813451854,1.359095892798204],[103.78063587798034,1.361068197812907],[103.77987273823076,1.36378187325141],[103.77917514784772,1.367992591301042],[103.77850577448818,1.370737001122628],[103.77597667880318,1.379828340673686],[103.77535933747724,1.383114098818534],[103.77445026157248,1.390289453272446],[103.77398415630333,1.394154754981962],[103.77378443013187,1.399897423421078],[103.77335644052427,1.40278939795365],[103.77183479877591,1.40888660487544],[103.7716817470618,1.409991160486875],[103.77295116548008,1.409924268355231],[103.77603637259776,1.410775543708532],[103.77947325280768,1.410720992809202],[103.78322054343484,1.410903115503603],[103.78764322489597,1.412304263617794],[103.78955910491166,1.412545336254519],[103.79467933040821,1.414341718309444],[103.80131128259033,1.41606579957859],[103.80342789651893,1.415966030577374],[103.80577658482079,1.414355000813448],[103.80819311124857,1.40815199474984],[103.80912773024644,1.406312118816078],[103.81180868410802,1.402726447963969],[103.81323391055521,1.39981038153677],[103.8145304890553,1.396669281988318],[103.81644277554979,1.395096268383279],[103.81882248913352,1.394340858203949]]]},"properties":{"PLN_AREA_N":"CENTRAL WATER CATCHMENT"}},
{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.73699792831633,1.438718545839843],[103.73720908296764,1.437408078404822],[103.73848368712794,1.438315014099358],[103.7407856801334,1.438285004777898],[103.74178771008248,1.434966266187769],[103.74262345348062,1.433673061102447],[103.74319163570223,1.431795357270123],[103.74359613047992,1.428268358684735],[103.74325811825452,1.426370765400313],[103.74199566119333,1.424797124230831],[103.7393285635749,1.422280703176586],[103.72873796104453,1.411638136509037],[103.72734802990455,1.411071453050394],[103.71856139263073,1.411068017483662],[103.71742093958895,1.412949118766132],[103.71624643248033,1.414225805288222],[103.71468098552084,1.414332315208454],[103.71336777830565,1.413008604128817],[103.7106813543842,1.412955289205644],[103.70862557011205,1.412361376021209],[103.706034558006,1.412148216791979],[103.70514971303719,1.412381403645127],[103.70222666720662,1.415298888148329],[103.70097278859312,1.41677256399369],[103.70156535592072,1.418054109901449],[103.69920606991927,1.418761282760515],[103.69864670081901,1.418636043939937],[103.7001109337357,1.42318716627699],[103.69701082165393,1.424260052992287],[103.69712529749185,1.426108097680931],[103.69578389440771,1.427740874162804],[103.69503443458612,1.431525314558521],[103.6933901260383,1.432634415767454],[103.6930147291588,1.43367381101706],[103.69609624716215,1.435007024623578],[103.69608640013335,1.435433285623531],[103.70009906213825,1.439556326721365],[103.7020447545021,1.440614751068472],[103.70483960402683,1.44353934858545],[103.70766139215176,1.44558862587386],[103.70993506901884,1.447628456594955],[103.71282675003584,1.449407806288195],[103.71691303215532,1.450558831682143],[103.71959371904084,1.451095925571744],[103.7273768137317,1.451184038038337],[103.72834958225033,1.451070769817018],[103.73045315649568,1.449875122087159],[103.7314068169567,1.448888971141686],[103.73288824722164,1.446571895146509],[103.73677837500793,1.443720733374493],[103.73813071328107,1.44232650620846],[103.7365431067283,1.440322218834752],[103.73699792831633,1.438718545839843]]]},"properties":{"PLN_AREA_N":"LIM CHU KANG"}}
]}
.ticks {
font: 10px sans-serif;
}
.track,
.track-inset,
.track-overlay {
stroke-linecap: round;
}
.track {
stroke: #000;
stroke-opacity: 0.3;
stroke-width: 10px;
}
.track-inset {
stroke: #ddd;
stroke-width: 8px;
}
.track-overlay {
pointer-events: stroke;
stroke-width: 50px;
stroke: transparent;
cursor: crosshair;
}
.handle {
fill: #fff;
stroke: #000;
stroke-opacity: 0.5;
stroke-width: 1.25px;
}
#tooltip {
font-size: 12px;
position: absolute;
width: auto;
height: auto;
padding: 2.5px;
border:1px solid black;
background-color: white;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
pointer-events: none;
}
#tooltip.hidden {
display: none;
}
#tooltip p {
margin: 0;
font-family: sans-serif;
font-size: 16px;
line-height: 20px;
}
path.area{
stroke-width:0.3;
fill: #ffffbf;
stroke: black;
}
path.area.highlight{
fill:#78c679;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment