Files

500 lines
120 KiB
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!DOCTYPE html>
<html lang="id">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Kepadatan Penduduk Kota Pontianak</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css" crossorigin=""/>
<script src="https://unpkg.com/leaflet@1.9.4/dist/leaflet.js" crossorigin=""></script>
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond:wght@400;500;600&family=Inter:wght@300;400;500;600&display=swap" rel="stylesheet">
<style>
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
--cream: #F5F1EA;
--paper: #FAFAF7;
--ink: #1A1A18;
--muted: #8A8880;
--rule: #D8D4CC;
--accent: #C0392B;
--sidebar: 280px;
}
html, body {
height: 100%;
font-family: 'Inter', sans-serif;
background: var(--paper);
color: var(--ink);
overflow: hidden;
}
#app {
display: flex;
height: 100vh;
width: 100vw;
}
/* ── Sidebar ── */
#sidebar {
width: var(--sidebar);
flex-shrink: 0;
background: var(--cream);
border-right: 1px solid var(--rule);
display: flex;
flex-direction: column;
overflow: hidden;
z-index: 10;
}
#sidebar-header {
padding: 32px 28px 24px;
border-bottom: 1px solid var(--rule);
}
.eyebrow {
font-size: 10px;
font-weight: 600;
letter-spacing: 0.18em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 10px;
}
#sidebar-header h1 {
font-family: 'EB Garamond', serif;
font-size: 26px;
font-weight: 500;
line-height: 1.2;
color: var(--ink);
margin-bottom: 6px;
}
#sidebar-header p {
font-size: 12px;
color: var(--muted);
line-height: 1.5;
font-weight: 300;
}
/* ── List ── */
#kec-list {
flex: 1;
overflow-y: auto;
padding: 8px 0;
}
#kec-list::-webkit-scrollbar { width: 4px; }
#kec-list::-webkit-scrollbar-track { background: transparent; }
#kec-list::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 2px; }
.kec-item {
padding: 14px 28px;
border-bottom: 1px solid var(--rule);
cursor: pointer;
transition: background 0.15s;
position: relative;
}
.kec-item:last-child { border-bottom: none; }
.kec-item:hover,
.kec-item.active {
background: #EDE8DF;
}
.kec-item.active::before {
content: '';
position: absolute;
left: 0; top: 0; bottom: 0;
width: 3px;
background: var(--accent);
}
.kec-rank {
font-size: 10px;
font-weight: 600;
letter-spacing: 0.12em;
color: var(--muted);
margin-bottom: 4px;
display: flex;
align-items: center;
gap: 6px;
}
.kec-dot {
width: 8px; height: 8px;
border-radius: 50%;
display: inline-block;
flex-shrink: 0;
}
.kec-name {
font-family: 'EB Garamond', serif;
font-size: 18px;
font-weight: 500;
color: var(--ink);
margin-bottom: 4px;
line-height: 1.2;
}
.kec-pop {
font-size: 12px;
color: var(--muted);
font-weight: 300;
}
.kec-pop strong {
color: var(--ink);
font-weight: 500;
}
.kec-bar-wrap {
margin-top: 8px;
height: 3px;
background: var(--rule);
border-radius: 2px;
overflow: hidden;
}
.kec-bar {
height: 100%;
border-radius: 2px;
}
/* ── Footer ── */
#sidebar-footer {
padding: 16px 28px;
border-top: 1px solid var(--rule);
}
.total-label {
font-size: 10px;
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 4px;
}
.total-value {
font-family: 'EB Garamond', serif;
font-size: 28px;
font-weight: 500;
color: var(--ink);
}
.total-sub {
font-size: 11px;
color: var(--muted);
margin-top: 1px;
}
/* ── Map ── */
#map-wrap {
flex: 1;
position: relative;
}
#map {
width: 100%;
height: 100%;
}
/* ── Tooltip ── */
.leaflet-tooltip {
font-family: 'Inter', sans-serif !important;
font-size: 12px !important;
font-weight: 500 !important;
background: var(--ink) !important;
color: var(--paper) !important;
border: none !important;
border-radius: 4px !important;
padding: 6px 10px !important;
box-shadow: 0 2px 12px rgba(0,0,0,0.25) !important;
}
.leaflet-tooltip::before { display: none !important; }
/* ── Hover panel ── */
#hover-panel {
position: absolute;
top: 24px; right: 24px;
background: rgba(250,250,247,0.97);
border: 1px solid var(--rule);
border-radius: 8px;
padding: 16px 20px;
z-index: 500;
min-width: 200px;
pointer-events: none;
opacity: 0;
transform: translateY(-6px);
transition: opacity 0.2s, transform 0.2s;
}
#hover-panel.visible {
opacity: 1;
transform: translateY(0);
}
#hover-panel .hp-eyebrow {
font-size: 9px;
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 6px;
}
#hover-panel .hp-name {
font-family: 'EB Garamond', serif;
font-size: 20px;
font-weight: 500;
color: var(--ink);
margin-bottom: 4px;
}
#hover-panel .hp-pop {
font-size: 12px;
color: var(--muted);
}
#hover-panel .hp-pop strong {
color: var(--accent);
font-size: 16px;
font-family: 'EB Garamond', serif;
font-weight: 500;
}
/* ── Legend ── */
.map-legend {
position: absolute;
bottom: 32px; right: 24px;
background: rgba(250,250,247,0.95);
border: 1px solid var(--rule);
border-radius: 6px;
padding: 14px 16px;
z-index: 500;
min-width: 180px;
}
.legend-title {
font-size: 9px;
font-weight: 600;
letter-spacing: 0.14em;
text-transform: uppercase;
color: var(--muted);
margin-bottom: 10px;
}
.legend-row {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 5px;
}
.legend-swatch {
width: 14px; height: 14px;
border-radius: 2px;
flex-shrink: 0;
}
.legend-label {
font-size: 11px;
color: var(--ink);
font-weight: 300;
}
/* ── Zoom ── */
.leaflet-control-zoom {
border: 1px solid var(--rule) !important;
border-radius: 6px !important;
overflow: hidden;
box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
}
.leaflet-control-zoom a {
background: var(--paper) !important;
color: var(--ink) !important;
font-size: 16px !important;
line-height: 28px !important;
width: 28px !important;
height: 28px !important;
border: none !important;
}
.leaflet-control-zoom-in {
border-bottom: 1px solid var(--rule) !important;
}
.leaflet-control-zoom a:hover {
background: var(--cream) !important;
}
.leaflet-control-attribution {
font-size: 9px !important;
background: rgba(250,250,247,0.8) !important;
}
</style>
</head>
<body>
<div id="app">
<aside id="sidebar">
<div id="sidebar-header">
<div class="eyebrow">Kota Pontianak · Kalimantan Barat</div>
<h1>Persebaran<br>Penduduk</h1>
<p>Jumlah penduduk per kecamatan<br>berdasarkan data terkini</p>
</div>
<div id="kec-list"></div>
<div id="sidebar-footer">
<div class="total-label">Total Penduduk</div>
<div class="total-value" id="total-pop"></div>
<div class="total-sub">6 kecamatan</div>
</div>
</aside>
<div id="map-wrap">
<div id="map"></div>
<div id="hover-panel">
<div class="hp-eyebrow">Kecamatan</div>
<div class="hp-name" id="hp-name"></div>
<div class="hp-pop">Penduduk: <strong id="hp-pop"></strong> jiwa</div>
</div>
<div class="map-legend" id="map-legend"></div>
</div>
</div>
<script>
const GEOJSON_DATA = {"type":"FeatureCollection","features":[{"geometry":{"type":"Polygon","coordinates":[[[109.373693,-0.062143],[109.3736,-0.062052],[109.3736,-0.062052],[109.373596,-0.062049],[109.373581,-0.062033],[109.373524,-0.061975],[109.373427,-0.061875],[109.373272,-0.061718],[109.373122,-0.061556],[109.373041,-0.061474],[109.37299,-0.061502],[109.372912,-0.061508],[109.372822,-0.061471],[109.37284,-0.061345],[109.372847,-0.061288],[109.372852,-0.061245],[109.372825,-0.061112],[109.372696,-0.060913],[109.372645,-0.060895],[109.372558,-0.060795],[109.372579,-0.06075],[109.372567,-0.060674],[109.372531,-0.060611],[109.372474,-0.060608],[109.372444,-0.060599],[109.372441,-0.060563],[109.37245,-0.060514],[109.372447,-0.060478],[109.372369,-0.06036],[109.37233,-0.060376],[109.372306,-0.060357],[109.37227,-0.060318],[109.372228,-0.060312],[109.37221,-0.060333],[109.372171,-0.060318],[109.372171,-0.060273],[109.372186,-0.060243],[109.372189,-0.060191],[109.372129,-0.060152],[109.372102,-0.060128],[109.372024,-0.059995],[109.371802,-0.059769],[109.37177,-0.059681],[109.371737,-0.059645],[109.371314,-0.059098],[109.37122,-0.059134],[109.370814,-0.058588],[109.370558,-0.058293],[109.370452,-0.058175],[109.370441,-0.058089],[109.370286,-0.057922],[109.370109,-0.057764],[109.369951,-0.057906],[109.369908,-0.057815],[109.369999,-0.057692],[109.369924,-0.057573],[109.36996,-0.057531],[109.37002,-0.057461],[109.370001,-0.05742],[109.369922,-0.057476],[109.369773,-0.057583],[109.369704,-0.05745],[109.369803,-0.05742],[109.369611,-0.057067],[109.369539,-0.057061],[109.369506,-0.057034],[109.369497,-0.056985],[109.369506,-0.056964],[109.369552,-0.056927],[109.369569,-0.056913],[109.369578,-0.056895],[109.369518,-0.05678],[109.369527,-0.056726],[109.3695,-0.056671],[109.369542,-0.056638],[109.369515,-0.056587],[109.369371,-0.056666],[109.369354,-0.056667],[109.369315,-0.056655],[109.369291,-0.056641],[109.369256,-0.056629],[109.369219,-0.056607],[109.369199,-0.056592],[109.369188,-0.056572],[109.369188,-0.056541],[109.369199,-0.056512],[109.36921,-0.056485],[109.369235,-0.056466],[109.3692,-0.056344],[109.369089,-0.056145],[109.36907,-0.056154],[109.369006,-0.056185],[109.368974,-0.056117],[109.368969,-0.056054],[109.368947,-0.055955],[109.368873,-0.055836],[109.368827,-0.055818],[109.36879,-0.055801],[109.368763,-0.05577],[109.368738,-0.055758],[109.368716,-0.05576],[109.368691,-0.055775],[109.368664,-0.055782],[109.368618,-0.055775],[109.368601,-0.055748],[109.368615,-0.055721],[109.368633,-0.05567],[109.36865,-0.055612],[109.36866,-0.05559],[109.368699,-0.055526],[109.368721,-0.055516],[109.368733,-0.05551],[109.36874,-0.055492],[109.368721,-0.055463],[109.368669,-0.055424],[109.368625,-0.055391],[109.368601,-0.05538],[109.368581,-0.055351],[109.368561,-0.055307],[109.368541,-0.055271],[109.368532,-0.055233],[109.368532,-0.055213],[109.368512,-0.055198],[109.368445,-0.0552],[109.368414,-0.05521],[109.368386,-0.055205],[109.368369,-0.055193],[109.36836,-0.055164],[109.36836,-0.055096],[109.368315,-0.055021],[109.36817,-0.054846],[109.368139,-0.054877],[109.368044,-0.054782],[109.368086,-0.054746],[109.368068,-0.054631],[109.368053,-0.054544],[109.36802,-0.054499],[109.367978,-0.054459],[109.367948,-0.054426],[109.367942,-0.054393],[109.367957,-0.05436],[109.367981,-0.05432],[109.367999,-0.054281],[109.367984,-0.054245],[109.36793,-0.054185],[109.367772,-0.053955],[109.367709,-0.053889],[109.367673,-0.053907],[109.367622,-0.053804],[109.367625,-0.053792],[109.367559,-0.053659],[109.367605,-0.053627],[109.367637,-0.053605],[109.367571,-0.053499],[109.367529,-0.053526],[109.367445,-0.053581],[109.367388,-0.053499],[109.367367,-0.053511],[109.367283,-0.053339],[109.367339,-0.0533],[109.367406,-0.053267],[109.367384,-0.053206],[109.367346,-0.053228],[109.367312,-0.05323],[109.367293,-0.053241],[109.367164,-0.053318],[109.367099,-0.05323],[109.367105,-0.053128],[109.367009,-0.052965],[109.36704,-0.05293],[109.366999,-0.05288],[109.36695,-0.052807],[109.366963,-0.05279],[109.366965,-0.052766],[109.366945,-0.052737],[109.366921,-0.052737],[109.36691,-0.052747],[109.366871,-0.05278],[109.366837,-0.052766],[109.366808,-0.052741],[109.366798,-0.052715],[109.366798,-0.05269],[109.36681,-0.052661],[109.366812,-0.052629],[109.366705,-0.0526],[109.366677,-0.052568],[109.366675,-0.052532],[109.366672,-0.052488],[109.366678,-0.052457],[109.366685,-0.052439],[109.366688,-0.052417],[109.366678,-0.052396],[109.366651,-0.052381],[109.366562,-0.052386],[109.366513,-0.052371],[109.366451,-0.052294],[109.366425,-0.052231],[109.366415,-0.052174],[109.366429,-0.052126],[109.366454,-0.052097],[109.366473,-0.052068],[109.366478,-0.051998],[109.366481,-0.051953],[109.366476,-0.051926],[109.366454,-0.051883],[109.366439,-0.051868],[109.366414,-0.051892],[109.366336,-0.05197],[109.366304,-0.051929],[109.366272,-0.051934],[109.366233,-0.051921],[109.366218,-0.051895],[109.366208,-0.051863],[109.366209,-0.051837],[109.366216,-0.051817],[109.366223,-0.051803],[109.366277,-0.051768],[109.366236,-0.051685],[109.366204,-0.051649],[109.366176,-0.051627],[109.366169,-0.051596],[109.366164,-0.051569],[109.366142,-0.05153],[109.366118,-0.051511],[109.366096,-0.051496],[109.3661,-0.051476],[109.366137,-0.051437],[109.366132,-0.05143],[109.366081,-0.051355],[109.365961,-0.05146],[109.365921,-0.051379],[109.366037,-0.05129],[109.366013,-0.051255],[109.365946,-0.051154],[109.365919,-0.051114],[109.365911,-0.051106],[109.365901,-0.051087],[109.365878,-0.051048],[109.365837,-0.050975],[109.365749,-0.05089],[109.365712,-0.050851],[109.365668,-0.050764],[109.365646,-0.050727],[109.365619,-0.050705],[109.365546,-0.050745],[109.365519,-0.050725],[109.365503,-0.050696],[109.365501,-0.050674],[109.365508,-0.05065],[109.365403,-0.050726],[109.365312,-0.050602],[109.365434,-0.050514],[109.365328,-0.050365],[109.365285,-0.050307],[109.365287,-0.050273],[109.365285,-0.050253],[109.365263,-0.05023],[109.36522,-0.050259],[109.365172,-0.050285],[109.365147,-0.050285],[109.365127,-0.050315],[109.365093,-0.050326],[109.365064,-0.05032],[109.365058,-0.050298],[109.365071,-0.050269],[109.365069,-0.050246],[109.365051,-0.050217],[109.365046,-0.050193],[109.365036,-0.050168],[109.364967,-0.050222],[109.364879,-0.050117],[109.364995,-0.050003],[109.364987,-0.049974],[109.36496,-0.04993],[109.364926,-0.049894],[109.364914,-0.049896],[109.364865,-0.04994],[109.364745,-0.049864],[109.364635,-0.049731],[109.364743,-0.04964],[109.364696,-0.049585],[109.364638,-0.049633],[109.36461,-0.049635],[109.36456,-0.049564],[109.364601,-0.049526],[109.364601,-0.04951],[109.364574,-0.049483],[109.364622,-0.049442],[109.364583,-0.049389],[109.364568,-0.049364],[109.364545,-0.049361],[109.36452,-0.049354],[109.364498,-0.049342],[109.364466,-0.049325],[109.364438,-0.049302],[109.364411,-0.049294],[109.364391,-0.049298],[109.364364,-0.049302],[109.364348,-0.049302],[109.364333,-0.049301],[109.364318,-0.049288],[109.364305,-0.049254],[109.364297,-0.049199],[109.364306,-0.049144],[109.364295,-0.049114],[109.364264,-0.049092],[109.364241,-0.049079],[109.364218,-0.049099],[109.364203,-0.049124],[109.364185,-0.049142],[109.364146,-0.04916],[109.364124,-0.049169],[109.364097,-0.049171],[109.364068,-0.049162],[109.364032,-0.049101],[109.364018,-0.049049],[109.364011,-0.049029],[109.363984,-0.049002],[109.363957,-0.048959],[109.363939,-0.0489],[109.364034,-0.048798],[109.363984,-0.048737],[109.363928,-0.048696],[109.36398,-0.048628],[109.363978,-0.048585],[109.363919,-0.048524],[109.363843,-0.048583],[109.363701,-0.048474],[109.363681,-0.048476],[109.363634,-0.048415],[109.363653,-0.048373],[109.363659,-0.048326],[109.363656,-0.048294],[109.36364,-0.048286],[109.363624,-0.048289],[109.363561,-0.048336],[109.363513,-0.048289],[109.363423,-0.048373],[109.36337,-0.048323],[109.363479,-0.048206],[109.363406,-0.048237],[109.363403,-0.048252],[109.363328,-0.048261],[109.36329,-0.048269],[109.363235,-0.048318],[109.363093,-0.048158],[109.36314,-0.048117],[109.363241,-0.048042],[109.36329,-0.048046],[109.3633,-0.048019],[109.3633,-0.047995],[109.363329,-0.047968],[109.363292,-0.0479],[109.363246,-0.047915],[109.363152,-0.047912],[109.363113,-0.047915],[109.363095,-0.047918],[109.363059,-0.047906],[109.363032,-0.047871],[109.363027,-0.047845],[109.363037,-0.047832],[109.363056,-0.047815],[109.36303,-0.047777],[109.363034,-0.047747],[109.363086,-0.047747],[109.363157,-0.047818],[109.363189,-0.047781],[109.363187,-0.047759],[109.363132,-0.047702],[109.363085,-0.047713],[109.362874,-0.047524],[109.362852,-0.047546],[109.362828,-0.047545],[109.36281,-0.04756],[109.3627,-0.047657],[109.362653,-0.047602],[109.362656,-0.047557],[109.362685,-0.047518],[109.362708,-0.04749],[109.36269,-0.047463],[109.362614,-0.04754],[109.362546,-0.04748],[109.362597,-0.047414],[109.362582,-0.04739],[109.362606,-0.04736],[109.362564,-0.047319],[109.362491,-0.047241],[109.36244,-0.047189],[109.362406,-0.047232],[109.362376,-0.047241],[109.362352,-0.04721],[109.362342,-0.047176],[109.362337,-0.047141],[109.362297,-0.047144],[109.362231,-0.047076],[109.362266,-0.04703],[109.362174,-0.046953],[109.362134,-0.046912],[109.362248,-0.046786],[109.362266,-0.046807],[109.362323,-0.046732],[109.362269,-0.046671],[109.362242,-0.046686],[109.362104,-0.046556],[109.362053,-0.046562],[109.36199,-0.046517],[109.361847,-0.046629],[109.361758,-0.046545],[109.361653,-0.046408],[109.361543,-0.04628],[109.361588,-0.046233],[109.361543,-0.046176],[109.36163,-0.046076],[109.361516,-0.045907],[109.361429,-0.045901],[109.361378,-0.045953],[109.361285,-0.045868],[109.361243,-0.045901],[109.361183,-0.045841],[109.361166,-0.045855],[109.361129,-0.045883],[109.361063,-0.045823],[109.361098,-0.045778],[109.361026,-0.045695],[109.360994,-0.045661],[109.360862,-0.045805],[109.360766,-0.045714],[109.360893,-0.045554],[109.360919,-0.045521],[109.360874,-0.045467],[109.36084,-0.045503],[109.360704,-0.045645],[109.360629,-0.045581],[109.360743,-0.045448],[109.360677,-0.045448],[109.360665,-0.04543],[109.360674,-0.045409],[109.360659,-0.04537],[109.360608,-0.04531],[109.36062,-0.04529],[109.360635,-0.045267],[109.360638,-0.045213],[109.36062,-0.045183],[109.360572,-0.045183],[109.360544,-0.04521],[109.360511,-0.045175],[109.360418,-0.045085],[109.360464,-0.045044],[109.360446,-0.044971],[109.360419,-0.044977],[109.360362,-0.044962],[109.360346,-0.045018],[109.360335,-0.045062],[109.360302,-0.045104],[109.360209,-0.045162],[109.360113,-0.045068],[109.360134,-0.04498],[109.360068,-0.044923],[109.359984,-0.044826],[109.359867,-0.044724],[109.359789,-0.044814],[109.359672,-0.044793],[109.359576,-0.0447],[109.359675,-0.044595],[109.359762,-0.044503],[109.359666,-0.044437],[109.359571,-0.044536],[109.359495,-0.044615],[109.359438,-0.044564],[109.359505,-0.044498],[109.359549,-0.044455],[109.359528,-0.044392],[109.359498,-0.044365],[109.359459,-0.044358],[109.359417,-0.044371],[109.359388,-0.044409],[109.359329,-0.044363],[109.359324,-0.044304],[109.359342,-0.044268],[109.359354,-0.044193],[109.359297,-0.044114],[109.35924,-0.044117],[109.359249,-0.044165],[109.359225,-0.044211],[109.359201,-0.044217],[109.359177,-0.044192],[109.359153,-0.044165],[109.359162,-0.044126],[109.359207,-0.044066],[109.35915,-0.044057],[109.359114,-0.044047],[109.359117,-0.04399],[109.359102,-0.043957],[109.359129,-0.043921],[109.359018,-0.043836],[109.35888,-0.04397],[109.358842,-0.043934],[109.358726,-0.043825],[109.358793,-0.043743],[109.358679,-0.043649],[109.358621,-0.043719],[109.358533,-0.043626],[109.358377,-0.043461],[109.358357,-0.043439],[109.358301,-0.043513],[109.358268,-0.043468],[109.358314,-0.043393],[109.358349,-0.043335],[109.35828,-0.043284],[109.358252,-0.043326],[109.358199,-0.043404],[109.35805,-0.043278],[109.358123,-0.043198],[109.358205,-0.043109],[109.358173,-0.043075],[109.358131,-0.043027],[109.358089,-0.04303],[109.35808,-0.043006],[109.358041,-0.043057],[109.358017,-0.043036],[109.357991,-0.043067],[109.357906,-0.043169],[109.357816,-0.04306],[109.357905,-0.042979],[109.357993,-0.0429],[109.357966,-0.042891],[109.357936,-0.042885],[109.35793,-0.042864],[109.357999,-0.042828],[109.35793,-0.042795],[109.357822,-0.04268],[109.357723,-0.042668],[109.357693,-0.042641],[109.357641,-0.042704],[109.357585,-0.042773],[109.35751,-0.042716],[109.357576,-0.042635],[109.357621,-0.04258],[109.357621,-0.042544],[109.35751,-0.042444],[109.357456,-0.04251],[109.35739,-0.042592],[109.35727,-0.042481],[109.357344,-0.042402],[109.357393,-0.042351],[109.357381,-0.042248],[109.35742,-0.04223],[109.357366,-0.042148],[109.357324,-0.04217],[109.357291,-0.042142],[109.357258,-0.042176],[109.357294,-0.042206],[109.357282,-0.042239],[109.357229,-0.042286],[109.357138,-0.042366],[109.357027,-0.042248],[109.357112,-0.04216],[109.357144,-0.042127],[109.357105,-0.042091],[109.357075,-0.042076],[109.357054,-0.042046],[109.357063,-0.042025],[109.357027,-0.042025],[109.357008,-0.042017],[109.35698,-0.041982],[109.356967,-0.041948],[109.356972,-0.041915],[109.35698,-0.041893],[109.357005,-0.041873],[109.357029,-0.041876],[109.357036,-0.041868],[109.356977,-0.041828],[109.356953,-0.04181],[109.356928,-0.041836],[109.356962,-0.041878],[109.356916,-0.041929],[109.356833,-0.042022],[109.356754,-0.04196],[109.356856,-0.04186],[109.35692,-0.041797],[109.356835,-0.041722],[109.356837,-0.041596],[109.356731,-0.041529],[109.356621,-0.041616],[109.356591,-0.041641],[109.356444,-0.041462],[109.356373,-0.041537],[109.356183,-0.041323],[109.35627,-0.041235],[109.356284,-0.041221],[109.356321,-0.04126],[109.356365,-0.041233],[109.356429,-0.041306],[109.35654,-0.041191],[109.356468,-0.041119],[109.356429,-0.041114],[109.356409,-0.041099],[109.356405,-0.041073],[109.356393,-0.041048],[109.356375,-0.041019],[109.35635,-0.041009],[109.356269,-0.040988],[109.35622,-0.040975],[109.356152,-0.041048],[109.356124,-0.041043],[109.356115,-0.041029],[109.356112,-0.041004],[109.356159,-0.040948],[109.356171,-0.04091],[109.356162,-0.040866],[109.35613,-0.040849],[109.356095,-0.040842],[109.356061,-0.040832],[109.356019,-0.040871],[109.356029,-0.040895],[109.356029,-0.04091],[109.356029,-0.040936],[109.356014,-0.040961],[109.355982,-0.040971],[109.355951,-0.040982],[109.355931,-0.041005],[109.35584,-0.040904],[109.355905,-0.040839],[109.356009,-0.040735],[109.356,-0.0407],[109.355967,-0.040681],[109.355957,-0.040647],[109.355943,-0.040634],[109.355918,-0.040632],[109.355881,-0.040622],[109.355862,-0.040608],[109.355857,-0.040581],[109.355857,-0.040557],[109.355862,-0.04053],[109.35587,-0.04052],[109.355896,-0.040481],[109.355889,-0.040447],[109.35587,-0.040418],[109.35583,-0.040401],[109.355823,-0.040394],[109.355798,-0.040369],[109.355776,-0.04037],[109.355742,-0.040358],[109.355703,-0.04033],[109.355712,-0.040309],[109.355715,-0.040272],[109.355715,-0.040233],[109.355702,-0.040212],[109.355656,-0.040187],[109.355619,-0.040168],[109.355584,-0.04016],[109.35553,-0.040163],[109.355523,-0.040185],[109.355503,-0.040194],[109.355472,-0.04019],[109.355464,-0.040189],[109.355371,-0.040065],[109.355362,-0.040004],[109.355371,-0.039962],[109.355368,-0.039917],[109.35532,-0.039862],[109.35526,-0.03985],[109.355212,-0.039877],[109.355203,-0.039868],[109.355126,-0.039946],[109.355021,-0.040016],[109.35488,-0.03982],[109.354984,-0.039725],[109.355114,-0.039609],[109.355054,-0.039557],[109.355045,-0.039539],[109.355036,-0.039431],[109.354873,-0.039561],[109.354742,-0.039666],[109.3547,-0.039621],[109.354706,-0.039566],[109.354682,-0.039527],[109.354664,-0.039488],[109.354643,-0.039455],[109.354589,-0.039449],[109.354562,-0.039482],[109.354556,-0.039515],[109.354511,-0.039548],[109.354463,-0.0395],[109.354454,-0.039485],[109.354376,-0.039476],[109.354328,-0.039412],[109.354334,-0.039385],[109.354265,-0.039307],[109.354268,-0.039259],[109.35425,-0.039265],[109.354211,-0.039301],[109.354091,-0.039171],[109.354145,-0.039108],[109.354097,-0.039053],[109.354112,-0.039026],[109.354094,-0.038993],[109.354229,-0.038881],[109.354205,-0.038866],[109.354064,-0.038981],[109.353992,-0.038887],[109.354147,-0.038726],[109.354141,-0.038718],[109.354068,-0.038627],[109.354169,-0.038519],[109.354076,-0.038407],[109.354022,-0.038449],[109.353935,-0.038353],[109.353887,-0.038389],[109.353816,-0.038301],[109.353875,-0.038253],[109.3538,-0.03816],[109.353736,-0.038202],[109.353794,-0.038273],[109.35368,-0.038377],[109.353533,-0.038202],[109.353599,-0.038132],[109.353545,-0.038054],[109.353473,-0.038102],[109.353404,-0.038009],[109.35352,-0.037936],[109.353501,-0.037911],[109.35346,-0.037858],[109.353529,-0.037799],[109.353468,-0.0377],[109.353381,-0.037755],[109.353351,-0.037774],[109.353297,-0.037727],[109.353211,-0.037799],[109.353227,-0.037824],[109.353184,-0.037849],[109.353173,-0.037944],[109.35307,-0.038007],[109.352975,-0.037831],[109.353049,-0.03779],[109.352984,-0.037681],[109.353007,-0.037663],[109.353103,-0.037779],[109.353193,-0.037731],[109.353202,-0.037677],[109.353283,-0.037629],[109.353412,-0.037552],[109.353414,-0.037475],[109.353335,-0.037387],[109.353191,-0.03748],[109.353211,-0.037505],[109.353195,-0.037515],[109.353083,-0.037586],[109.353054,-0.037527],[109.353154,-0.037463],[109.353202,-0.037432],[109.353164,-0.037376],[109.35311,-0.037414],[109.353029,-0.037471],[109.352984,-0.03741],[109.353056,-0.037355],[109.3532,-0.037244],[109.353171,-0.037204],[109.353187,-0.037183],[109.353128,-0.037118],[109.352957,-0.037245],[109.352881,-0.037301],[109.352836,-0.037235],[109.352791,-0.037272],[109.352735,-0.037206],[109.352862,-0.037106],[109.352989,-0.037007],[109.353034,-0.037065],[109.353155,-0.036957],[109.353112,-0.036909],[109.353023,-0.036975],[109.353,-0.036955],[109.353034,-0.036927],[109.353016,-0.0369],[109.353045,-0.036864],[109.353016,-0.036833],[109.352915,-0.036928],[109.352876,-0.036889],[109.352776,-0.036945],[109.352701,-0.036987],[109.352633,-0.036853],[109.352709,-0.036802],[109.352786,-0.036749],[109.352636,-0.036566],[109.352611,-0.036547],[109.35258,-0.036543],[109.352498,-0.036529],[109.352332,-0.036633],[109.352073,-0.036298],[109.35222,-0.036192],[109.352118,-0.036045],[109.352078,-0.03604],[109.352026,-0.036076],[109.352103,-0.036133],[109.352055,-0.036221],[109.35197,-0.036167],[109.35188,-0.036031],[109.351956,-0.035947],[109.352004,-0.035956],[109.352076,-0.035911],[109.352078,-0.035877],[109.352058,-0.035855],[109.352031,-0.035839],[109.352008,-0.03585],[109.351934,-0.035891],[109.351887,-0.035832],[109.351999,-0.035766],[109.35195,-0.035755],[109.351927,-0.035746],[109.351911,-0.035705],[109.351916,-0.035676],[109.35179,-0.03573],[109.351747,-0.035766],[109.351705,-0.035705],[109.351788,-0.035678],[109.351738,-0.035578],[109.351648,-0.03563],[109.351615,-0.03556],[109.351664,-0.035531],[109.351639,-0.035497],[109.351664,-0.035467],[109.351705,-0.035454],[109.351619,-0.035325],[109.351498,-0.035393],[109.351459,-0.035307],[109.351561,-0.03527],[109.351525,-0.035178],[109.351414,-0.035216],[109.351257,-0.034738],[109.351332,-0.034711],[109.351428,-0.034677],[109.351396,-0.034636],[109.351401,-0.034611],[109.351428,-0.034596],[109.351453,-0.034587],[109.351455,-0.034537],[109.351269,-0.034605],[109.351261,-0.034592],[109.351162,-0.034446],[109.35113,-0.034401],[109.351058,-0.034298],[109.350954,-0.034133],[109.350862,-0.033958],[109.350782,-0.033784],[109.350695,-0.033629],[109.3506,-0.033467],[109.350509,-0.03332],[109.350454,-0.033259],[109.350213,-0.032988],[109.350171,-0.032918],[109.350079,-0.032795],[109.349988,-0.032673],[109.349898,-0.03254],[109.349849,-0.032464],[109.349799,-0.032388],[109.349703,-0.032227],[109.349625,-0.032062],[109.349552,-0.031896],[109.349539,-0.031867],[109.349687,-0.0318],[109.349637,-0.031707],[109.349494,-0.031764],[109.34937,-0.031814],[109.349275,-0.031587],[109.349336,-0.031553],[109.349356,-0.031528],[109.349358,-0.031494],[109.34934,-0.031476],[109.349309,-0.031481],[109.349244,-0.031515],[109.349191,-0.031413],[109.349168,-0.031424],[109.349121,-0.031372],[109.349249,-0.031274],[109.349462,-0.031688],[109.349605,-0.031621],[109.349519,-0.031494],[109.349468,-0.031505],[109.349456,-0.031453],[109.349654,-0.031308],[109.349623,-0.031299],[109.349578,-0.03129],[109.349515,-0.031288],[109.349483,-0.031281],[109.349438,-0.031272],[109.349416,-0.031238],[109.3494,-0.031222],[109.349281,-0.031264],[109.34924,-0.031254],[109.349184,-0.031139],[109.3492,-0.031103],[109.349213,-0.031071],[109.349279,-0.031055],[109.349317,-0.031075],[109.349348,-0.031057],[109.349373,-0.030989],[109.349346,-0.030933],[109.349306,-0.030892],[109.349256,-0.030885],[109.349123,-0.030962],[109.349083,-0.030985],[109.349025,-0.030865],[109.349065,-0.030845],[109.349094,-0.030831],[109.349103,-0.030794],[109.349121,-0.030776],[109.349162,-0.030779],[109.349175,-0.030808],[109.349209,-0.030794],[109.349177,-0.030758],[109.349121,-0.030754],[109.349119,-0.03074],[109.349153,-0.030717],[109.34918,-0.030681],[109.349166,-0.030629],[109.349182,-0.0306],[109.349225,-0.030582],[109.349227,-0.030525],[109.349204,-0.030471],[109.349164,-0.030459],[109.349137,-0.030491],[109.34913,-0.030525],[109.349081,-0.03053],[109.349016,-0.030543],[109.348995,-0.030505],[109.349016,-0.030473],[109.349049,-0.030466],[109.349083,-0.030457],[109.349097,-0.03043],[109.349088,-0.030416],[109.349052,-0.030434],[109.349027,-0.030421],[109.348991,-0.030419],[109.348871,-0.030487],[109.348813,-0.030386],[109.348721,-0.030185],[109.348634,-0.029959],[109.348567,-0.029786],[109.348462,-0.029852],[109.348442,-0.029798],[109.348359,-0.029755],[109.348226,-0.029499],[109.348285,-0.029454],[109.348296,-0.029474],[109.348357,-0.029438],[109.348305,-0.029361],[109.348244,-0.029391],[109.348177,-0.029277],[109.348311,-0.029203],[109.348284,-0.029146],[109.348266,-0.029115],[109.348123,-0.029252],[109.348057,-0.029166],[109.348089,-0.029139],[109.348006,-0.029019],[109.348118,-0.028933],[109.347967,-0.028711],[109.347898,-0.028693],[109.34788,-0.028664],[109.347882,-0.02863],[109.347909,-0.028603],[109.347891,-0.028535],[109.347837,-0.02846],[109.347851,-0.028406],[109.347843,-0.028392],[109.347764,-0.02825],[109.347703,-0.028101],[109.347691,-0.028059],[109.347704,-0.027937],[109.347764,-0.027744],[109.347812,-0.027662],[109.347815,-0.027554],[109.347869,-0.027499],[109.347932,-0.027478],[109.347911,-0.027429],[109.348001,-0.027336],[109.348103,-0.027351],[109.348133,-0.027315],[109.348022,-0.027227],[109.347577,-0.027495],[109.347495,-0.027484],[109.34733,-0.02717],[109.347126,-0.026781],[109.347169,-0.026701],[109.347222,-0.026604],[109.347147,-0.026548],[109.347053,-0.026505],[109.346973,-0.026488],[109.346931,-0.026385],[109.346895,-0.026394],[109.346766,-0.026095],[109.346814,-0.026071],[109.346738,-0.025899],[109.346666,-0.025697],[109.346586,-0.025508],[109.346507,-0.025361],[109.346489,-0.025329],[109.346441,-0.025245],[109.346384,-0.025145],[109.346337,-0.025061],[109.346304,-0.024997],[109.346274,-0.024936],[109.346267,-0.024919],[109.346419,-0.024837],[109.346446,-0.024785],[109.346446,-0.024735],[109.346471,-0.024674],[109.346484,-0.024547],[109.346473,-0.024488],[109.346475,-0.024436],[109.346482,-0.024348],[109.346513,-0.024284],[109.346509,-0.024218],[109.3465,-0.024155],[109.346516,-0.024049],[109.346498,-0.023958],[109.346493,-0.023886],[109.346444,-0.023868],[109.346401,-0.023831],[109.346351,-0.023815],[109.346338,-0.023745],[109.34632,-0.023621],[109.346345,-0.023624],[109.346371,-0.023625],[109.346388,-0.023625],[109.346431,-0.023623],[109.346459,-0.02362],[109.346466,-0.02362],[109.346467,-0.02362],[109.346483,-0.023618],[109.346536,-0.023613],[109.34666,-0.023604],[109.346973,-0.023554],[109.347143,-0.02354],[109.347317,-0.023506],[109.347335,-0.023495],[109.347335,-0.023438],[109.347258,-0.023416],[109.34726,-0.023368],[109.347393,-0.023389],[109.347436,-0.02342],[109.347501,-0.023432],[109.347544,-0.023447],[109.3476,-0.023441],[109.347634,-0.023418],[109.347654,-0.023407],[109.347668,-0.023382],[109.347751,-0.023389],[109.347758,-0.023441],[109.347778,-0.023443],[109.347782,-0.023321],[109.347877,-0.023339],[109.347886,-0.023427],[109.347899,-0.023425],[109.347908,-0.023384],[109.348,-0.023382],[109.348012,-0.023361],[109.34818,-0.023346],[109.348214,-0.023391],[109.348381,-0.023393],[109.348385,-0.02338],[109.348662,-0.023343],[109.34874,-0.023327],[109.348776,-0.02333],[109.34883,-0.023346],[109.348851,-0.023366],[109.348854,-0.023394],[109.348989,-0.02338],[109.348995,-0.023391],[109.349017,-0.023395],[109.349057,-0.0233],[109.349188,-0.023343],[109.349224,-0.02328],[109.349385,-0.023286],[109.349402,-0.023305],[109.349471,-0.023298],[109.34947,-0.023169],[109.349944,-0.023086],[109.35006,-0.023074],[109.350134,-0.023079],[109.350138,-0.023118],[109.350172,-0.023123],[109.350224,-0.023102],[109.350263,-0.023081],[109.350281,-0.023035],[109.350284,-0.022981],[109.350578,-0.022976],[109.350646,-0.022981],[109.350647,-0.023004],[109.350656,-0.023166],[109.350709,-0.023113],[109.350778,-0.023076],[109.350896,-0.023045],[109.351043,-0.023023],[109.351162,-0.023021],[109.351236,-0.023032],[109.351239,-0.022905],[109.35124,-0.022886],[109.351327,-0.022893],[109.351376,-0.022886],[109.351375,-0.02283],[109.351396,-0.02283],[109.351461,-0.022859],[109.3515,-0.022867],[109.351569,-0.022881],[109.351572,-0.02293],[109.35159,-0.022925],[109.351592,-0.022901],[109.351631,-0.022895],[109.351631,-0.022845],[109.351631,-0.022823],[109.351732,-0.022825],[109.351742,-0.022823],[109.351742,-0.022845],[109.351842,-0.02284],[109.351842,-0.022802],[109.351842,-0.022749],[109.351911,-0.022749],[109.351913,-0.022785],[109.351916,-0.022849],[109.352009,-0.022844],[109.352018,-0.022759],[109.352021,-0.022732],[109.352029,-0.022733],[109.352097,-0.022739],[109.352178,-0.022718],[109.352384,-0.02276],[109.352485,-0.022794],[109.35269,-0.022815],[109.352737,-0.02274],[109.352917,-0.022735],[109.352971,-0.022715],[109.352987,-0.022663],[109.352903,-0.022656],[109.352905,-0.022614],[109.352949,-0.022604],[109.353068,-0.022562],[109.353078,-0.02252],[109.353117,-0.022474],[109.353136,-0.022449],[109.353161,-0.022444],[109.35319,-0.022445],[109.353218,-0.022449],[109.353237,-0.022459],[109.353266,-0.022484],[109.353271,-0.022513],[109.353271,-0.022542],[109.353286,-0.022557],[109.353303,-0.022512],[109.353303,-0.022501],[109.353389,-0.022496],[109.353394,-0.022471],[109.353412,-0.022452],[109.35343,-0.022446],[109.353457,-0.022446],[109.353474,-0.022447],[109.353484,-0.022442],[109.353486,-0.022425],[109.35349,-0.02241],[109.353498,-0.022403],[109.353517,-0.0224],[109.353534,-0.022404],[109.353546,-0.022413],[109.353554,-0.022429],[109.35356,-0.022444],[109.353566,-0.022454],[109.353574,-0.022467],[109.353613,-0.02247],[109.353659,-0.022461],[109.353694,-0.022452],[109.353743,-0.022422],[109.353773,-0.022389],[109.353799,-0.022382],[109.353809,-0.02236],[109.353819,-0.022342],[109.353849,-0.022333],[109.353885,-0.022332],[109.353929,-0.022326],[109.353942,-0.022304],[109.353971,-0.022301],[109.353996,-0.022299],[109.354005,-0.022195],[109.354018,-0.022051],[109.354317,-0.022051],[109.354312,-0.022142],[109.354305,-0.02227],[109.354332,-0.022289],[109.354357,-0.022298],[109.354379,-0.022299],[109.354394,-0.022292],[109.354401,-0.022272],[109.354414,-0.022259],[109.35443,-0.022257],[109.35445,-0.022257],[109.354478,-0.022243],[109.354494,-0.022235],[109.354519,-0.022243],[109.354534,-0.022252],[109.354549,-0.022228],[109.354622,-0.022228],[109.354626,-0.022107],[109.354627,-0.022073],[109.354688,-0.02207],[109.354688,-0.022021],[109.35471,-0.021999],[109.354732,-0.021989],[109.354772,-0.021987],[109.354799,-0.021987],[109.354821,-0.02199],[109.354839,-0.022007],[109.354843,-0.022019],[109.354846,-0.022058],[109.354902,-0.022063],[109.35491,-0.022038],[109.354927,-0.022016],[109.354941,-0.022007],[109.354961,-0.022002],[109.354969,-0.022007],[109.354976,-0.022053],[109.355023,-0.022051],[109.355035,-0.022074],[109.355047,-0.022097],[109.355077,-0.022106],[109.355106,-0.022107],[109.355136,-0.022104],[109.355152,-0.022092],[109.355153,-0.022063],[109.35521,-0.022058],[109.355327,-0.022102],[109.35541,-0.022114],[109.355401,-0.02204],[109.355394,-0.021978],[109.355465,-0.021971],[109.355476,-0.022033],[109.355487,-0.022097],[109.355494,-0.022126],[109.355504,-0.02217],[109.355512,-0.022209],[109.355523,-0.02215],[109.355536,-0.022121],[109.35556,-0.022105],[109.355605,-0.022066],[109.35561,-0.022021],[109.355612,-0.022007],[109.355609,-0.021973],[109.355631,-0.021936],[109.355698,-0.021929],[109.35575,-0.021956],[109.355811,-0.021947],[109.355848,-0.021912],[109.355868,-0.021874],[109.355877,-0.021825],[109.355877,-0.021803],[109.355924,-0.021806],[109.355921,-0.021844],[109.355938,-0.021864],[109.355948,-0.021888],[109.355963,-0.021917],[109.355998,-0.021936],[109.356037,-0.021929],[109.356057,-0.021876],[109.356079,-0.021842],[109.356106,-0.021849],[109.356121,-0.021856],[109.356138,-0.021851],[109.356147,-0.021812],[109.356153,-0.021779],[109.356167,-0.021747],[109.35618,-0.021716],[109.356206,-0.021715],[109.356234,-0.021723],[109.356273,-0.021723],[109.356314,-0.021703],[109.356339,-0.021681],[109.356373,-0.021671],[109.356418,-0.0217],[109.356552,-0.02172],[109.356607,-0.021744],[109.356627,-0.021769],[109.356639,-0.021793],[109.356651,-0.021817],[109.356656,-0.021856],[109.356666,-0.021898],[109.356675,-0.021927],[109.35669,-0.021954],[109.356707,-0.021983],[109.356712,-0.022012],[109.356703,-0.022037],[109.356702,-0.022068],[109.356712,-0.022102],[109.35673,-0.022119],[109.356744,-0.022148],[109.356747,-0.022175],[109.356752,-0.022129],[109.356754,-0.02208],[109.356771,-0.022029],[109.356789,-0.021988],[109.356852,-0.021912],[109.356906,-0.021905],[109.356963,-0.021889],[109.357048,-0.021893],[109.357056,-0.021915],[109.357068,-0.021947],[109.357122,-0.021961],[109.357174,-0.02197],[109.357206,-0.021959],[109.357209,-0.021921],[109.357211,-0.021891],[109.357221,-0.021846],[109.35725,-0.021812],[109.357287,-0.021776],[109.357301,-0.021761],[109.357322,-0.021776],[109.357341,-0.021815],[109.357349,-0.021844],[109.357368,-0.021873],[109.357388,-0.021906],[109.357402,-0.021927],[109.357425,-0.0219],[109.357434,-0.021885],[109.357455,-0.021896],[109.357495,-0.021919],[109.35753,-0.021934],[109.357586,-0.021944],[109.357597,-0.021908],[109.35764,-0.02189],[109.35767,-0.021874],[109.357695,-0.021859],[109.357712,-0.021835],[109.357722,-0.021813],[109.357722,-0.021782],[109.357722,-0.021735],[109.357705,-0.021718],[109.3577,-0.021647],[109.3577,-0.02161],[109.358023,-0.021618],[109.358104,-0.021598],[109.358164,-0.021598],[109.358213,-0.021606],[109.358309,-0.021621],[109.358377,-0.021616],[109.358444,-0.021627],[109.358498,-0.021642],[109.358549,-0.021611],[109.35856,-0.021597],[109.3586,-0.02161],[109.358719,-0.021611],[109.358766,-0.021631],[109.358817,-0.021657],[109.35887,-0.021674],[109.358924,-0.021673],[109.35898,-0.021669],[109.359009,-0.021656],[109.359022,-0.021639],[109.359028,-0.021617],[109.35903,-0.021593],[109.359067,-0.021592],[109.359079,-0.021624],[109.359092,-0.021645],[109.359129,-0.021656],[109.359196,-0.021655],[109.359287,-0.021567],[109.359299,-0.021533],[109.359313,-0.021492],[109.359306,-0.021437],[109.359306,-0.0214],[109.359321,-0.02139],[109.359352,-0.021396],[109.359414,-0.021394],[109.359458,-0.021373],[109.359513,-0.021368],[109.359538,-0.021366],[109.359564,-0.021352],[109.359583,-0.021339],[109.359586,-0.021312],[109.359588,-0.021289],[109.359599,-0.021247],[109.359616,-0.021223],[109.359661,-0.021213],[109.359687,-0.021203],[109.359739,-0.021194],[109.359739,-0.021194],[109.359767,-0.02119],[109.359779,-0.021195],[109.359793,-0.021211],[109.359812,-0.021233],[109.359854,-0.02123],[109.359895,-0.021227],[109.359929,-0.021227],[109.359964,-0.021227],[109.360007,-0.021232],[109.360039,-0.02125],[109.360068,-0.021266],[109.360096,-0.021289],[109.36012,-0.021313],[109.360138,-0.021324],[109.360154,-0.02134],[109.360235,-0.021335],[109.360244,-0.021313],[109.360245,-0.021293],[109.360246,-0.021274],[109.360225,-0.021238],[109.360187,-0.021201],[109.360151,-0.02118],[109.36013,-0.021172],[109.360063,-0.021204],[109.360024,-0.021219],[109.359973,-0.021217],[109.359958,-0.02118],[109.35995,-0.021153],[109.35995,-0.021122],[109.359958,-0.021108],[109.360154,-0.021033],[109.360379,-0.021066],[109.360347,-0.021098],[109.360185,-0.021155],[109.360249,-0.021192],[109.360312,-0.021189],[109.36036,-0.021193],[109.360402,-0.021211],[109.360403,-0.02121],[109.360659,-0.021153],[109.360724,-0.021142],[109.360794,-0.021076],[109.3609,-0.021071],[109.360907,-0.021111],[109.36092,-0.02146],[109.3609,-0.021484],[109.360904,-0.021516],[109.360932,-0.021548],[109.360944,-0.021589],[109.360947,-0.021632],[109.360956,-0.021664],[109.360954,-0.021706],[109.360981,-0.021688],[109.361026,-0.021649],[109.361078,-0.02161],[109.361147,-0.021581],[109.361198,-0.021576],[109.361221,-0.021586],[109.361247,-0.021603],[109.361265,-0.021612],[109.361277,-0.021578],[109.361284,-0.02152],[109.361284,-0.021444],[109.361269,-0.021403],[109.361228,-0.021369],[109.361151,-0.021343],[109.36112,-0.021284],[109.361124,-0.02124],[109.36113,-0.021212],[109.361241,-0.021239],[109.361639,-0.021224],[109.361852,-0.021196],[109.36198,-0.021118],[109.361994,-0.021054],[109.362072,-0.021033],[109.362249,-0.021089],[109.362285,-0.021146],[109.362235,-0.021246],[109.362214,-0.021303],[109.362427,-0.021409],[109.362515,-0.021434],[109.362647,-0.021396],[109.362711,-0.021332],[109.362777,-0.021312],[109.362819,-0.021299],[109.362847,-0.021227],[109.362887,-0.021211],[109.363019,-0.021223],[109.363039,-0.021259],[109.363071,-0.021259],[109.363083,-0.021203],[109.363111,-0.021179],[109.363203,-0.021142],[109.363267,-0.021138],[109.363319,-0.021154],[109.363359,-0.021154],[109.363371,-0.021114],[109.363426,-0.021094],[109.363454,-0.02109],[109.363462,-0.021066],[109.363634,-0.02109],[109.363754,-0.021146],[109.363766,-0.021223],[109.363806,-0.021263],[109.363818,-0.02134],[109.36385,-0.021344],[109.36385,-0.021227],[109.363894,-0.021203],[109.363906,-0.021158],[109.363934,-0.021134],[109.36397,-0.021146],[109.36401,-0.021203],[109.364066,-0.021231],[109.364134,-0.021264],[109.364212,-0.021227],[109.364257,-0.02117],[109.364287,-0.021146],[109.36432,-0.021158],[109.364355,-0.02117],[109.364406,-0.021165],[109.364418,-0.021177],[109.36443,-0.021197],[109.364458,-0.021204],[109.36447,-0.021183],[109.364482,-0.021148],[109.36449,-0.021121],[109.364472,-0.021097],[109.364472,-0.021064],[109.36449,-0.021019],[109.364534,-0.020997],[109.36457,-0.021008],[109.36458,-0.021042],[109.364595,-0.021068],[109.364615,-0.021068],[109.364652,-0.021059],[109.364674,-0.021046],[109.364705,-0.021046],[109.364713,-0.021061],[109.36471,-0.02108],[109.364728,-0.021097],[109.364779,-0.021085],[109.364806,-0.021065],[109.36485,-0.021048],[109.364872,-0.021066],[109.364888,-0.021088],[109.364936,-0.021092],[109.364959,-0.021092],[109.364991,-0.021112],[109.365028,-0.021124],[109.365061,-0.021117],[109.365098,-0.021109],[109.36515,-0.021109],[109.365201,-0.021129],[109.365241,-0.021126],[109.365268,-0.02111],[109.36531,-0.021112],[109.365351,-0.021139],[109.365384,-0.021155],[109.365403,-0.021177],[109.365411,-0.021209],[109.36542,-0.021233],[109.365422,-0.021256],[109.36541,-0.021272],[109.365413,-0.021307],[109.365421,-0.021292],[109.365432,-0.021268],[109.36545,-0.021255],[109.365467,-0.021251],[109.365531,-0.021209],[109.365553,-0.021214],[109.365568,-0.021241],[109.365597,-0.02128],[109.365615,-0.021318],[109.365632,-0.021333],[109.365818,-0.021345],[109.365956,-0.021346],[109.366051,-0.021348],[109.366108,-0.021352],[109.366186,-0.02112],[109.366635,-0.021129],[109.36662,-0.021228],[109.366441,-0.021228],[109.366492,-0.021265],[109.366558,-0.021292],[109.366692,-0.021304],[109.36677,-0.021301],[109.36683,-0.021334],[109.366944,-0.021355],[109.366983,-0.021385],[109.367013,-0.021397],[109.367052,-0.021364],[109.367124,-0.021358],[109.367172,-0.021376],[109.367223,-0.021376],[109.367283,-0.021361],[109.367325,-0.021352],[109.367379,-0.021343],[109.367412,-0.021361],[109.367469,-0.021388],[109.367505,-0.021364],[109.36755,-0.021355],[109.367574,-0.021364],[109.367649,-0.021416],[109.367697,-0.021431],[109.367754,-0.021449],[109.367793,-0.021482],[109.367808,-0.0215],[109.367805,-0.021542],[109.367811,-0.021579],[109.367841,-0.021545],[109.36785,-0.021452],[109.367874,-0.021407],[109.367949,-0.021404],[109.367985,-0.021382],[109.368003,-0.021301],[109.368072,-0.021304],[109.36809,-0.021262],[109.368267,-0.021292],[109.368381,-0.021304],[109.368672,-0.021394],[109.368597,-0.021558],[109.368609,-0.021606],[109.36869,-0.021642],[109.368798,-0.021654],[109.368876,-0.021687],[109.368915,-0.02173],[109.368966,-0.021775],[109.369014,-0.02182],[109.36905,-0.02185],[109.369158,-0.021841],[109.369245,-0.021835],[109.36934,-0.021862],[109.3694,-0.021862],[109.369469,-0.021856],[109.369508,-0.021787],[109.369577,-0.021829],[109.369535,-0.021908],[109.369568,-0.021935],[109.369631,-0.021953],[109.369703,-0.021932],[109.369748,-0.021971],[109.369808,-0.021995],[109.369889,-0.022001],[109.370057,-0.02201],[109.370108,-0.021962],[109.370162,-0.021932],[109.370252,-0.021977],[109.370438,-0.022059],[109.370531,-0.022044],[109.370762,-0.022116],[109.37072,-0.022228],[109.370747,-0.022237],[109.370858,-0.02208],[109.370897,-0.022119],[109.370921,-0.022161],[109.370969,-0.022198],[109.371002,-0.022216],[109.371095,-0.022246],[109.371212,-0.022288],[109.371299,-0.022324],[109.371362,-0.022373],[109.37141,-0.022412],[109.371479,-0.022457],[109.371572,-0.022496],[109.371623,-0.022509],[109.371702,-0.022589],[109.371746,-0.022564],[109.37181,-0.02256],[109.371862,-0.022593],[109.371946,-0.022629],[109.372085,-0.022673],[109.372181,-0.022717],[109.372245,-0.022754],[109.372305,-0.022778],[109.372397,-0.022782],[109.372461,-0.022798],[109.372489,-0.022842],[109.372529,-0.022907],[109.372605,-0.022987],[109.372733,-0.023096],[109.372793,-0.023031],[109.372973,-0.023092],[109.373049,-0.022971],[109.373417,-0.023112],[109.373429,-0.02316],[109.373485,-0.023209],[109.373529,-0.023233],[109.373549,-0.023289],[109.373569,-0.023325],[109.373605,-0.023345],[109.373649,-0.023313],[109.373921,-0.023402],[109.374037,-0.023418],[109.374178,-0.023469],[109.374183,-0.023574],[109.374421,-0.023708],[109.374559,-0.023637],[109.374635,-0.023646],[109.37479,-0.023732],[109.374825,-0.023769],[109.374809,-0.023831],[109.374923,-0.02389],[109.37495,-0.023841],[109.374974,-0.023837],[109.375011,-0.023828],[109.375076,-0.023864],[109.375197,-0.023909],[109.375184,-0.023924],[109.375127,-0.023997],[109.375284,-0.024085],[109.375336,-0.024009],[109.375393,-0.024041],[109.375718,-0.024175],[109.375657,-0.024303],[109.375708,-0.024327],[109.375738,-0.024223],[109.375809,-0.024212],[109.375849,-0.024206],[109.375878,-0.024175],[109.376023,-0.024254],[109.376055,-0.024254],[109.376135,-0.024286],[109.37615,-0.024257],[109.375984,-0.024174],[109.376027,-0.024087],[109.376317,-0.024235],[109.37631,-0.024259],[109.37633,-0.02427],[109.376295,-0.024372],[109.376313,-0.024384],[109.3763,-0.024414],[109.376288,-0.024437],[109.376262,-0.024437],[109.376276,-0.024459],[109.376304,-0.024486],[109.37636,-0.024509],[109.375707,-0.025298],[109.375557,-0.025895],[109.375541,-0.027246],[109.376087,-0.031276],[109.376031,-0.031293],[109.376011,-0.031439],[109.374678,-0.032803],[109.37325,-0.034241],[109.370994,-0.036182],[109.372502,-0.037745],[109.372537,-0.03775],[109.374834,-0.040155],[109.37672,-0.042266],[109.377889,-0.043672],[109.379609,-0.04577],[109.380741,-0.047151],[109.383225,-0.050929],[109.384821,-0.053385],[109.384897,-0.053612],[109.37948,-0.057806],[109.37948,-0.057806],[109.378309,-0.058676],[109.376687,-0.059852],[109.37645,-0.060024],[109.375308,-0.060853],[109.374859,-0.061186],[109.374575,-0.061419],[109.373693,-0.062143]]]},"type":"Feature","id":0,"properties":{"jml_pnddk":93231,"Ket":"Pontianak Timur","Id":0,"Plan_Area":113026328.1}},{"geometry":{"type":"Polygon","coordinates":[[[109.354252,-0.042078],[109.353347,-0.043105],[109.351759,-0.044535],[109.351933,-0.044875],[109.350875,-0.046066],[109.349543,-0.047512],[109.348581,-0.048964],[109.347276,-0.051005],[109.345489,-0.053023],[109.341772,-0.057301],[109.33823,-0.06131],[109.335019,-0.065132],[109.332436,-0.068188],[109.330405,-0.070784],[109.327746,-0.074815],[109.324635,-0.079408],[109.323938,-0.080432],[109.323893,-0.080525],[109.322111,-0.078844],[109.317027,-0.074426],[109.316878,-0.074281],[109.316848,-0.07427],[109.315045,-0.072703],[109.312892,-0.070573],[109.310941,-0.068583],[109.310119,-0.067745],[109.306801,-0.064362],[109.304832,-0.062354],[109.304737,-0.062337],[109.304701,-0.062305],[109.305925,-0.061158],[109.306992,-0.060036],[109.308032,-0.058992],[109.308863,-0.058213],[109.309221,-0.057793],[109.310141,-0.056869],[109.310954,-0.05591],[109.312039,-0.054989],[109.31413,-0.052848],[109.316423,-0.050635],[109.3172,-0.049848],[109.317927,-0.049078],[109.318919,-0.04814],[109.319593,-0.047502],[109.320916,-0.046111],[109.321915,-0.045152],[109.32271,-0.044388],[109.323722,-0.043416],[109.324486,-0.042619],[109.325032,-0.04205],[109.326783,-0.040538],[109.329812,-0.03792],[109.3326,-0.035512],[109.333982,-0.034143],[109.33666,-0.031564],[109.337895,-0.030388],[109.338103,-0.030334],[109.33867,-0.029896],[109.339895,-0.029009],[109.340732,-0.028449],[109.342105,-0.027631],[109.343563,-0.026695],[109.344777,-0.026092],[109.344777,-0.026094],[109.344825,-0.026079],[109.344825,-0.026068],[109.344863,-0.02605],[109.344912,-0.026141],[109.344977,-0.026281],[109.344918,-0.026309],[109.344902,-0.026312],[109.344862,-0.02623],[109.344808,-0.026264],[109.344891,-0.026416],[109.344988,-0.026631],[109.34512,-0.026916],[109.345116,-0.026964],[109.345176,-0.026948],[109.345232,-0.027029],[109.345124,-0.027069],[109.345248,-0.027335],[109.345424,-0.027645],[109.346269,-0.029345],[109.346222,-0.029379],[109.346141,-0.029438],[109.34629,-0.029803],[109.346219,-0.029839],[109.346233,-0.029946],[109.346376,-0.030182],[109.346425,-0.030275],[109.346482,-0.030232],[109.346557,-0.030353],[109.34677,-0.030858],[109.346749,-0.030884],[109.346882,-0.031255],[109.346951,-0.031292],[109.346951,-0.031346],[109.347053,-0.031587],[109.347154,-0.031625],[109.347234,-0.031791],[109.347282,-0.031963],[109.347319,-0.032038],[109.347357,-0.032022],[109.347458,-0.032269],[109.347554,-0.032393],[109.347703,-0.03272],[109.347748,-0.032708],[109.347776,-0.032771],[109.34784,-0.032906],[109.347903,-0.033034],[109.347958,-0.033133],[109.347985,-0.033173],[109.348083,-0.033296],[109.348167,-0.033397],[109.348196,-0.033504],[109.34824,-0.033601],[109.348184,-0.033645],[109.348328,-0.033879],[109.348408,-0.033971],[109.348444,-0.033955],[109.34852,-0.034052],[109.348476,-0.034092],[109.348596,-0.034293],[109.348552,-0.034354],[109.34866,-0.034591],[109.34862,-0.034643],[109.34866,-0.034744],[109.348592,-0.034804],[109.34864,-0.034909],[109.34882,-0.034829],[109.348744,-0.034728],[109.348824,-0.034692],[109.348928,-0.034861],[109.34888,-0.034889],[109.348884,-0.034933],[109.348976,-0.034998],[109.34892,-0.035123],[109.348876,-0.035143],[109.348882,-0.035194],[109.348833,-0.035225],[109.348918,-0.035404],[109.348952,-0.035393],[109.348907,-0.035291],[109.349085,-0.035196],[109.349116,-0.035255],[109.349037,-0.035298],[109.349067,-0.035363],[109.348999,-0.035395],[109.349031,-0.035456],[109.349121,-0.035452],[109.349159,-0.035499],[109.349235,-0.035483],[109.349287,-0.03556],[109.349377,-0.035558],[109.349435,-0.035644],[109.349379,-0.035678],[109.349379,-0.035712],[109.349399,-0.035739],[109.349429,-0.035739],[109.349451,-0.035757],[109.349467,-0.035794],[109.349467,-0.03585],[109.349469,-0.035877],[109.349492,-0.035902],[109.34951,-0.035909],[109.349523,-0.035927],[109.349521,-0.03595],[109.349539,-0.035986],[109.349681,-0.036246],[109.349857,-0.036547],[109.350113,-0.037003],[109.350316,-0.037341],[109.350356,-0.037317],[109.350396,-0.037293],[109.350587,-0.037599],[109.350566,-0.037647],[109.350539,-0.037706],[109.350502,-0.037765],[109.35055,-0.03784],[109.350673,-0.038007],[109.350809,-0.037989],[109.350881,-0.03798],[109.350945,-0.038076],[109.350966,-0.03812],[109.350975,-0.038156],[109.350993,-0.038184],[109.351038,-0.038202],[109.351065,-0.03822],[109.351056,-0.038259],[109.351104,-0.03832],[109.351085,-0.038334],[109.35121,-0.038471],[109.351358,-0.038679],[109.351504,-0.038877],[109.351655,-0.039066],[109.35182,-0.039282],[109.352004,-0.039489],[109.352188,-0.039681],[109.352363,-0.039881],[109.352537,-0.040114],[109.352711,-0.04032],[109.352894,-0.040512],[109.353085,-0.040728],[109.353273,-0.04094],[109.353471,-0.041137],[109.353663,-0.04134],[109.353829,-0.04157],[109.353985,-0.041779],[109.354157,-0.041973],[109.354252,-0.042078]]]},"type":"Feature","id":1,"properties":{"jml_pnddk":49176,"Ket":"Pontianak Selatan","Id":0,"Plan_Area":113026328.1}},{"geometry":{"type":"MultiPolygon","coordinates":[[[[109.298758,0.003911],[109.298555,0.003814],[109.298262,0.003846],[109.298036,0.003975],[109.297539,0.003975],[109.297133,0.004039],[109.296884,0.004329],[109.296726,0.004425],[109.296636,0.004554],[109.296681,0.004682],[109.296816,0.004875],[109.296997,0.005004],[109.297449,0.005132],[109.29772,0.005004],[109.298036,0.004875],[109.298397,0.004682],[109.298713,0.004554],[109.298781,0.004264],[109.298758,0.003911]]],[[[109.311636,0.03961],[109.316182,0.038033],[109.317004,0.037747],[109.318405,0.037268],[109.320004,0.036707],[109.32149,0.036191],[109.324115,0.03528],[109.324174,0.03526],[109.332009,0.032541],[109.33206,0.032526],[109.332064,0.032522],[109.333547,0.032008],[109.335525,0.031474],[109.336942,0.031094],[109.337918,0.030833],[109.351621,0.027158],[109.353616,0.026533],[109.370815,0.020775],[109.371008,0.020714],[109.37089,0.019297],[109.370532,0.018669],[109.370744,0.018155],[109.370752,0.017219],[109.370175,0.01607],[109.370432,0.015115],[109.370601,0.01412],[109.370217,0.013088],[109.369865,0.01241],[109.369909,0.011507],[109.369661,0.010245],[109.369848,0.009276],[109.370511,0.00909],[109.370774,0.007644],[109.371248,0.006883],[109.371449,0.005772],[109.371754,0.004093],[109.372071,0.003021],[109.372297,0.001977],[109.372657,0.001057],[109.373071,0.000283],[109.373158,-0.000332],[109.37335,-0.000657],[109.374226,-0.001458],[109.375134,-0.00209],[109.375744,-0.002253],[109.376111,-0.002583],[109.376088,-0.002791],[109.37579,-0.002911],[109.375806,-0.003195],[109.376,-0.003487],[109.375964,-0.003773],[109.375774,-0.0041],[109.376136,-0.004764],[109.376417,-0.005332],[109.376511,-0.005799],[109.376949,-0.00625],[109.377829,-0.008935],[109.377965,-0.010701],[109.377948,-0.010693],[109.3779,-0.010663],[109.377876,-0.010617],[109.377855,-0.010563],[109.377833,-0.010514],[109.377807,-0.010575],[109.377762,-0.010572],[109.377648,-0.010479],[109.377525,-0.010382],[109.37729,-0.010382],[109.377173,-0.010393],[109.377024,-0.0105],[109.376811,-0.010704],[109.376741,-0.010699],[109.37672,-0.010677],[109.376704,-0.010597],[109.376704,-0.010468],[109.376651,-0.010318],[109.376507,-0.010082],[109.376411,-0.009867],[109.376325,-0.009802],[109.376192,-0.009754],[109.376101,-0.00969],[109.376059,-0.009641],[109.376069,-0.009566],[109.376059,-0.009518],[109.376064,-0.009464],[109.376144,-0.009427],[109.376256,-0.009287],[109.376299,-0.009191],[109.376363,-0.009003],[109.376288,-0.00911],[109.376203,-0.009228],[109.376091,-0.009325],[109.375984,-0.0094],[109.375931,-0.009448],[109.375894,-0.009523],[109.375803,-0.009572],[109.375766,-0.009663],[109.375803,-0.009802],[109.375872,-0.00991],[109.375995,-0.009937],[109.37616,-0.009953],[109.376226,-0.010048],[109.37629,-0.010169],[109.37635,-0.010297],[109.37645,-0.010418],[109.37647,-0.010511],[109.37647,-0.010627],[109.376518,-0.010644],[109.376558,-0.010631],[109.376606,-0.010611],[109.37661,-0.010656],[109.376642,-0.010736],[109.376686,-0.01078],[109.376738,-0.010821],[109.37677,-0.010825],[109.376826,-0.010805],[109.376866,-0.010821],[109.376962,-0.010849],[109.377006,-0.010813],[109.377106,-0.010752],[109.377222,-0.010644],[109.37737,-0.010623],[109.377474,-0.010684],[109.377522,-0.010708],[109.377642,-0.010772],[109.377786,-0.010853],[109.377834,-0.010909],[109.377858,-0.010974],[109.377826,-0.011026],[109.377738,-0.011062],[109.377606,-0.01111],[109.377482,-0.011227],[109.377418,-0.011404],[109.37739,-0.011533],[109.37735,-0.011626],[109.377238,-0.011891],[109.37721,-0.012073],[109.377198,-0.012197],[109.377254,-0.012322],[109.377346,-0.012435],[109.377518,-0.012447],[109.377666,-0.012391],[109.377826,-0.01235],[109.378045,-0.012326],[109.378193,-0.012298],[109.378261,-0.012326],[109.378305,-0.012419],[109.378317,-0.01256],[109.378281,-0.012684],[109.378113,-0.012982],[109.377964,-0.013118],[109.377868,-0.013191],[109.377733,-0.013268],[109.377607,-0.01336],[109.377512,-0.013487],[109.377481,-0.013575],[109.377451,-0.013682],[109.377445,-0.013757],[109.377463,-0.013836],[109.377544,-0.013983],[109.377591,-0.014035],[109.377667,-0.014065],[109.377748,-0.014078],[109.377784,-0.014044],[109.377789,-0.01404],[109.37787,-0.014028],[109.377961,-0.013846],[109.378191,-0.013709],[109.378223,-0.013702],[109.37827,-0.013779],[109.37829,-0.013779],[109.378243,-0.013695],[109.378269,-0.01364],[109.378287,-0.013601],[109.378338,-0.013567],[109.378355,-0.013564],[109.378385,-0.01356],[109.37843,-0.01353],[109.378502,-0.013523],[109.37856,-0.013519],[109.378594,-0.013505],[109.37863,-0.013485],[109.378713,-0.013478],[109.378783,-0.013505],[109.378853,-0.013553],[109.378871,-0.013603],[109.378891,-0.013684],[109.378889,-0.013745],[109.378873,-0.013791],[109.378875,-0.013838],[109.378898,-0.013822],[109.37892,-0.013831],[109.378893,-0.013886],[109.378877,-0.013922],[109.378877,-0.01399],[109.378801,-0.014117],[109.378684,-0.014296],[109.378585,-0.014472],[109.378466,-0.014585],[109.378405,-0.014617],[109.378369,-0.014635],[109.378268,-0.014644],[109.378205,-0.01466],[109.378166,-0.014713],[109.378093,-0.014747],[109.378061,-0.014765],[109.37802,-0.014753],[109.377973,-0.014751],[109.377966,-0.014782],[109.377926,-0.01481],[109.377808,-0.014873],[109.377775,-0.014884],[109.377745,-0.014942],[109.377709,-0.014959],[109.377667,-0.014968],[109.37762,-0.014996],[109.377516,-0.015096],[109.377475,-0.015136],[109.377436,-0.015192],[109.377419,-0.015229],[109.377416,-0.015277],[109.377426,-0.015343],[109.37745,-0.015399],[109.377514,-0.01545],[109.377591,-0.015501],[109.377671,-0.015535],[109.377839,-0.015555],[109.377878,-0.015557],[109.37817,-0.015572],[109.378248,-0.015576],[109.378259,-0.015599],[109.378261,-0.015647],[109.378322,-0.015694],[109.378369,-0.015725],[109.378433,-0.015774],[109.378524,-0.015776],[109.378553,-0.015781],[109.378578,-0.015795],[109.378624,-0.015846],[109.378661,-0.015905],[109.378689,-0.015934],[109.37871,-0.015971],[109.378732,-0.016009],[109.378612,-0.01617],[109.378562,-0.016143],[109.378541,-0.016131],[109.378471,-0.016196],[109.378408,-0.016253],[109.378203,-0.01642],[109.378051,-0.016543],[109.377952,-0.016691],[109.377844,-0.017385],[109.377829,-0.017437],[109.377826,-0.017612],[109.377826,-0.017844],[109.377805,-0.017923],[109.377766,-0.01801],[109.377694,-0.018107],[109.377646,-0.018149],[109.377544,-0.018255],[109.377536,-0.018317],[109.377438,-0.018402],[109.3774,-0.018397],[109.377394,-0.0184],[109.377407,-0.018429],[109.377388,-0.018499],[109.377319,-0.018638],[109.377237,-0.018807],[109.377052,-0.019185],[109.377055,-0.019244],[109.377058,-0.019309],[109.376926,-0.019529],[109.376872,-0.01971],[109.376856,-0.020036],[109.376862,-0.020208],[109.376868,-0.020591],[109.376874,-0.020636],[109.376874,-0.020777],[109.376855,-0.021027],[109.376837,-0.021229],[109.376817,-0.021416],[109.376799,-0.021457],[109.376742,-0.021584],[109.376729,-0.021631],[109.376709,-0.021704],[109.376614,-0.021758],[109.376513,-0.021706],[109.37647,-0.021684],[109.376439,-0.021661],[109.376401,-0.021638],[109.376351,-0.021629],[109.376299,-0.021629],[109.376236,-0.021641],[109.376169,-0.021625],[109.376122,-0.021595],[109.376074,-0.021566],[109.376002,-0.021541],[109.375953,-0.021521],[109.37594,-0.021505],[109.375915,-0.021484],[109.375868,-0.021482],[109.375836,-0.021462],[109.375805,-0.021426],[109.37578,-0.021392],[109.375748,-0.021367],[109.375726,-0.021355],[109.375708,-0.021326],[109.375699,-0.021296],[109.375681,-0.021272],[109.375638,-0.021235],[109.375622,-0.021197],[109.375521,-0.021138],[109.375622,-0.020943],[109.375562,-0.020984],[109.375514,-0.020998],[109.375474,-0.021034],[109.375451,-0.02107],[109.375442,-0.021099],[109.375391,-0.021122],[109.37533,-0.021115],[109.375251,-0.021102],[109.375209,-0.021088],[109.375164,-0.021072],[109.375114,-0.020998],[109.375071,-0.020984],[109.375035,-0.020975],[109.375004,-0.020973],[109.374977,-0.02095],[109.374959,-0.020921],[109.374957,-0.020873],[109.374855,-0.020882],[109.374828,-0.020871],[109.374781,-0.020821],[109.374646,-0.020712],[109.374552,-0.020635],[109.374482,-0.02061],[109.374439,-0.020601],[109.374383,-0.02059],[109.374358,-0.020558],[109.374313,-0.020554],[109.374281,-0.020624],[109.374129,-0.020552],[109.374115,-0.020468],[109.374067,-0.020468],[109.374032,-0.020449],[109.374019,-0.020425],[109.374019,-0.020386],[109.374008,-0.02037],[109.373963,-0.020361],[109.373919,-0.020364],[109.373884,-0.020365],[109.373858,-0.020358],[109.373837,-0.020331],[109.373824,-0.020282],[109.373831,-0.020248],[109.373831,-0.020217],[109.373814,-0.020198],[109.373738,-0.020365],[109.37373,-0.020382],[109.373647,-0.020344],[109.373654,-0.020325],[109.373684,-0.020251],[109.37363,-0.020263],[109.373609,-0.020304],[109.373507,-0.020504],[109.373474,-0.020516],[109.373453,-0.020562],[109.373222,-0.020438],[109.373246,-0.020402],[109.373228,-0.020374],[109.373271,-0.020304],[109.373188,-0.020303],[109.373089,-0.020259],[109.373082,-0.020243],[109.373104,-0.020218],[109.373065,-0.020196],[109.372994,-0.020194],[109.372913,-0.020172],[109.37291,-0.020131],[109.372917,-0.020092],[109.372924,-0.020058],[109.37293,-0.020026],[109.372912,-0.019995],[109.372886,-0.019951],[109.372883,-0.019932],[109.372853,-0.019897],[109.372807,-0.019849],[109.372762,-0.019805],[109.372745,-0.019768],[109.372743,-0.019727],[109.372713,-0.019744],[109.372701,-0.019768],[109.372681,-0.019752],[109.372659,-0.019727],[109.372632,-0.019683],[109.372584,-0.019661],[109.372534,-0.019657],[109.372475,-0.019632],[109.372389,-0.019583],[109.372335,-0.019572],[109.372304,-0.019583],[109.372288,-0.019622],[109.372279,-0.01961],[109.372266,-0.019577],[109.37223,-0.019476],[109.37217,-0.019482],[109.372131,-0.019569],[109.372114,-0.019559],[109.372053,-0.019525],[109.371981,-0.019464],[109.371952,-0.019425],[109.371945,-0.019404],[109.37193,-0.019369],[109.371925,-0.019328],[109.371908,-0.019304],[109.371896,-0.019282],[109.371896,-0.019236],[109.371888,-0.019258],[109.371883,-0.019321],[109.371842,-0.019341],[109.371809,-0.01938],[109.371743,-0.019399],[109.371638,-0.01938],[109.37152,-0.01934],[109.37148,-0.019333],[109.371437,-0.019345],[109.371335,-0.019296],[109.371302,-0.019284],[109.371269,-0.019282],[109.371252,-0.019253],[109.371223,-0.019236],[109.371149,-0.019223],[109.371095,-0.019204],[109.371058,-0.019194],[109.371028,-0.019177],[109.370977,-0.019173],[109.370936,-0.019175],[109.370894,-0.019156],[109.370844,-0.019092],[109.370805,-0.019024],[109.370739,-0.018961],[109.370643,-0.018912],[109.370577,-0.018903],[109.370511,-0.018907],[109.370452,-0.018924],[109.370373,-0.01893],[109.370317,-0.018925],[109.370221,-0.018857],[109.370184,-0.018837],[109.37014,-0.018871],[109.370127,-0.018903],[109.370088,-0.018903],[109.370031,-0.018883],[109.369973,-0.018896],[109.369945,-0.018934],[109.369898,-0.018951],[109.369867,-0.018898],[109.369837,-0.018865],[109.369789,-0.018847],[109.369744,-0.018832],[109.369702,-0.018832],[109.369636,-0.018856],[109.369579,-0.018868],[109.369528,-0.018847],[109.369498,-0.018838],[109.369477,-0.018801],[109.369459,-0.018738],[109.369432,-0.018663],[109.369405,-0.018657],[109.369408,-0.01862],[109.369429,-0.018572],[109.36945,-0.018533],[109.369444,-0.018454],[109.369453,-0.018409],[109.369477,-0.018321],[109.36951,-0.018273],[109.369521,-0.018237],[109.369551,-0.018217],[109.369587,-0.018201],[109.369609,-0.018167],[109.369611,-0.018138],[109.3696,-0.018097],[109.36962,-0.01807],[109.369643,-0.018045],[109.36967,-0.017986],[109.369697,-0.01797],[109.369737,-0.01797],[109.369751,-0.017979],[109.36974,-0.017945],[109.369701,-0.017918],[109.369681,-0.017904],[109.369665,-0.017884],[109.369665,-0.017843],[109.369697,-0.017755],[109.369726,-0.017701],[109.369731,-0.017664],[109.369724,-0.017639],[109.36976,-0.017544],[109.369794,-0.017499],[109.369827,-0.017433],[109.3698,-0.017406],[109.369818,-0.017368],[109.36987,-0.017261],[109.369908,-0.017139],[109.369969,-0.017026],[109.370115,-0.016879],[109.370122,-0.016824],[109.370111,-0.01679],[109.370055,-0.016768],[109.370012,-0.016765],[109.369886,-0.016861],[109.369787,-0.016953],[109.369722,-0.016996],[109.36969,-0.016983],[109.369697,-0.017053],[109.369679,-0.017098],[109.369526,-0.0172],[109.369627,-0.017289],[109.369598,-0.017341],[109.369411,-0.017268],[109.36938,-0.017327],[109.369348,-0.017345],[109.369285,-0.017393],[109.369249,-0.017447],[109.369231,-0.017506],[109.369294,-0.017581],[109.369339,-0.017587],[109.369398,-0.017572],[109.369463,-0.017556],[109.369521,-0.017612],[109.369526,-0.017678],[109.369578,-0.017954],[109.369535,-0.017993],[109.369472,-0.018063],[109.36942,-0.01812],[109.36938,-0.018176],[109.369357,-0.018242],[109.369357,-0.018346],[109.369333,-0.018409],[109.369283,-0.018475],[109.369211,-0.018638],[109.369168,-0.018647],[109.369148,-0.018681],[109.36918,-0.018747],[109.369182,-0.018819],[109.369174,-0.018839],[109.369017,-0.018815],[109.368664,-0.01876],[109.368228,-0.018708],[109.368215,-0.018733],[109.36818,-0.018752],[109.368141,-0.018779],[109.368102,-0.018786],[109.36804,-0.018774],[109.368033,-0.018745],[109.368026,-0.018711],[109.367988,-0.018664],[109.367952,-0.018607],[109.367855,-0.018554],[109.367765,-0.018541],[109.367753,-0.018477],[109.367745,-0.01845],[109.367733,-0.018409],[109.367723,-0.018361],[109.367716,-0.018314],[109.367723,-0.018268],[109.367719,-0.018173],[109.367713,-0.018141],[109.367714,-0.018113],[109.367724,-0.018052],[109.367736,-0.01802],[109.367748,-0.01795],[109.367724,-0.017979],[109.367682,-0.017997],[109.367665,-0.017996],[109.36764,-0.017995],[109.367618,-0.017998],[109.367613,-0.01803],[109.367623,-0.018078],[109.367642,-0.018108],[109.367653,-0.01814],[109.367594,-0.018171],[109.367591,-0.018214],[109.3676,-0.018228],[109.36767,-0.018244],[109.367657,-0.018319],[109.367635,-0.018367],[109.367586,-0.018404],[109.36749,-0.018457],[109.367471,-0.018492],[109.367374,-0.018541],[109.367321,-0.018541],[109.367247,-0.018528],[109.367164,-0.018521],[109.367104,-0.018516],[109.367026,-0.018528],[109.36698,-0.018521],[109.366937,-0.018499],[109.366906,-0.018543],[109.366897,-0.018584],[109.366808,-0.018578],[109.366798,-0.018635],[109.36672,-0.018632],[109.366711,-0.018573],[109.366705,-0.018526],[109.366669,-0.01849],[109.366636,-0.018457],[109.366594,-0.018439],[109.366546,-0.018448],[109.366534,-0.018493],[109.36651,-0.018535],[109.366469,-0.018566],[109.366429,-0.018596],[109.366404,-0.018564],[109.366384,-0.018538],[109.366333,-0.018481],[109.366273,-0.018469],[109.366189,-0.018451],[109.366141,-0.018469],[109.366102,-0.01843],[109.366033,-0.01843],[109.365928,-0.018478],[109.365856,-0.018472],[109.365808,-0.018454],[109.36579,-0.018409],[109.365787,-0.018369],[109.365793,-0.018333],[109.365739,-0.01836],[109.365676,-0.018378],[109.365073,-0.018291],[109.364965,-0.0183],[109.364911,-0.01833],[109.364845,-0.018348],[109.364767,-0.018399],[109.364687,-0.018427],[109.364591,-0.018442],[109.364588,-0.018582],[109.3642,-0.018582],[109.364146,-0.018574],[109.364126,-0.018632],[109.363988,-0.018623],[109.363988,-0.018581],[109.363883,-0.018575],[109.363871,-0.018623],[109.363739,-0.018614],[109.363723,-0.018542],[109.363715,-0.018505],[109.363682,-0.018475],[109.363589,-0.018451],[109.363493,-0.018454],[109.363433,-0.018472],[109.363382,-0.018496],[109.363355,-0.018517],[109.363307,-0.018418],[109.363316,-0.018372],[109.363331,-0.018312],[109.363343,-0.018261],[109.363292,-0.018288],[109.363253,-0.018315],[109.363205,-0.018399],[109.363166,-0.018433],[109.363109,-0.018448],[109.363079,-0.018511],[109.363033,-0.018556],[109.363028,-0.018561],[109.363022,-0.018561],[109.362956,-0.018565],[109.36277,-0.018577],[109.362729,-0.01854],[109.362659,-0.018533],[109.362642,-0.018585],[109.362176,-0.018613],[109.3621,-0.018626],[109.361981,-0.018596],[109.361981,-0.018532],[109.361937,-0.018491],[109.361761,-0.018487],[109.361685,-0.018528],[109.361697,-0.018628],[109.361581,-0.018636],[109.361585,-0.018685],[109.361285,-0.018733],[109.361281,-0.018677],[109.361193,-0.018693],[109.361185,-0.018745],[109.360917,-0.018773],[109.360921,-0.018729],[109.360829,-0.018721],[109.360813,-0.018781],[109.360745,-0.018777],[109.360741,-0.018737],[109.360693,-0.018729],[109.360689,-0.018685],[109.360537,-0.018665],[109.360513,-0.018685],[109.360433,-0.018632],[109.360173,-0.018665],[109.360165,-0.018805],[109.359985,-0.018822],[109.359629,-0.01885],[109.359397,-0.01891],[109.359385,-0.018983],[109.359329,-0.018983],[109.359325,-0.018934],[109.35911,-0.018946],[109.359114,-0.018906],[109.358934,-0.018954],[109.357077,-0.019327],[109.356911,-0.019348],[109.35686,-0.019388],[109.356729,-0.019382],[109.356675,-0.019368],[109.356643,-0.019327],[109.356585,-0.01937],[109.356533,-0.0194],[109.356499,-0.019397],[109.356441,-0.019402],[109.356409,-0.019418],[109.356367,-0.019445],[109.356333,-0.019431],[109.356288,-0.019425],[109.356245,-0.019452],[109.356194,-0.019486],[109.356155,-0.019472],[109.356068,-0.019495],[109.356027,-0.019488],[109.355935,-0.019434],[109.35571,-0.019465],[109.355647,-0.019499],[109.355641,-0.01952],[109.355631,-0.019554],[109.355627,-0.019585],[109.355589,-0.019619],[109.35555,-0.019626],[109.355496,-0.019608],[109.355443,-0.019554],[109.355423,-0.019557],[109.355379,-0.019592],[109.35535,-0.019597],[109.355329,-0.019574],[109.355083,-0.019626],[109.355078,-0.019662],[109.355064,-0.01968],[109.355019,-0.019678],[109.354979,-0.019694],[109.354979,-0.019719],[109.354952,-0.019739],[109.354912,-0.019733],[109.354867,-0.019712],[109.354843,-0.019676],[109.354799,-0.019662],[109.354747,-0.019662],[109.354678,-0.019678],[109.35467,-0.019713],[109.354643,-0.019719],[109.354563,-0.01963],[109.354563,-0.019582],[109.354596,-0.019553],[109.354595,-0.019509],[109.354555,-0.019445],[109.354543,-0.019413],[109.354543,-0.019348],[109.354519,-0.019268],[109.354523,-0.019223],[109.354547,-0.019179],[109.354551,-0.019131],[109.354555,-0.019091],[109.354602,-0.019054],[109.354609,-0.018892],[109.354555,-0.018698],[109.354484,-0.018999],[109.354451,-0.019591],[109.35444,-0.01997],[109.354436,-0.020113],[109.354105,-0.02016],[109.354013,-0.020174],[109.354011,-0.020244],[109.353975,-0.020251],[109.352978,-0.020445],[109.352978,-0.020468],[109.352978,-0.020533],[109.352415,-0.02056],[109.352372,-0.02043],[109.35233,-0.020434],[109.352137,-0.020451],[109.352119,-0.020454],[109.352004,-0.020467],[109.351965,-0.020518],[109.351698,-0.020548],[109.351698,-0.020705],[109.35129,-0.020732],[109.351161,-0.02075],[109.350993,-0.02085],[109.350864,-0.020853],[109.350855,-0.020811],[109.35069,-0.020856],[109.350684,-0.020919],[109.350537,-0.02091],[109.350453,-0.020937],[109.350255,-0.020931],[109.34997,-0.021079],[109.349764,-0.021088],[109.349734,-0.021091],[109.349557,-0.021118],[109.34954,-0.021094],[109.349527,-0.021073],[109.349494,-0.021079],[109.349455,-0.021028],[109.349389,-0.021001],[109.349395,-0.021103],[109.349164,-0.021106],[109.349172,-0.021183],[109.349179,-0.021239],[109.34878,-0.021324],[109.348513,-0.021338],[109.348006,-0.021408],[109.347949,-0.02139],[109.347913,-0.021369],[109.347886,-0.021354],[109.347883,-0.021303],[109.347871,-0.021236],[109.347841,-0.021212],[109.347787,-0.021203],[109.347763,-0.021224],[109.34772,-0.021243],[109.347729,-0.021313],[109.347664,-0.021318],[109.34764,-0.021309],[109.347628,-0.021363],[109.347538,-0.021372],[109.347523,-0.021324],[109.347511,-0.021263],[109.34752,-0.021233],[109.34752,-0.021185],[109.347508,-0.021164],[109.347454,-0.021164],[109.347379,-0.021173],[109.347343,-0.0212],[109.347325,-0.02123],[109.347304,-0.021284],[109.347283,-0.021306],[109.34728,-0.021393],[109.346936,-0.021378],[109.346936,-0.021339],[109.34672,-0.021336],[109.346711,-0.021444],[109.346705,-0.021444],[109.346523,-0.021434],[109.346525,-0.021257],[109.346513,-0.021239],[109.346441,-0.021251],[109.34642,-0.021278],[109.346408,-0.0213],[109.346351,-0.021306],[109.346276,-0.021309],[109.346204,-0.021324],[109.346144,-0.021348],[109.346093,-0.021354],[109.34603,-0.021345],[109.345904,-0.021324],[109.34557,-0.021306],[109.345429,-0.021268],[109.345234,-0.021212],[109.345013,-0.021158],[109.344813,-0.021113],[109.344636,-0.021076],[109.344468,-0.021045],[109.344464,-0.021037],[109.344506,-0.020823],[109.344503,-0.020762],[109.344455,-0.020711],[109.344389,-0.020684],[109.344329,-0.020684],[109.344284,-0.020781],[109.344281,-0.020838],[109.344305,-0.020883],[109.344298,-0.020991],[109.344296,-0.021025],[109.343867,-0.020841],[109.343896,-0.020763],[109.343939,-0.020645],[109.343429,-0.020424],[109.343412,-0.020458],[109.343399,-0.020485],[109.343426,-0.020527],[109.343417,-0.020557],[109.343216,-0.020458],[109.343225,-0.020388],[109.34277,-0.020113],[109.342518,-0.019893],[109.342563,-0.0198],[109.3425,-0.019784],[109.342482,-0.019799],[109.342242,-0.019667],[109.342149,-0.019836],[109.34202,-0.019757],[109.342092,-0.019567],[109.341987,-0.01951],[109.342014,-0.019452],[109.342071,-0.019488],[109.342108,-0.019416],[109.342143,-0.019444],[109.34217,-0.019401],[109.341972,-0.01922],[109.341868,-0.019222],[109.341813,-0.019223],[109.341654,-0.019144],[109.341486,-0.019032],[109.341241,-0.018892],[109.341225,-0.018844],[109.341167,-0.018837],[109.341138,-0.018824],[109.341093,-0.018729],[109.341168,-0.018668],[109.341194,-0.018647],[109.341169,-0.018616],[109.341127,-0.018622],[109.341079,-0.018629],[109.340924,-0.018518],[109.340877,-0.018498],[109.340825,-0.018491],[109.340692,-0.018387],[109.340811,-0.018213],[109.340718,-0.018053],[109.340614,-0.017877],[109.340565,-0.017804],[109.340593,-0.017757],[109.340551,-0.017689],[109.340488,-0.017646],[109.340413,-0.017612],[109.340337,-0.017576],[109.340229,-0.017565],[109.340112,-0.017558],[109.340029,-0.017468],[109.34004,-0.017429],[109.340042,-0.017388],[109.339975,-0.017286],[109.339939,-0.017268],[109.339885,-0.017289],[109.339876,-0.017277],[109.339898,-0.017239],[109.339892,-0.0172],[109.339844,-0.017155],[109.339802,-0.017151],[109.339799,-0.017189],[109.339775,-0.017205],[109.339709,-0.017198],[109.339678,-0.017155],[109.339655,-0.017105],[109.339635,-0.017042],[109.339574,-0.016965],[109.339523,-0.016931],[109.339424,-0.016938],[109.339368,-0.016965],[109.339203,-0.016793],[109.339224,-0.016745],[109.339197,-0.01675],[109.339129,-0.01684],[109.338933,-0.016711],[109.339005,-0.016618],[109.339055,-0.016646],[109.33912,-0.016573],[109.339118,-0.016519],[109.339086,-0.016467],[109.338886,-0.016252],[109.338883,-0.016189],[109.338844,-0.016139],[109.33879,-0.016145],[109.338677,-0.016041],[109.33854,-0.015905],[109.338499,-0.015806],[109.338481,-0.015717],[109.33843,-0.015618],[109.33835,-0.015448],[109.338227,-0.015294],[109.338159,-0.015235],[109.338065,-0.015208],[109.338038,-0.015197],[109.337972,-0.015167],[109.337912,-0.015165],[109.337876,-0.015129],[109.337822,-0.015099],[109.337772,-0.015074],[109.337741,-0.015027],[109.33768,-0.015013],[109.337655,-0.014968],[109.337698,-0.014931],[109.337631,-0.014905],[109.337586,-0.014871],[109.337523,-0.01485],[109.337437,-0.014814],[109.337401,-0.014742],[109.337365,-0.014674],[109.337343,-0.014617],[109.337192,-0.01445],[109.337152,-0.01437],[109.337111,-0.01433],[109.33703,-0.014327],[109.336992,-0.014318],[109.336947,-0.014305],[109.336839,-0.014404],[109.336762,-0.014409],[109.336632,-0.014307],[109.336643,-0.01428],[109.33647,-0.014144],[109.336648,-0.013913],[109.336717,-0.013963],[109.336738,-0.013899],[109.336715,-0.013813],[109.336666,-0.013777],[109.336639,-0.013566],[109.336589,-0.013487],[109.336549,-0.013397],[109.336522,-0.013311],[109.336495,-0.013268],[109.336477,-0.013245],[109.336495,-0.013215],[109.336518,-0.013182],[109.33658,-0.013148],[109.336645,-0.013046],[109.336469,-0.013167],[109.336232,-0.013399],[109.335939,-0.013161],[109.335903,-0.013157],[109.335858,-0.013111],[109.33581,-0.013069],[109.33575,-0.013016],[109.335732,-0.013032],[109.33564,-0.013114],[109.335528,-0.013012],[109.335587,-0.012949],[109.335613,-0.012921],[109.335467,-0.012803],[109.335437,-0.01284],[109.335381,-0.012908],[109.335197,-0.012729],[109.335082,-0.012627],[109.335118,-0.01257],[109.334578,-0.012052],[109.334611,-0.012007],[109.33465,-0.011954],[109.33456,-0.011879],[109.334425,-0.011764],[109.334426,-0.011672],[109.334427,-0.011601],[109.334414,-0.011468],[109.334391,-0.011364],[109.334346,-0.011284],[109.334285,-0.011216],[109.334218,-0.011189],[109.334105,-0.01118],[109.334074,-0.011146],[109.334112,-0.011094],[109.334072,-0.011033],[109.334012,-0.011099],[109.333934,-0.011012],[109.333891,-0.01097],[109.333894,-0.010899],[109.333674,-0.010671],[109.333635,-0.010612],[109.333554,-0.010564],[109.333503,-0.01056],[109.333514,-0.010489],[109.333309,-0.010295],[109.333282,-0.010304],[109.33308,-0.010111],[109.333061,-0.010126],[109.333046,-0.010136],[109.332947,-0.01005],[109.332999,-0.009982],[109.33297,-0.009948],[109.33297,-0.009896],[109.332963,-0.009828],[109.332918,-0.009817],[109.332904,-0.009801],[109.332907,-0.009783],[109.333023,-0.009454],[109.333065,-0.009336],[109.333081,-0.00918],[109.333124,-0.008965],[109.333167,-0.008772],[109.333206,-0.008561],[109.333241,-0.008429],[109.333252,-0.008262],[109.333358,-0.007878],[109.333406,-0.007754],[109.333439,-0.007518],[109.333475,-0.007431],[109.333456,-0.007054],[109.33343,-0.00714],[109.333411,-0.007169],[109.333413,-0.007338],[109.333413,-0.007427],[109.333389,-0.007552],[109.333364,-0.007654],[109.333219,-0.008195],[109.333194,-0.008277],[109.333169,-0.008384],[109.333106,-0.008593],[109.333081,-0.008619],[109.333069,-0.008675],[109.333067,-0.008756],[109.333039,-0.00905],[109.332991,-0.009268],[109.332932,-0.009484],[109.332925,-0.009506],[109.332892,-0.009593],[109.332864,-0.009668],[109.332838,-0.009732],[109.332809,-0.009789],[109.332784,-0.009835],[109.332766,-0.009859],[109.332757,-0.009863],[109.332756,-0.009863],[109.332737,-0.009936],[109.332688,-0.009977],[109.332502,-0.010117],[109.332379,-0.01],[109.332479,-0.009932],[109.332352,-0.009797],[109.332386,-0.00976],[109.332443,-0.009729],[109.332496,-0.00965],[109.332423,-0.009612],[109.332342,-0.009689],[109.332256,-0.009595],[109.332288,-0.009527],[109.332261,-0.009504],[109.33232,-0.009415],[109.332177,-0.009295],[109.332114,-0.009286],[109.332065,-0.009268],[109.332033,-0.00923],[109.332005,-0.009198],[109.331959,-0.009174],[109.331945,-0.00912],[109.33189,-0.009091],[109.331861,-0.009062],[109.331838,-0.008991],[109.331787,-0.008908],[109.331731,-0.008899],[109.331665,-0.008857],[109.331595,-0.008818],[109.3316,-0.008777],[109.331617,-0.008741],[109.331611,-0.008702],[109.331578,-0.008651],[109.331488,-0.008548],[109.331421,-0.008476],[109.331362,-0.008441],[109.331296,-0.008442],[109.331262,-0.008417],[109.331173,-0.008405],[109.331171,-0.008452],[109.331136,-0.008458],[109.331045,-0.008386],[109.33106,-0.008354],[109.331089,-0.008362],[109.331117,-0.008359],[109.331124,-0.008337],[109.331109,-0.008298],[109.330863,-0.008096],[109.330739,-0.008218],[109.330645,-0.008126],[109.330687,-0.008079],[109.330704,-0.008094],[109.330768,-0.008007],[109.330716,-0.007948],[109.330689,-0.007957],[109.330665,-0.00797],[109.330633,-0.007972],[109.330601,-0.007955],[109.330564,-0.007921],[109.330544,-0.007919],[109.330493,-0.007865],[109.330478,-0.007797],[109.33048,-0.007749],[109.330485,-0.007697],[109.330478,-0.007659],[109.330459,-0.007647],[109.330451,-0.007595],[109.330442,-0.007569],[109.330404,-0.007573],[109.330377,-0.007557],[109.330392,-0.007486],[109.330377,-0.007449],[109.330368,-0.007428],[109.330367,-0.00741],[109.330321,-0.007373],[109.3303,-0.007363],[109.33026,-0.007374],[109.330193,-0.007362],[109.330156,-0.00735],[109.330127,-0.007384],[109.330103,-0.007391],[109.330033,-0.007355],[109.329925,-0.00724],[109.329871,-0.007287],[109.329884,-0.007301],[109.329842,-0.00734],[109.329683,-0.007172],[109.329755,-0.007083],[109.329731,-0.007071],[109.329577,-0.006931],[109.329466,-0.006822],[109.329434,-0.006849],[109.329414,-0.006831],[109.329378,-0.00682],[109.329356,-0.006829],[109.329335,-0.006852],[109.329319,-0.00687],[109.32925,-0.006817],[109.328995,-0.0066],[109.329007,-0.006584],[109.329036,-0.006544],[109.329004,-0.006508],[109.329037,-0.006452],[109.328847,-0.006291],[109.32881,-0.006304],[109.328781,-0.006285],[109.328773,-0.00625],[109.328766,-0.006219],[109.328737,-0.006206],[109.328708,-0.006211],[109.32868,-0.006224],[109.328646,-0.006231],[109.328625,-0.006211],[109.328594,-0.00618],[109.328577,-0.00617],[109.328579,-0.006131],[109.328536,-0.006094],[109.328521,-0.006068],[109.328481,-0.006051],[109.328444,-0.006055],[109.32842,-0.006073],[109.328341,-0.006024],[109.328342,-0.005998],[109.328309,-0.005966],[109.328307,-0.005919],[109.328322,-0.005883],[109.328332,-0.005825],[109.328339,-0.005788],[109.328422,-0.005686],[109.328455,-0.005581],[109.328385,-0.005635],[109.328337,-0.005674],[109.328304,-0.005698],[109.328237,-0.005661],[109.32821,-0.005659],[109.328131,-0.005565],[109.328031,-0.005586],[109.327982,-0.005601],[109.327982,-0.005717],[109.327824,-0.005678],[109.327687,-0.005594],[109.327721,-0.005535],[109.327761,-0.005543],[109.327788,-0.005518],[109.327879,-0.005448],[109.327834,-0.005401],[109.327763,-0.005481],[109.327778,-0.005492],[109.327748,-0.005516],[109.327626,-0.005433],[109.327316,-0.005154],[109.327388,-0.005044],[109.327398,-0.004942],[109.327329,-0.004888],[109.327287,-0.00485],[109.327269,-0.004784],[109.327024,-0.004603],[109.326564,-0.004268],[109.32626,-0.004031],[109.326056,-0.003886],[109.32606,-0.003813],[109.325964,-0.003656],[109.325481,-0.003306],[109.325475,-0.003236],[109.325349,-0.003181],[109.325237,-0.003085],[109.325141,-0.002996],[109.325097,-0.002988],[109.325073,-0.002992],[109.324948,-0.00312],[109.324869,-0.003202],[109.324613,-0.002948],[109.324623,-0.002895],[109.324537,-0.002799],[109.324617,-0.002714],[109.324409,-0.002578],[109.324357,-0.002651],[109.323976,-0.002409],[109.323343,-0.001935],[109.323388,-0.001887],[109.323415,-0.001835],[109.32343,-0.001772],[109.32343,-0.001706],[109.323406,-0.001657],[109.323386,-0.001606],[109.323334,-0.0016],[109.323238,-0.0016],[109.323158,-0.001639],[109.323137,-0.001657],[109.323071,-0.001648],[109.323014,-0.001606],[109.322966,-0.001582],[109.322954,-0.001518],[109.322939,-0.001461],[109.322744,-0.001422],[109.322684,-0.001431],[109.322645,-0.001452],[109.322375,-0.001301],[109.322381,-0.00122],[109.322318,-0.001147],[109.321961,-0.001002],[109.321838,-0.000939],[109.321667,-0.000851],[109.321716,-0.000742],[109.321799,-0.000558],[109.321931,-0.000628],[109.321898,-0.000552],[109.321856,-0.000495],[109.321784,-0.000432],[109.321589,-0.000353],[109.321484,-0.000278],[109.321415,-0.000235],[109.321376,-0.000166],[109.321337,-0.000106],[109.321217,-8.1e-05],[109.321172,-0.000112],[109.32112,-0.000187],[109.32095,-0.000432],[109.320881,-0.000368],[109.321041,-0.000119],[109.321067,-7.8e-05],[109.320985,-7.1e-05],[109.320905,-6.3e-05],[109.320842,-7.2e-05],[109.320773,-9.9e-05],[109.320707,-0.000118],[109.320609,-0.000244],[109.320285,-3.6e-05],[109.320231,-0.000109],[109.319961,6.4e-05],[109.32,0.000175],[109.319892,0.000227],[109.319835,0.000154],[109.319487,0.000359],[109.318845,0.000562],[109.318767,0.000613],[109.31871,0.000661],[109.318587,0.000698],[109.318602,0.000731],[109.318506,0.000743],[109.318461,0.000698],[109.318437,0.000649],[109.318413,0.000619],[109.318365,0.000571],[109.318341,0.000541],[109.318251,0.000341],[109.318003,0.000504],[109.318128,0.000761],[109.318083,0.000791],[109.318131,0.000888],[109.317823,0.001042],[109.317811,0.001124],[109.317808,0.00115],[109.317754,0.001178],[109.317688,0.001193],[109.317674,0.001172],[109.317601,0.00106],[109.316313,0.001609],[109.316107,0.001702],[109.315609,0.001817],[109.315602,0.001896],[109.315417,0.001967],[109.315368,0.001967],[109.315282,0.001967],[109.315211,0.001996],[109.315176,0.002032],[109.313684,0.002501],[109.31332,0.002569],[109.313169,0.002622],[109.313089,0.002376],[109.312693,0.002501],[109.312761,0.002763],[109.312602,0.00282],[109.31251,0.002811],[109.312406,0.002847],[109.312327,0.002831],[109.312282,0.002813],[109.311513,0.003051],[109.311468,0.002969],[109.311275,0.003058],[109.311017,0.003145],[109.311071,0.003311],[109.310623,0.003472],[109.310452,0.003548],[109.310335,0.003607],[109.310212,0.003666],[109.309999,0.003757],[109.309908,0.003692],[109.309653,0.003794],[109.309731,0.003961],[109.309673,0.00397],[109.309594,0.003864],[109.309525,0.003837],[109.309194,0.003913],[109.308538,0.004068],[109.30856,0.004118],[109.308853,0.004793],[109.30888,0.004889],[109.308848,0.004981],[109.308778,0.004997],[109.308714,0.004964],[109.308394,0.004184],[109.308007,0.004254],[109.307968,0.004257],[109.307946,0.004219],[109.307767,0.003915],[109.307605,0.004033],[109.307718,0.004243],[109.307746,0.004296],[109.307644,0.004311],[109.30756,0.004317],[109.307353,0.004362],[109.307146,0.004389],[109.307089,0.004417],[109.306915,0.004456],[109.306822,0.004492],[109.306721,0.004468],[109.306481,0.004554],[109.305772,0.004735],[109.30577,0.004758],[109.305767,0.004812],[109.305725,0.00483],[109.305641,0.004824],[109.305605,0.004827],[109.305575,0.004863],[109.305506,0.004887],[109.305389,0.004915],[109.305362,0.004903],[109.305312,0.004862],[109.305002,0.004952],[109.304925,0.004963],[109.304867,0.004812],[109.304621,0.004918],[109.304546,0.004785],[109.30442,0.004818],[109.304491,0.005027],[109.304375,0.00509],[109.304318,0.005123],[109.304237,0.005117],[109.304207,0.005081],[109.304169,0.005042],[109.303884,0.00505],[109.30387,0.00505],[109.303851,0.005014],[109.30383,0.00499],[109.303782,0.004999],[109.303728,0.005023],[109.303671,0.005047],[109.303476,0.005075],[109.303463,0.005044],[109.303434,0.004972],[109.303074,0.005035],[109.302811,0.005035],[109.302732,0.005045],[109.302729,0.004975],[109.302498,0.004999],[109.302378,0.005002],[109.302327,0.004969],[109.302297,0.004966],[109.302234,0.004966],[109.302213,0.004984],[109.30212,0.005035],[109.301595,0.004994],[109.301355,0.004972],[109.301019,0.004998],[109.300937,0.005005],[109.300602,0.005167],[109.300259,0.005377],[109.300065,0.005449],[109.299893,0.005453],[109.299813,0.005461],[109.299765,0.005509],[109.299737,0.005573],[109.299657,0.005654],[109.299569,0.005698],[109.299473,0.00575],[109.299405,0.005803],[109.299373,0.005907],[109.299333,0.005952],[109.299245,0.006016],[109.299153,0.006052],[109.299117,0.006101],[109.299081,0.006185],[109.299074,0.006226],[109.298853,0.006339],[109.298695,0.006405],[109.298545,0.006525],[109.29796,0.006821],[109.297525,0.006981],[109.297543,0.007041],[109.297138,0.007267],[109.296979,0.007364],[109.296781,0.00747],[109.296748,0.007388],[109.296679,0.007418],[109.29661,0.007587],[109.296239,0.007805],[109.296242,0.007858],[109.296245,0.007886],[109.296233,0.007926],[109.296209,0.007935],[109.296179,0.007929],[109.296146,0.007913],[109.296001,0.007995],[109.295876,0.007977],[109.295699,0.00801],[109.295642,0.00791],[109.295168,0.008031],[109.295084,0.008089],[109.295012,0.008128],[109.29494,0.00814],[109.294865,0.008134],[109.294808,0.008116],[109.294694,0.00814],[109.294586,0.008149],[109.294529,0.008134],[109.29449,0.00811],[109.294241,0.008161],[109.294262,0.008273],[109.294283,0.008357],[109.294244,0.008354],[109.294235,0.008315],[109.294223,0.008264],[109.294139,0.008215],[109.294073,0.008197],[109.294031,0.008173],[109.293915,0.008176],[109.293843,0.008203],[109.293774,0.00827],[109.293729,0.008315],[109.293708,0.008394],[109.293663,0.008327],[109.293588,0.008224],[109.293492,0.008282],[109.293504,0.008324],[109.293489,0.008375],[109.293471,0.008339],[109.293453,0.008327],[109.293402,0.008342],[109.293366,0.008348],[109.293345,0.008333],[109.293315,0.008285],[109.293255,0.0083],[109.293282,0.008378],[109.293271,0.008444],[109.293186,0.008447],[109.29312,0.008339],[109.292709,0.008415],[109.292661,0.008384],[109.292613,0.008384],[109.29258,0.008412],[109.292564,0.008473],[109.292556,0.008502],[109.292508,0.008511],[109.292488,0.008477],[109.29243,0.008378],[109.292349,0.008397],[109.292348,0.008482],[109.292301,0.008514],[109.292253,0.008517],[109.292229,0.008487],[109.292205,0.008424],[109.292154,0.008442],[109.292124,0.008442],[109.292034,0.008427],[109.291932,0.008372],[109.291893,0.008394],[109.291893,0.00843],[109.291911,0.008466],[109.291872,0.008502],[109.291752,0.008614],[109.291702,0.008505],[109.291647,0.008387],[109.29091,0.008345],[109.290805,0.008354],[109.2907,0.008387],[109.290553,0.008418],[109.290493,0.008394],[109.290453,0.008403],[109.290489,0.008489],[109.290024,0.008531],[109.291123,0.011631],[109.29844,0.032276],[109.31161,0.039407],[109.311644,0.039396],[109.311636,0.03961]]]]},"type":"Feature","id":2,"properties":{"jml_pnddk":129762,"Ket":"Pontianak Utara","Id":0,"Plan_Area":113026328.1}},{"geometry":{"type":"Polygon","coordinates":[[[109.333501,-0.016436],[109.3335,-0.016437],[109.333439,-0.016379],[109.333328,-0.016497],[109.333276,-0.016605],[109.332691,-0.017483],[109.332554,-0.017603],[109.332313,-0.017763],[109.332095,-0.01791],[109.331903,-0.018039],[109.331641,-0.018155],[109.331436,-0.018231],[109.331147,-0.018307],[109.330364,-0.018483],[109.330316,-0.018495],[109.330209,-0.018518],[109.329878,-0.018566],[109.329748,-0.018611],[109.329665,-0.018631],[109.329593,-0.018633],[109.329495,-0.018648],[109.329089,-0.018715],[109.328754,-0.018778],[109.328153,-0.018881],[109.327985,-0.018901],[109.327742,-0.018961],[109.327536,-0.018989],[109.327066,-0.019056],[109.32662,-0.019144],[109.326419,-0.019187],[109.326094,-0.019247],[109.325821,-0.019287],[109.325538,-0.019345],[109.325357,-0.01937],[109.324478,-0.019517],[109.324133,-0.01958],[109.323582,-0.019688],[109.322886,-0.01981],[109.321936,-0.020001],[109.32125,-0.020139],[109.320636,-0.020239],[109.319948,-0.020381],[109.319174,-0.020537],[109.319021,-0.020569],[109.318437,-0.020669],[109.31822,-0.02073],[109.317851,-0.020805],[109.317634,-0.020842],[109.317005,-0.020995],[109.316744,-0.021073],[109.316269,-0.021183],[109.315738,-0.021333],[109.315377,-0.021408],[109.314793,-0.021576],[109.314523,-0.021656],[109.314378,-0.021701],[109.314137,-0.021776],[109.313924,-0.021832],[109.313741,-0.021884],[109.313418,-0.021957],[109.312775,-0.022147],[109.312284,-0.02229],[109.311998,-0.022398],[109.311638,-0.022515],[109.311067,-0.022723],[109.310551,-0.022916],[109.309922,-0.023176],[109.309364,-0.023409],[109.309121,-0.02351],[109.308044,-0.02392],[109.30725,-0.024236],[109.306388,-0.024614],[109.305416,-0.025025],[109.304422,-0.025473],[109.303338,-0.025964],[109.303295,-0.025979],[109.303258,-0.026054],[109.303182,-0.026084],[109.303142,-0.026099],[109.303017,-0.026119],[109.302536,-0.02635],[109.30203,-0.026605],[109.301519,-0.026891],[109.301121,-0.027131],[109.300918,-0.027271],[109.300816,-0.027351],[109.300733,-0.027382],[109.300678,-0.027424],[109.300625,-0.027449],[109.300563,-0.027484],[109.30051,-0.027514],[109.300445,-0.027559],[109.300407,-0.027602],[109.300367,-0.027637],[109.300322,-0.02765],[109.300277,-0.027665],[109.300225,-0.02769],[109.300122,-0.027752],[109.300102,-0.02778],[109.300104,-0.027817],[109.300047,-0.02786],[109.300014,-0.02788],[109.299972,-0.02788],[109.299932,-0.02791],[109.299909,-0.027938],[109.299876,-0.02796],[109.299821,-0.02798],[109.299794,-0.027988],[109.299764,-0.028015],[109.299689,-0.02807],[109.299616,-0.02808],[109.299576,-0.02811],[109.299506,-0.028163],[109.299396,-0.028241],[109.29935,-0.028276],[109.299185,-0.028391],[109.299138,-0.028408],[109.29912,-0.028443],[109.299093,-0.028469],[109.299042,-0.028479],[109.298965,-0.028521],[109.298915,-0.028544],[109.298892,-0.028581],[109.298867,-0.028616],[109.298815,-0.028649],[109.298609,-0.028764],[109.298501,-0.028844],[109.298431,-0.028887],[109.298346,-0.028947],[109.298296,-0.028989],[109.298236,-0.029042],[109.298227,-0.029049],[109.297638,-0.029432],[109.297196,-0.029769],[109.297179,-0.029773],[109.297019,-0.029871],[109.296906,-0.029961],[109.296075,-0.03056],[109.295812,-0.030765],[109.295393,-0.031076],[109.294995,-0.031386],[109.294477,-0.031764],[109.294419,-0.031817],[109.294381,-0.031872],[109.294281,-0.031927],[109.294224,-0.031975],[109.294181,-0.032005],[109.294149,-0.03204],[109.294139,-0.032085],[109.294101,-0.032115],[109.294078,-0.032128],[109.294046,-0.032155],[109.293956,-0.032175],[109.293465,-0.032593],[109.293216,-0.032806],[109.292579,-0.033292],[109.291899,-0.033992],[109.291767,-0.034104],[109.291501,-0.034364],[109.290983,-0.034878],[109.290484,-0.035353],[109.290199,-0.035672],[109.28968,-0.036185],[109.289307,-0.036563],[109.288378,-0.037482],[109.288123,-0.037728],[109.287366,-0.038482],[109.287204,-0.038662],[109.286348,-0.039472],[109.286085,-0.039741],[109.286072,-0.039753],[109.286142,-0.03983],[109.286142,-0.03983],[109.286057,-0.039738],[109.285127,-0.040606],[109.284592,-0.039845],[109.28398,-0.040448],[109.283643,-0.040863],[109.283355,-0.041078],[109.279314,-0.035319],[109.276163,-0.027219],[109.279911,-0.022169],[109.282096,-0.020096],[109.28567,-0.018412],[109.285357,-0.016811],[109.285924,-0.013915],[109.285674,-0.012231],[109.28653,-0.009964],[109.286883,-0.009042],[109.286937,-0.008601],[109.286991,-0.007969],[109.287053,-0.006733],[109.287053,-0.006733],[109.287053,-0.006723],[109.287066,-0.006413],[109.287067,-0.006394],[109.287058,-0.006382],[109.287061,-0.006356],[109.287072,-0.006266],[109.287039,-0.006221],[109.287039,-0.006221],[109.287073,-0.006263],[109.287095,-0.00621],[109.287011,-0.006043],[109.286955,-0.005691],[109.286941,-0.005575],[109.286939,-0.00555],[109.286936,-0.005527],[109.286888,-0.005237],[109.286858,-0.005089],[109.286854,-0.005063],[109.286853,-0.005063],[109.286647,-0.004013],[109.286617,-0.003648],[109.286623,-0.003623],[109.286611,-0.003543],[109.286615,-0.003484],[109.286605,-0.00348],[109.286591,-0.003019],[109.286597,-0.002506],[109.286646,-0.00212],[109.286655,-0.002034],[109.28666,-0.001988],[109.28669,-0.001708],[109.286716,-0.001464],[109.286729,-0.001314],[109.286754,-0.001041],[109.286809,-0.00065],[109.286831,-0.000506],[109.286878,-0.000122],[109.286893,-0.0],[109.286921,0.000225],[109.286936,0.000346],[109.286998,0.000849],[109.287029,0.001093],[109.287059,0.001269],[109.287051,0.001394],[109.287081,0.001382],[109.287104,0.001234],[109.287119,0.001201],[109.287155,0.001192],[109.287182,0.001174],[109.287215,0.001201],[109.28723,0.00131],[109.287251,0.00131],[109.287269,0.001222],[109.287452,0.001207],[109.287488,0.00128],[109.287566,0.001277],[109.28765,0.001253],[109.287707,0.001219],[109.287746,0.001207],[109.287773,0.001216],[109.287803,0.001216],[109.287839,0.001216],[109.28786,0.001225],[109.287881,0.001225],[109.288019,0.001225],[109.288124,0.001241],[109.28813,0.001322],[109.288163,0.001345],[109.288258,0.001325],[109.288507,0.001275],[109.288819,0.001179],[109.288847,0.001242],[109.289102,0.001223],[109.289464,0.001067],[109.289434,0.000992],[109.28965,0.000904],[109.289692,0.000989],[109.29023,0.000777],[109.290264,0.000746],[109.29016,0.000331],[109.290232,0.000343],[109.29028,0.000331],[109.290316,0.000319],[109.290352,0.000309],[109.290379,0.000246],[109.290408,0.000171],[109.290408,0.000119],[109.290531,4.4e-05],[109.290597,8e-06],[109.290639,2e-05],[109.290669,3.8e-05],[109.290732,5e-05],[109.290801,3.5e-05],[109.290855,1.1e-05],[109.290894,5e-06],[109.290906,4.7e-05],[109.290933,6.5e-05],[109.290951,0.000119],[109.29102,0.000168],[109.291071,0.000119],[109.291101,0.000143],[109.29114,0.000134],[109.29117,0.000107],[109.291182,8.6e-05],[109.291164,6.8e-05],[109.291167,5.3e-05],[109.291185,4.1e-05],[109.291215,3.5e-05],[109.291248,3.2e-05],[109.291257,-4e-06],[109.291257,-5.2e-05],[109.29128,-5.6e-05],[109.291313,-7.4e-05],[109.291322,-9.7e-05],[109.291318,-0.000167],[109.291284,-0.000219],[109.29139,-0.000321],[109.291412,-0.000289],[109.29146,-0.000131],[109.29152,-4.9e-05],[109.291601,-2e-05],[109.2917,-2e-05],[109.291781,-4e-05],[109.292165,-0.000221],[109.292779,-0.000475],[109.29328,-0.000705],[109.293632,-0.00077],[109.294127,-0.000931],[109.294293,-0.001087],[109.294453,-0.001248],[109.294666,-0.001237],[109.294783,-0.001302],[109.294991,-0.001377],[109.29505,-0.001355],[109.29529,-0.001398],[109.29537,-0.001468],[109.295585,-0.001439],[109.296553,-0.001635],[109.296702,-0.001731],[109.296889,-0.001726],[109.297326,-0.001785],[109.297577,-0.001796],[109.297705,-0.001871],[109.297854,-0.001871],[109.297886,-0.001983],[109.297923,-0.002085],[109.29803,-0.002118],[109.298088,-0.002053],[109.298163,-0.001962],[109.298222,-0.001978],[109.29828,-0.002042],[109.298296,-0.002155],[109.29844,-0.002214],[109.298467,-0.002128],[109.298574,-0.002112],[109.298584,-0.002032],[109.298776,-0.002032],[109.298877,-0.001892],[109.298968,-0.001908],[109.299032,-0.001871],[109.299224,-0.001914],[109.2994,-0.001924],[109.299507,-0.001838],[109.299672,-0.001898],[109.29981,-0.001774],[109.299928,-0.001785],[109.300018,-0.001801],[109.300072,-0.001769],[109.300322,-0.001699],[109.300471,-0.001699],[109.300791,-0.001731],[109.301005,-0.001699],[109.30117,-0.001575],[109.301213,-0.001527],[109.301356,-0.0015],[109.301388,-0.001559],[109.301452,-0.001581],[109.301495,-0.0015],[109.301596,-0.001479],[109.301687,-0.001441],[109.301735,-0.001345],[109.301874,-0.001323],[109.30206,-0.001313],[109.302289,-0.001313],[109.302364,-0.001313],[109.302347,-0.001167],[109.302709,-0.001112],[109.303238,-0.001189],[109.303345,-0.001098],[109.303484,-0.00106],[109.303649,-0.001033],[109.303665,-0.001082],[109.30374,-0.001146],[109.303793,-0.001194],[109.303851,-0.001141],[109.303873,-0.001109],[109.303963,-0.001098],[109.304065,-0.001071],[109.304086,-0.001125],[109.304246,-0.001092],[109.304385,-0.000985],[109.304491,-0.000958],[109.304624,-0.000921],[109.304656,-0.000964],[109.304656,-0.000996],[109.304822,-0.001055],[109.304912,-0.001017],[109.305067,-0.001023],[109.305323,-0.001012],[109.305296,-0.000889],[109.305286,-0.000807],[109.305312,-0.000711],[109.305541,-0.000811],[109.305483,-0.00098],[109.305728,-0.001114],[109.30576,-0.001055],[109.305872,-0.001033],[109.306032,-0.001033],[109.306139,-0.000974],[109.306251,-0.000953],[109.306331,-0.000885],[109.306389,-0.00089],[109.306501,-0.000985],[109.306501,-0.001071],[109.306752,-0.001066],[109.307024,-0.001082],[109.307503,-0.001173],[109.307679,-0.001232],[109.307717,-0.001302],[109.307765,-0.001329],[109.307855,-0.001248],[109.307935,-0.001237],[109.30802,-0.001323],[109.308068,-0.001339],[109.308191,-0.001286],[109.308324,-0.001377],[109.30833,-0.001436],[109.308303,-0.001538],[109.308282,-0.001624],[109.308276,-0.00172],[109.308335,-0.001742],[109.308388,-0.001672],[109.308436,-0.001533],[109.308543,-0.001404],[109.308692,-0.001355],[109.308932,-0.001355],[109.309081,-0.001436],[109.309289,-0.001495],[109.309444,-0.001549],[109.309785,-0.001645],[109.309844,-0.001538],[109.309913,-0.001559],[109.309908,-0.001661],[109.310046,-0.001672],[109.3101,-0.00164],[109.310201,-0.001651],[109.31026,-0.001694],[109.31026,-0.001763],[109.310318,-0.001774],[109.310372,-0.001688],[109.310537,-0.001699],[109.310723,-0.00179],[109.31083,-0.001876],[109.311145,-0.00193],[109.311363,-0.001989],[109.31147,-0.001801],[109.311678,-0.001898],[109.31171,-0.001957],[109.311662,-0.002112],[109.311672,-0.002144],[109.31171,-0.002177],[109.311784,-0.002214],[109.311912,-0.002123],[109.311976,-0.002118],[109.311966,-0.002161],[109.312099,-0.002166],[109.312115,-0.002101],[109.312232,-0.002075],[109.312499,-0.002171],[109.312477,-0.002332],[109.312536,-0.002359],[109.312621,-0.002305],[109.312691,-0.002386],[109.312712,-0.002445],[109.312739,-0.002456],[109.312819,-0.002359],[109.313256,-0.002509],[109.313517,-0.002622],[109.31357,-0.002649],[109.31356,-0.002703],[109.313656,-0.002762],[109.313645,-0.002821],[109.313672,-0.002869],[109.31373,-0.002874],[109.313794,-0.002815],[109.313832,-0.002799],[109.314178,-0.002939],[109.314146,-0.002992],[109.314551,-0.003186],[109.314653,-0.003041],[109.314679,-0.003051],[109.314679,-0.003084],[109.314716,-0.003116],[109.314764,-0.003019],[109.314892,-0.003127],[109.314887,-0.003202],[109.314919,-0.003207],[109.314951,-0.003186],[109.314978,-0.003191],[109.314994,-0.003175],[109.315036,-0.003202],[109.315047,-0.00332],[109.31502,-0.003379],[109.315154,-0.00347],[109.31517,-0.003433],[109.31534,-0.00354],[109.315522,-0.003497],[109.315655,-0.003325],[109.315969,-0.003497],[109.315927,-0.00369],[109.316161,-0.00384],[109.316151,-0.003878],[109.316529,-0.00413],[109.316646,-0.004001],[109.317137,-0.004248],[109.317542,-0.004522],[109.317419,-0.004817],[109.317579,-0.004882],[109.317622,-0.004968],[109.317723,-0.005059],[109.318288,-0.005467],[109.318375,-0.005355],[109.318665,-0.005569],[109.318857,-0.005451],[109.319443,-0.006047],[109.319705,-0.005881],[109.320105,-0.00631],[109.320057,-0.00646],[109.320062,-0.006498],[109.320632,-0.007019],[109.320686,-0.007045],[109.320691,-0.007104],[109.320787,-0.007185],[109.320835,-0.007185],[109.320915,-0.007223],[109.320995,-0.007303],[109.32116,-0.00748],[109.321427,-0.007781],[109.321576,-0.007861],[109.321688,-0.007749],[109.321811,-0.007824],[109.321731,-0.00792],[109.321992,-0.008199],[109.321954,-0.008253],[109.32205,-0.008355],[109.322072,-0.008436],[109.322408,-0.008677],[109.32253,-0.008555],[109.322618,-0.008624],[109.322743,-0.008721],[109.3228,-0.008764],[109.322712,-0.008892],[109.322935,-0.009106],[109.323042,-0.009176],[109.323117,-0.009112],[109.323207,-0.009198],[109.323166,-0.009284],[109.323178,-0.009337],[109.323214,-0.009377],[109.323258,-0.009377],[109.323258,-0.009445],[109.323306,-0.009477],[109.323406,-0.009409],[109.323454,-0.009397],[109.323422,-0.009369],[109.323477,-0.009321],[109.323505,-0.009347],[109.323617,-0.009481],[109.323702,-0.00958],[109.323678,-0.009614],[109.32367,-0.009679],[109.32373,-0.009763],[109.323802,-0.009755],[109.32397,-0.009892],[109.324126,-0.009985],[109.324153,-0.00996],[109.324228,-0.010007],[109.324434,-0.009896],[109.324525,-0.010017],[109.324389,-0.010137],[109.32423,-0.010279],[109.324274,-0.010343],[109.324486,-0.010203],[109.324705,-0.010057],[109.324841,-0.010206],[109.324637,-0.010351],[109.324693,-0.010403],[109.324733,-0.010444],[109.324673,-0.010544],[109.324861,-0.010637],[109.324917,-0.010729],[109.325073,-0.010802],[109.325117,-0.010806],[109.325277,-0.010943],[109.325369,-0.010971],[109.325426,-0.010937],[109.325473,-0.010974],[109.325587,-0.011066],[109.325686,-0.011136],[109.32576,-0.01116],[109.325799,-0.011238],[109.326096,-0.010939],[109.326165,-0.010981],[109.326195,-0.010954],[109.326408,-0.011114],[109.326372,-0.011175],[109.326507,-0.01128],[109.326552,-0.011238],[109.326801,-0.011428],[109.326873,-0.011449],[109.327002,-0.011567],[109.327061,-0.011603],[109.327139,-0.011669],[109.327262,-0.011772],[109.32734,-0.011703],[109.327553,-0.011893],[109.327535,-0.011929],[109.32761,-0.011992],[109.327736,-0.012096],[109.327829,-0.012174],[109.327895,-0.012195],[109.327955,-0.012259],[109.327976,-0.012246],[109.328231,-0.012512],[109.3286,-0.012824],[109.328657,-0.01288],[109.328425,-0.013175],[109.328561,-0.013291],[109.328491,-0.013385],[109.328609,-0.013481],[109.328627,-0.013575],[109.328651,-0.013662],[109.328732,-0.013714],[109.328873,-0.013798],[109.328945,-0.01385],[109.328993,-0.013931],[109.329026,-0.013985],[109.329233,-0.014049],[109.329362,-0.014097],[109.329401,-0.014064],[109.329476,-0.014064],[109.329518,-0.014079],[109.329506,-0.014121],[109.329592,-0.014164],[109.329841,-0.014321],[109.329898,-0.014278],[109.329961,-0.014308],[109.330102,-0.014121],[109.330303,-0.014254],[109.330333,-0.014217],[109.330351,-0.014194],[109.330639,-0.014429],[109.330608,-0.014466],[109.33039,-0.014725],[109.330411,-0.014755],[109.330546,-0.014722],[109.330735,-0.014734],[109.33084,-0.014695],[109.330915,-0.014668],[109.330987,-0.014692],[109.331083,-0.014764],[109.331119,-0.014795],[109.33114,-0.014843],[109.331176,-0.014873],[109.331254,-0.014888],[109.331296,-0.01493],[109.331341,-0.014967],[109.331414,-0.014887],[109.331439,-0.014893],[109.331474,-0.01491],[109.331527,-0.014952],[109.331599,-0.015025],[109.331686,-0.015119],[109.331788,-0.015216],[109.3319,-0.015306],[109.331914,-0.015316],[109.332031,-0.015197],[109.333451,-0.016385],[109.333501,-0.016436]]]},"type":"Feature","id":3,"properties":{"jml_pnddk":152880,"Ket":"Pontianak Barat","Id":0,"Plan_Area":113026328.1}},{"geometry":{"type":"Polygon","coordinates":[[[109.344777,-0.026092],[109.343563,-0.026695],[109.342105,-0.027631],[109.340732,-0.028449],[109.339895,-0.029009],[109.33867,-0.029896],[109.338103,-0.030334],[109.337895,-0.030388],[109.33666,-0.031564],[109.333982,-0.034143],[109.3326,-0.035512],[109.329812,-0.03792],[109.326783,-0.040538],[109.325032,-0.04205],[109.324486,-0.042619],[109.323722,-0.043416],[109.32271,-0.044388],[109.321915,-0.045152],[109.320916,-0.046111],[109.319593,-0.047502],[109.318919,-0.04814],[109.317927,-0.049078],[109.3172,-0.049848],[109.316423,-0.050635],[109.31413,-0.052848],[109.312039,-0.054989],[109.310954,-0.05591],[109.310141,-0.056869],[109.309221,-0.057793],[109.308863,-0.058213],[109.308032,-0.058992],[109.306992,-0.060036],[109.305925,-0.061158],[109.304701,-0.062305],[109.303581,-0.0613],[109.30193,-0.059673],[109.301336,-0.05696],[109.300194,-0.054962],[109.298769,-0.053428],[109.294,-0.048292],[109.286767,-0.040503],[109.286142,-0.03983],[109.286142,-0.03983],[109.28615,-0.039838],[109.288269,-0.037843],[109.28893,-0.037183],[109.289921,-0.036156],[109.2902,-0.035871],[109.291322,-0.034713],[109.291815,-0.034203],[109.292142,-0.033971],[109.292528,-0.033615],[109.292884,-0.033324],[109.293181,-0.03298],[109.293305,-0.032861],[109.293454,-0.032748],[109.293626,-0.032606],[109.293774,-0.032547],[109.293887,-0.032469],[109.294053,-0.032262],[109.294243,-0.032137],[109.294505,-0.031935],[109.294754,-0.031715],[109.294855,-0.031638],[109.295015,-0.031508],[109.295324,-0.0313],[109.295828,-0.03092],[109.296107,-0.030635],[109.29625,-0.030534],[109.296398,-0.030469],[109.296493,-0.030427],[109.296642,-0.030326],[109.296814,-0.03019],[109.296891,-0.030077],[109.297039,-0.03],[109.2972,-0.029928],[109.297324,-0.029828],[109.297402,-0.029774],[109.297687,-0.029608],[109.297877,-0.029465],[109.29809,-0.029317],[109.29828,-0.02918],[109.298399,-0.029097],[109.29847,-0.02902],[109.298636,-0.028973],[109.29885,-0.028771],[109.298999,-0.028646],[109.299183,-0.028498],[109.299331,-0.028403],[109.29945,-0.028379],[109.299925,-0.02807],[109.300774,-0.0275],[109.301065,-0.027352],[109.301284,-0.027257],[109.301593,-0.027091],[109.301854,-0.026913],[109.302377,-0.02664],[109.30341,-0.026105],[109.303689,-0.025998],[109.306235,-0.024841],[109.307423,-0.024348],[109.307898,-0.024152],[109.308052,-0.024075],[109.308699,-0.023796],[109.309732,-0.023398],[109.311187,-0.022846],[109.31184,-0.022603],[109.312053,-0.02252],[109.312404,-0.022383],[109.31273,-0.0223],[109.312968,-0.022246],[109.313199,-0.022146],[109.31349,-0.02208],[109.314291,-0.021855],[109.315348,-0.021558],[109.315912,-0.021398],[109.316779,-0.021178],[109.317129,-0.021101],[109.317735,-0.020946],[109.318245,-0.020828],[109.319634,-0.020566],[109.32081,-0.020329],[109.321124,-0.020258],[109.322187,-0.02008],[109.324603,-0.019611],[109.325767,-0.019427],[109.326283,-0.019343],[109.326836,-0.019225],[109.328593,-0.018928],[109.329709,-0.018738],[109.33051,-0.018595],[109.330884,-0.018524],[109.33108,-0.018471],[109.331252,-0.018399],[109.331549,-0.018305],[109.332012,-0.018126],[109.332404,-0.017936],[109.332731,-0.017675],[109.33295,-0.017307],[109.333357,-0.016717],[109.333366,-0.016704],[109.333412,-0.016687],[109.333574,-0.016509],[109.333576,-0.016512],[109.333598,-0.0165],[109.334229,-0.01701],[109.335077,-0.017705],[109.335457,-0.018022],[109.335787,-0.018299],[109.336237,-0.01867],[109.336628,-0.018994],[109.336982,-0.019284],[109.337384,-0.019613],[109.337836,-0.019971],[109.33778,-0.020035],[109.337773,-0.020059],[109.337359,-0.019724],[109.337238,-0.019871],[109.337836,-0.020337],[109.33791,-0.020222],[109.337942,-0.02024],[109.337975,-0.020196],[109.338006,-0.020222],[109.337973,-0.020274],[109.338304,-0.020566],[109.338352,-0.020531],[109.338386,-0.020462],[109.338178,-0.020303],[109.338212,-0.020263],[109.338224,-0.020279],[109.338624,-0.020588],[109.338565,-0.020623],[109.338456,-0.020526],[109.338443,-0.020512],[109.33833,-0.020626],[109.338458,-0.020739],[109.338498,-0.020737],[109.338522,-0.020709],[109.338601,-0.020781],[109.338615,-0.020767],[109.338649,-0.020735],[109.338674,-0.020745],[109.338721,-0.020717],[109.339013,-0.020949],[109.339009,-0.02097],[109.339004,-0.020984],[109.339052,-0.02102],[109.339003,-0.021108],[109.339184,-0.021288],[109.339193,-0.021354],[109.339442,-0.021578],[109.339515,-0.02158],[109.339677,-0.021717],[109.3396,-0.02179],[109.339582,-0.021835],[109.339952,-0.022154],[109.33998,-0.022118],[109.340031,-0.022162],[109.340236,-0.021904],[109.340317,-0.021897],[109.340502,-0.021693],[109.340513,-0.021671],[109.340493,-0.021652],[109.340528,-0.021605],[109.340632,-0.02167],[109.340661,-0.021709],[109.340605,-0.021764],[109.340585,-0.021755],[109.340398,-0.022001],[109.340418,-0.022012],[109.340449,-0.022029],[109.340356,-0.022141],[109.340411,-0.022172],[109.340361,-0.022225],[109.340289,-0.022177],[109.340254,-0.022224],[109.340235,-0.022262],[109.340415,-0.022294],[109.340417,-0.022297],[109.340476,-0.022211],[109.340616,-0.022286],[109.340642,-0.02226],[109.340801,-0.022101],[109.34079,-0.022078],[109.340789,-0.022055],[109.340796,-0.02204],[109.340812,-0.022027],[109.340836,-0.022021],[109.340868,-0.022027],[109.340884,-0.022033],[109.341004,-0.022073],[109.341013,-0.022118],[109.341118,-0.022187],[109.341271,-0.022291],[109.341603,-0.022672],[109.341611,-0.022728],[109.341626,-0.022764],[109.341653,-0.022767],[109.341712,-0.022812],[109.341769,-0.022794],[109.341796,-0.022821],[109.341895,-0.02274],[109.341877,-0.022713],[109.341901,-0.022679],[109.341937,-0.022704],[109.341964,-0.022691],[109.342003,-0.02274],[109.342087,-0.022701],[109.342309,-0.022903],[109.342354,-0.022855],[109.342389,-0.022885],[109.342517,-0.023002],[109.342636,-0.023114],[109.342918,-0.023325],[109.342894,-0.023367],[109.34287,-0.023407],[109.34287,-0.023476],[109.342846,-0.023501],[109.342987,-0.023636],[109.343053,-0.023594],[109.343158,-0.023724],[109.343222,-0.023699],[109.343215,-0.023754],[109.343482,-0.024056],[109.343431,-0.024092],[109.343422,-0.024126],[109.343434,-0.024168],[109.343599,-0.02437],[109.343665,-0.024304],[109.343683,-0.024367],[109.343632,-0.024409],[109.343653,-0.02444],[109.343686,-0.02443],[109.343725,-0.024479],[109.343779,-0.024473],[109.343803,-0.024467],[109.344106,-0.024898],[109.34422,-0.025071],[109.344288,-0.025025],[109.344333,-0.024995],[109.344546,-0.025246],[109.344452,-0.025308],[109.344336,-0.025384],[109.344438,-0.025575],[109.344462,-0.025557],[109.344531,-0.025647],[109.344531,-0.025674],[109.344516,-0.025702],[109.344507,-0.025714],[109.344504,-0.025735],[109.344627,-0.025937],[109.344678,-0.025901],[109.344738,-0.025985],[109.344777,-0.026092]]]},"type":"Feature","id":4,"properties":{"jml_pnddk":110904,"Ket":"Pontianak Kota","Id":0,"Plan_Area":113026328.1}},{"geometry":{"type":"Polygon","coordinates":[[[109.323893,-0.080525],[109.323938,-0.080432],[109.324635,-0.079408],[109.327746,-0.074815],[109.330405,-0.070784],[109.332436,-0.068188],[109.335019,-0.065132],[109.33823,-0.06131],[109.341772,-0.057301],[109.345489,-0.053023],[109.347276,-0.051005],[109.348581,-0.048964],[109.349543,-0.047512],[109.350875,-0.046066],[109.351933,-0.044875],[109.351759,-0.044535],[109.353347,-0.043105],[109.354252,-0.042078],[109.354314,-0.042148],[109.354347,-0.042185],[109.354524,-0.042381],[109.354682,-0.042567],[109.354835,-0.042753],[109.355005,-0.042963],[109.355188,-0.043159],[109.355374,-0.043342],[109.355553,-0.043533],[109.355737,-0.04374],[109.355937,-0.043927],[109.356125,-0.044105],[109.356297,-0.044281],[109.356469,-0.044467],[109.356658,-0.044643],[109.356849,-0.044812],[109.357024,-0.044998],[109.357191,-0.045195],[109.357368,-0.045363],[109.35755,-0.045502],[109.357713,-0.045638],[109.35785,-0.045767],[109.357938,-0.045843],[109.357966,-0.045866],[109.35797,-0.045873],[109.357977,-0.045879],[109.358005,-0.045912],[109.358085,-0.045997],[109.358209,-0.046108],[109.358341,-0.046216],[109.358492,-0.046332],[109.358651,-0.04647],[109.358809,-0.046617],[109.358958,-0.046758],[109.35909,-0.0469],[109.359219,-0.04703],[109.359357,-0.04716],[109.359483,-0.047274],[109.359546,-0.04733],[109.359672,-0.047436],[109.359737,-0.047489],[109.3598,-0.047548],[109.359858,-0.047608],[109.359915,-0.047673],[109.359966,-0.047742],[109.360016,-0.047807],[109.360085,-0.04787],[109.360177,-0.047939],[109.360267,-0.048019],[109.36035,-0.0481],[109.360428,-0.048177],[109.360504,-0.048256],[109.360581,-0.048337],[109.36066,-0.048418],[109.360729,-0.048491],[109.360777,-0.048549],[109.360797,-0.04858],[109.360803,-0.048596],[109.360817,-0.048607],[109.360865,-0.048643],[109.360962,-0.048736],[109.361108,-0.048864],[109.361251,-0.049013],[109.361394,-0.049164],[109.361538,-0.049316],[109.361684,-0.049468],[109.361832,-0.049633],[109.361979,-0.049819],[109.362121,-0.049994],[109.362247,-0.050145],[109.362373,-0.050281],[109.362506,-0.050414],[109.362634,-0.050555],[109.362667,-0.05059],[109.36276,-0.050692],[109.362877,-0.050811],[109.362935,-0.050858],[109.362985,-0.050965],[109.363013,-0.051013],[109.362809,-0.051191],[109.362849,-0.051267],[109.362949,-0.051239],[109.363089,-0.051118],[109.363129,-0.051174],[109.363137,-0.051263],[109.363157,-0.051307],[109.363197,-0.051279],[109.363253,-0.051299],[109.363293,-0.051344],[109.363384,-0.051281],[109.363393,-0.051293],[109.363471,-0.05141],[109.363504,-0.051462],[109.363445,-0.051504],[109.363457,-0.051526],[109.36325,-0.051689],[109.363292,-0.051779],[109.363331,-0.051746],[109.363382,-0.051794],[109.363325,-0.051855],[109.363373,-0.05193],[109.363505,-0.051855],[109.363547,-0.051897],[109.363487,-0.051951],[109.363502,-0.052],[109.363454,-0.052027],[109.36349,-0.052081],[109.363472,-0.052108],[109.36349,-0.052132],[109.363523,-0.052154],[109.363337,-0.052311],[109.363376,-0.052357],[109.363589,-0.052166],[109.363604,-0.052135],[109.363667,-0.052066],[109.363721,-0.051981],[109.363778,-0.051942],[109.363763,-0.051918],[109.363791,-0.051891],[109.363823,-0.051861],[109.363997,-0.05209],[109.363938,-0.052137],[109.363946,-0.052152],[109.364011,-0.052275],[109.364063,-0.052353],[109.363904,-0.052455],[109.363904,-0.052531],[109.363919,-0.052561],[109.363979,-0.052585],[109.364003,-0.0526],[109.364075,-0.052576],[109.364126,-0.052576],[109.364141,-0.05257],[109.364189,-0.052655],[109.364228,-0.052633],[109.364494,-0.053096],[109.364563,-0.053213],[109.364426,-0.053289],[109.364453,-0.053355],[109.364506,-0.053343],[109.364536,-0.053382],[109.364521,-0.0534],[109.364533,-0.053431],[109.364629,-0.053388],[109.364647,-0.053416],[109.364575,-0.053494],[109.364677,-0.053675],[109.364824,-0.053615],[109.364959,-0.05376],[109.365,-0.053829],[109.365104,-0.053987],[109.365202,-0.054172],[109.365283,-0.054328],[109.365199,-0.054422],[109.365315,-0.054527],[109.365367,-0.054543],[109.365427,-0.054616],[109.365287,-0.054712],[109.365323,-0.054773],[109.365359,-0.054805],[109.365407,-0.054869],[109.365439,-0.054902],[109.365467,-0.054922],[109.365451,-0.054954],[109.365403,-0.054982],[109.365499,-0.055143],[109.365535,-0.055171],[109.365571,-0.055207],[109.365603,-0.055268],[109.365599,-0.0553],[109.365622,-0.055364],[109.365786,-0.055292],[109.365794,-0.055316],[109.365895,-0.055262],[109.36595,-0.055232],[109.366051,-0.055434],[109.366182,-0.055699],[109.366238,-0.055688],[109.366398,-0.055988],[109.366346,-0.055992],[109.36641,-0.056117],[109.36651,-0.056226],[109.366546,-0.05627],[109.36657,-0.056327],[109.36637,-0.056476],[109.366394,-0.056512],[109.366614,-0.056395],[109.366729,-0.056547],[109.366782,-0.056616],[109.366822,-0.056596],[109.366874,-0.056661],[109.366761,-0.056752],[109.366773,-0.056796],[109.366836,-0.056902],[109.366982,-0.057124],[109.366898,-0.057176],[109.36691,-0.057232],[109.366958,-0.057252],[109.366986,-0.057265],[109.366998,-0.057289],[109.367082,-0.057244],[109.367066,-0.057184],[109.36709,-0.057172],[109.36717,-0.057277],[109.367142,-0.057297],[109.36713,-0.057277],[109.366966,-0.057377],[109.366958,-0.057426],[109.366962,-0.05747],[109.366998,-0.057498],[109.367086,-0.057538],[109.367162,-0.05755],[109.367242,-0.057534],[109.367282,-0.057514],[109.367398,-0.057639],[109.367434,-0.057659],[109.367518,-0.057675],[109.36757,-0.057699],[109.367606,-0.057748],[109.367618,-0.057792],[109.367618,-0.057864],[109.367614,-0.057925],[109.36759,-0.057997],[109.36761,-0.05805],[109.367634,-0.058134],[109.36765,-0.058211],[109.367666,-0.058279],[109.367694,-0.058315],[109.367742,-0.058355],[109.367782,-0.058388],[109.367794,-0.058436],[109.367778,-0.058613],[109.36786,-0.058676],[109.36598,-0.060267],[109.362839,-0.067027],[109.362839,-0.067027],[109.362837,-0.067032],[109.36283,-0.067045],[109.362386,-0.067916],[109.361673,-0.069259],[109.361291,-0.069919],[109.36065,-0.070896],[109.360418,-0.071247],[109.360416,-0.071248],[109.360415,-0.071253],[109.359178,-0.073126],[109.359172,-0.073127],[109.358292,-0.07459],[109.355214,-0.079813],[109.351732,-0.084869],[109.348389,-0.090018],[109.34701,-0.092236],[109.346065,-0.093959],[109.342746,-0.09833],[109.33577,-0.091735],[109.323893,-0.080525]]]},"type":"Feature","id":5,"properties":{"jml_pnddk":149693,"Ket":"Pontianak Tenggara","Id":0,"Plan_Area":113026328.1}}]};
function getColor(d) {
return d > 150000 ? '#8B0000' :
d > 120000 ? '#B22222' :
d > 100000 ? '#CD3333' :
d > 80000 ? '#D96C2E' :
d > 60000 ? '#E39060' :
'#EDB899';
}
const GRADES = [0, 60000, 80000, 100000, 120000, 150000];
const GRADE_LABEL = ['< 60.000','60.00080.000','80.000100.000','100.000120.000','120.000150.000','> 150.000'];
// Map
const map = L.map('map', { zoomControl: false })
.setView([-0.02, 109.34], 13);
L.control.zoom({ position: 'bottomleft' }).addTo(map);
L.tileLayer('https://{s}.basemaps.cartocdn.com/light_all/{z}/{x}/{y}{r}.png', {
attribution: '&copy; <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> &copy; <a href="https://carto.com/">CARTO</a>',
maxZoom: 19
}).addTo(map);
function featureStyle(feature) {
return {
weight: 1.5,
opacity: 1,
color: 'rgba(255,255,255,0.7)',
dashArray: '',
fillOpacity: 0.82,
fillColor: getColor(feature.properties.jml_pnddk)
};
}
let geojsonLayer;
function highlightFeature(e) {
const layer = e.target;
layer.setStyle({ weight: 2.5, color: '#1A1A18', fillOpacity: 0.95 });
layer.bringToFront();
const p = layer.feature.properties;
document.getElementById('hp-name').textContent = p.Ket;
document.getElementById('hp-pop').textContent = p.jml_pnddk.toLocaleString('id-ID');
document.getElementById('hover-panel').classList.add('visible');
document.querySelectorAll('.kec-item').forEach(el => el.classList.remove('active'));
const match = document.querySelector('.kec-item[data-name="' + p.Ket + '"]');
if (match) match.classList.add('active');
}
function resetHighlight(e) {
geojsonLayer.resetStyle(e.target);
document.getElementById('hover-panel').classList.remove('visible');
document.querySelectorAll('.kec-item').forEach(el => el.classList.remove('active'));
}
function onEachFeature(feature, layer) {
layer.on({
mouseover: highlightFeature,
mouseout: resetHighlight,
click: function(e) { map.fitBounds(e.target.getBounds(), { padding: [60,60] }); }
});
layer.bindTooltip(feature.properties.Ket || 'Kecamatan', {
permanent: false, direction: 'center', opacity: 1
});
}
geojsonLayer = L.geoJson(GEOJSON_DATA, {
style: featureStyle,
onEachFeature: onEachFeature
}).addTo(map);
map.fitBounds(geojsonLayer.getBounds(), { padding: [40,40] });
// Sidebar
const features = GEOJSON_DATA.features.slice().sort(
(a,b) => b.properties.jml_pnddk - a.properties.jml_pnddk
);
const maxPop = features[0].properties.jml_pnddk;
const totalPop = features.reduce((s,f) => s + f.properties.jml_pnddk, 0);
document.getElementById('total-pop').textContent = totalPop.toLocaleString('id-ID');
const listEl = document.getElementById('kec-list');
features.forEach(function(feat, idx) {
const p = feat.properties;
const color = getColor(p.jml_pnddk);
const barPct = (p.jml_pnddk / maxPop * 100).toFixed(1);
const rank = String(idx+1).padStart(2,'0');
const item = document.createElement('div');
item.className = 'kec-item';
item.dataset.name = p.Ket;
item.innerHTML = [
'<div class="kec-rank">',
'<span class="kec-dot" style="background:' + color + '"></span>',
rank,
'</div>',
'<div class="kec-name">' + p.Ket + '</div>',
'<div class="kec-pop">Penduduk: <strong>' + p.jml_pnddk.toLocaleString('id-ID') + ' jiwa</strong></div>',
'<div class="kec-bar-wrap"><div class="kec-bar" style="width:' + barPct + '%;background:' + color + '"></div></div>'
].join('');
item.addEventListener('click', function() {
geojsonLayer.eachLayer(function(layer) {
if (layer.feature && layer.feature.properties.Ket === p.Ket) {
map.fitBounds(layer.getBounds(), { padding:[80,80] });
highlightFeature({ target: layer });
setTimeout(function() { geojsonLayer.resetStyle(layer); }, 2000);
}
});
});
listEl.appendChild(item);
});
// Legend
var legendEl = document.getElementById('map-legend');
var lgHTML = '<div class="legend-title">Jumlah Penduduk (jiwa)</div>';
for (var i = GRADES.length - 1; i >= 0; i--) {
lgHTML += '<div class="legend-row">'
+ '<div class="legend-swatch" style="background:' + getColor(GRADES[i]+1) + '"></div>'
+ '<div class="legend-label">' + GRADE_LABEL[i] + '</div>'
+ '</div>';
}
legendEl.innerHTML = lgHTML;
</script>
</body>
</html>