This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new ce1d18e534 feat(country-map): Adds Philippines regional map and
updates/cleans existing Philippines provincial map (#27933)
ce1d18e534 is described below
commit ce1d18e5341b37769e2f73ec0e37c9c5782c5855
Author: jdrui <[email protected]>
AuthorDate: Fri Apr 26 03:25:49 2024 +0800
feat(country-map): Adds Philippines regional map and updates/cleans
existing Philippines provincial map (#27933)
---
.../scripts/Country Map GeoJSON Generator.ipynb | 85 +++++++++-
.../src/countries.ts | 2 +
.../src/countries/philippines.geojson | 183 +++++++++------------
.../src/countries/philippines_regions.geojson | 23 +++
4 files changed, 181 insertions(+), 112 deletions(-)
diff --git
a/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country Map
GeoJSON Generator.ipynb
b/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country Map
GeoJSON Generator.ipynb
index 28e9142552..543b11dbfc 100644
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country
Map GeoJSON Generator.ipynb
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/scripts/Country
Map GeoJSON Generator.ipynb
@@ -283,6 +283,7 @@
" 'paraguay',\n",
" 'peru',\n",
" 'philippines',\n",
+ " 'philippines_regions', # this one is derived from philippines - see
below\n",
" 'portugal',\n",
" 'poland',\n",
" 'puerto rico',\n",
@@ -1111,9 +1112,87 @@
},
{
"cell_type": "markdown",
- "metadata": {
- "id": "Fb58eGlIt1LW"
- },
+ "metadata": {},
+ "source": [
+ "### Philippines\n",
+ "- Merges highly urbanized cities (HUCs) into their respective geographic
provinces\n",
+ "- Updates provinces:\n",
+ " - Forms Maguindanao del Norte and Maguindanao del Sur from the former
Maguindanao province\n",
+ " - Splits off Davao Occidental from Davao del Sur\n",
+ " - Renames Compostella Valley to Davao de Oro"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "ph_url =
\"https://raw.githubusercontent.com/jdruii/phgeojson/main/philippines.geojson\"\n",
+ "philippines_copy = gpd.read_file(ph_url)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "philippines_copy = philippines_copy.rename(columns={'NAME_1':
'name','ISO': 'iso_3166_2'})\n",
+ "philippines_copy.plot()"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "#### Philippines Regions\n",
+ "- Adds regional map\n",
+ " - Fixes outdated names"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "philippines_regions = df[df.admin ==
'Philippines'][['geometry','region_cod','region']]"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "philippines_regions = philippines_regions.dissolve(by=['region_cod',
'region']).reset_index()\n",
+ "philippines_regions = philippines_regions.rename(columns={'region':
'name', 'region_cod': 'iso_3166_2'})"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "philippines_regions['name'].replace({'Dinagat Islands (Region XIII)':
'Caraga Administrative Region (Region XIII)', \n",
+ " 'Autonomous Region in Muslim
Mindanao (ARMM)': 'Bangsamoro Autonomous Region in Muslim Mindanao (BARMM)'},
\n",
+ " inplace=True)"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": null,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "philippines_regions.plot(figsize = (10, 7), edgecolor='black',
column='iso_3166_2', legend=False, cmap='tab20')"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
"source": [
"## Output GeoJSON"
]
diff --git
a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries.ts
b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries.ts
index 9957e291c0..ed1af3ac3e 100755
--- a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries.ts
+++ b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries.ts
@@ -80,6 +80,7 @@ import papua_new_guinea from
'./countries/papua_new_guinea.geojson';
import paraguay from './countries/paraguay.geojson';
import peru from './countries/peru.geojson';
import philippines from './countries/philippines.geojson';
+import philippines_regions from './countries/philippines_regions.geojson';
import portugal from './countries/portugal.geojson';
import poland from './countries/poland.geojson';
import puerto_rico from './countries/puerto_rico.geojson';
@@ -178,6 +179,7 @@ export const countries = {
paraguay,
peru,
philippines,
+ philippines_regions,
portugal,
poland,
puerto_rico,
diff --git
a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/philippines.geojson
b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/philippines.geojson
index e8962ffc14..69a51c8aba 100644
---
a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/philippines.geojson
+++
b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/philippines.geojson
@@ -2,123 +2,88 @@
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name":
"urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
+{ "type": "Feature", "properties": { "ISO": "PH-MNL", "NAME_1": "Metro Manila"
}, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.113884, 14.759725
], [ 121.126953, 14.736251 ], [ 121.103783, 14.67588 ], [ 121.131721, 14.659401
], [ 121.105453, 14.63604 ], [ 121.107857, 14.581321 ], [ 121.093407, 14.568171
], [ 121.105339, 14.53049 ], [ 121.072617, 14.51324 ], [ 121.050667, 14.449461
], [ 121.056808, 14.380731 ], [ 121.012833, 14.350261 ], [ 121.007088,
14.390551 ], [ 120.97249 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-CAV", "NAME_1": "Cavite" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.969597, 14.475469 ],
[ 120.972496, 14.439721 ], [ 121.007088, 14.390551 ], [ 121.008873, 14.31166 ],
[ 121.049507, 14.32895 ], [ 121.068817, 14.3189 ], [ 121.035622, 14.24799 ], [
121.051857, 14.23787 ], [ 121.050743, 14.14513 ], [ 120.942909, 14.08766 ], [
120.886742, 14.08673 ], [ 120.84417, 14.06133 ], [ 120.841293, 14.08517 ], [
120.760193, 14.1391 ], [...]
+{ "type": "Feature", "properties": { "ISO": "PH-LAG", "NAME_1": "Laguna" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.261299, 13.96465 ], [
121.260727, 13.99158 ], [ 121.242462, 13.98857 ], [ 121.216042, 14.02767 ], [
121.205307, 14.11083 ], [ 121.186432, 14.13695 ], [ 121.107567, 14.15682 ], [
121.042717, 14.15436 ], [ 121.051857, 14.23787 ], [ 121.035622, 14.24799 ], [
121.068817, 14.3189 ], [ 121.049507, 14.32895 ], [ 121.008873, 14.31166 ], [
121.012833, 14.350261 ], [...]
+{ "type": "Feature", "properties": { "ISO": "PH-BTG", "NAME_1": "Batangas" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.085281,
13.57333 ], [ 121.099442, 13.53417 ], [ 121.080833, 13.52583 ], [ 121.053337,
13.55444 ], [ 121.085281, 13.57333 ] ] ], [ [ [ 120.830002, 13.68861 ], [
120.885002, 13.655 ], [ 120.934448, 13.65528 ], [ 120.946877, 13.63854 ], [
120.901947, 13.62472 ], [ 120.841393, 13.65306 ], [ 120.830002, 13.68861 ] ] ],
[ [ [ 120.621246, 14.22126 ], [ 1 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-RIZ", "NAME_1": "Rizal" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.248459,
14.30144 ], [ 121.229553, 14.31394 ], [ 121.217697, 14.40055 ], [ 121.234253,
14.39956 ], [ 121.248459, 14.30144 ] ] ], [ [ [ 121.469803, 14.57583 ], [
121.418167, 14.55817 ], [ 121.375458, 14.51858 ], [ 121.359833, 14.45732 ], [
121.367233, 14.37197 ], [ 121.38842, 14.34514 ], [ 121.309242, 14.29061 ], [
121.305763, 14.32849 ], [ 121.339127, [...]
+{ "type": "Feature", "properties": { "ISO": "PH-QUE", "NAME_1": "Quezon" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.756393,
13.94333 ], [ 121.785553, 13.9375 ], [ 121.780281, 13.90778 ], [ 121.754448,
13.88333 ], [ 121.739998, 13.89333 ], [ 121.756393, 13.94333 ] ] ], [ [ [
121.965279, 14.20285 ], [ 122.129753, 14.08593 ], [ 122.190872, 14.008234 ], [
122.168549, 14.00033 ], [ 121.986168, 14.11091 ], [ 121.91246, 14.19388 ], [
121.928421, 14.23558 ], [ 121.965279 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-BUL", "NAME_1": "Bulacan" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.311745, 15.199413 ],
[ 121.345367, 14.89227 ], [ 121.184937, 14.81683 ], [ 121.113884, 14.759725 ],
[ 121.045029, 14.776991 ], [ 121.04287, 14.75802 ], [ 120.991058, 14.732831 ],
[ 120.992958, 14.714911 ], [ 120.948387, 14.73587 ], [ 120.934349, 14.72601 ],
[ 120.954819, 14.709101 ], [ 120.916946, 14.691933 ], [ 120.817223, 14.76 ], [
120.663162, 14.77378 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-AUR", "NAME_1": "Aurora" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.419487, 15.21522 ], [
121.391724, 15.16429 ], [ 121.398201, 15.12599 ], [ 121.34169, 15.04377 ], [
121.341881, 14.99731 ], [ 121.311745, 15.199413 ], [ 121.376213, 15.48357 ], [
121.281723, 15.77052 ], [ 121.835289, 16.2279 ], [ 122.064987, 16.487909 ], [
122.13166, 16.530121 ], [ 122.272217, 16.52355 ], [ 122.250557, 16.516109 ], [
122.230827, 16.46472 ], [...]
+{ "type": "Feature", "properties": { "ISO": "PH-PAM", "NAME_1": "Pampanga" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.771873, 15.26762 ], [
120.778511, 15.21811 ], [ 120.851067, 15.20328 ], [ 120.874939, 15.16823 ], [
120.900848, 15.20811 ], [ 120.955437, 15.21811 ], [ 120.950447, 15.14093 ], [
120.987068, 15.10212 ], [ 120.970688, 15.04578 ], [ 120.938721, 15.03574 ], [
120.934753, 15.00669 ], [ 120.89782, 15.00362 ], [ 120.899872, 14.97672 ], [
120.799263, 14.91721 ], [...]
+{ "type": "Feature", "properties": { "ISO": "PH-TAR", "NAME_1": "Tarlac" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.771873, 15.26762 ], [
120.600143, 15.26511 ], [ 120.370827, 15.16776 ], [ 120.285408, 15.28928 ], [
120.163239, 15.36055 ], [ 120.185997, 15.50733 ], [ 120.222237, 15.57592 ], [
120.26355, 15.5993 ], [ 120.253906, 15.61848 ], [ 120.307289, 15.64726 ], [
120.361237, 15.71021 ], [ 120.375954, 15.75057 ], [ 120.402779, 15.76541 ], [
120.481071, 15.72984 ], [ [...]
+{ "type": "Feature", "properties": { "ISO": "PH-ZMB", "NAME_1": "Zambales" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 119.924377, 15.80664 ], [
119.992012, 15.7944 ], [ 120.028801, 15.84526 ], [ 120.085403, 15.81093 ], [
120.129539, 15.82626 ], [ 120.158203, 15.81723 ], [ 120.181602, 15.7357 ], [
120.26355, 15.5993 ], [ 120.222237, 15.57592 ], [ 120.185997, 15.50733 ], [
120.163239, 15.36055 ], [ 120.285408, 15.28928 ], [ 120.337486, 15.23234 ], [
120.370827, 15.16776 ], [ [...]
+{ "type": "Feature", "properties": { "ISO": "PH-NUE", "NAME_1": "Nueva Ecija"
}, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.281723, 15.77052
], [ 121.376213, 15.48357 ], [ 121.311745, 15.199413 ], [ 121.202141, 15.22251
], [ 121.14386, 15.27246 ], [ 121.021202, 15.25235 ], [ 120.980881, 15.22197 ],
[ 120.900848, 15.20811 ], [ 120.874939, 15.16823 ], [ 120.851067, 15.20328 ], [
120.778511, 15.21811 ], [ 120.78196, 15.30661 ], [ 120.744911, 15.32585 ], [
120.736763, 15.35308 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-BAN", "NAME_1": "Bataan" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.609329,
14.39389 ], [ 120.579376, 14.37243 ], [ 120.573837, 14.39295 ], [ 120.609329,
14.39389 ] ] ], [ [ [ 120.577766, 14.83112 ], [ 120.546944, 14.78722 ], [
120.548058, 14.71861 ], [ 120.581108, 14.65306 ], [ 120.611366, 14.50873 ], [
120.601883, 14.46154 ], [ 120.562767, 14.42306 ], [ 120.49028, 14.43528 ], [
120.485558, 14.41444 ], [ 120.463333 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-CAG", "NAME_1": "Cagayan" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.134163,
18.58222 ], [ 122.153893, 18.576389 ], [ 122.154167, 18.522221 ], [ 122.116943,
18.510559 ], [ 122.112221, 18.56278 ], [ 122.134163, 18.58222 ] ] ], [ [ [
122.19046, 17.548149 ], [ 121.851463, 17.534969 ], [ 121.821053, 17.518061 ], [
121.656052, 17.508221 ], [ 121.479584, 17.672581 ], [ 121.437851, 17.670799 ],
[ 121.43158, 17.73558 ], [ 1 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-ISA", "NAME_1": "Isabela" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 122.272217, 16.52355 ], [
122.078644, 16.529039 ], [ 121.75563, 16.38982 ], [ 121.557579, 16.630051 ], [
121.409088, 16.641529 ], [ 121.400497, 16.687441 ], [ 121.335007, 16.747271 ],
[ 121.336563, 16.77507 ], [ 121.40799, 16.80545 ], [ 121.435211, 16.838961 ], [
121.509193, 16.83819 ], [ 121.546913, 16.85537 ], [ 121.587242, 16.901461 ], [
121.554337, 17.071 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-NUV", "NAME_1": "Nueva
Vizcaya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.409088,
16.641529 ], [ 121.379471, 16.45109 ], [ 121.4515, 16.42795 ], [ 121.437973,
16.338921 ], [ 121.293709, 16.280861 ], [ 121.322113, 16.03941 ], [ 121.467644,
15.91659 ], [ 121.281723, 15.77052 ], [ 121.198021, 15.90807 ], [ 121.175392,
16.090759 ], [ 121.026466, 16.126089 ], [ 120.879951, 16.105921 ], [
120.841385, 16.171499 ], [ 120.768867, [...]
+{ "type": "Feature", "properties": { "ISO": "PH-QUI", "NAME_1": "Quirino" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 122.13166, 16.530121 ], [
122.064987, 16.487909 ], [ 121.835289, 16.2279 ], [ 121.467644, 15.91659 ], [
121.322113, 16.03941 ], [ 121.293709, 16.280861 ], [ 121.437973, 16.338921 ], [
121.4515, 16.42795 ], [ 121.379471, 16.45109 ], [ 121.409088, 16.641529 ], [
121.557579, 16.630051 ], [ 121.75563, 16.38982 ], [ 122.078644, 16.529039 ], [
122.13166, 16.530121 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-ILN", "NAME_1": "Ilocos Norte"
}, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.972832, 18.582279
], [ 120.942436, 18.364531 ], [ 120.958931, 18.198669 ], [ 120.973106, 18.17907
], [ 120.936478, 18.099991 ], [ 120.940468, 17.997141 ], [ 120.909737,
17.950581 ], [ 120.825569, 17.95528 ], [ 120.783218, 17.911699 ], [ 120.727547,
17.892891 ], [ 120.69017, 17.8349 ], [ 120.581833, 17.79925 ], [ 120.534912,
17.703739 ], [ 120.515991, [...]
+{ "type": "Feature", "properties": { "ISO": "PH-ILS", "NAME_1": "Ilocos Sur"
}, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.534912, 17.703739
], [ 120.50248, 17.639681 ], [ 120.467651, 17.49572 ], [ 120.484833, 17.480961
], [ 120.516548, 17.499519 ], [ 120.585564, 17.47625 ], [ 120.578743, 17.43054
], [ 120.538841, 17.357611 ], [ 120.557953, 17.307779 ], [ 120.607201, 17.31217
], [ 120.682648, 17.25573 ], [ 120.677673, 17.208839 ], [ 120.686203, 17.166651
], [ 120.702171, 1 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-LUN", "NAME_1": "La Union" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.580437, 16.659241 ],
[ 120.541893, 16.60751 ], [ 120.558807, 16.59696 ], [ 120.469841, 16.49964 ], [
120.512497, 16.237009 ], [ 120.499458, 16.211439 ], [ 120.415421, 16.208349 ],
[ 120.400818, 16.24963 ], [ 120.347542, 16.28203 ], [ 120.339577, 16.308861 ],
[ 120.344147, 16.348709 ], [ 120.323914, 16.39633 ], [ 120.329407, 16.46911 ],
[ 120.303612, 16.5 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-PAN", "NAME_1": "Pangasinan"
}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.989723,
16.34889 ], [ 120.012001, 16.314211 ], [ 119.99836, 16.27368 ], [ 120.014671,
16.233089 ], [ 119.993057, 16.22179 ], [ 119.946114, 16.28639 ], [ 119.918488,
16.292999 ], [ 119.942947, 16.330379 ], [ 119.989723, 16.34889 ] ] ], [ [ [
119.924377, 15.80664 ], [ 119.888268, 15.80674 ], [ 119.912712, 15.83555 ], [
119.90889, 15.85778 ], [ 119 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-BEN", "NAME_1": "Benguet" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.879089, 16.82756 ], [
120.899178, 16.770531 ], [ 120.905243, 16.595869 ], [ 120.883774, 16.50596 ], [
120.891342, 16.433941 ], [ 120.845467, 16.32091 ], [ 120.805893, 16.323071 ], [
120.75901, 16.24295 ], [ 120.768867, 16.20137 ], [ 120.655342, 16.18766 ], [
120.512497, 16.237009 ], [ 120.469841, 16.49964 ], [ 120.558807, 16.59696 ], [
120.541893, 16.6075 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-IFU", "NAME_1": "Ifugao" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.554337, 17.071091 ],
[ 121.587242, 16.901461 ], [ 121.546913, 16.85537 ], [ 121.509193, 16.83819 ],
[ 121.435211, 16.838961 ], [ 121.40799, 16.80545 ], [ 121.336563, 16.77507 ], [
121.31781, 16.702391 ], [ 121.295982, 16.69516 ], [ 121.29641, 16.662189 ], [
121.278343, 16.669359 ], [ 121.252731, 16.650419 ], [ 120.905243, 16.595869 ],
[ 120.899178, 16.7705 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-MOU", "NAME_1": "Mountain
Province" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.554337,
17.071091 ], [ 121.439423, 17.07999 ], [ 121.351593, 17.0672 ], [ 121.227951,
17.00666 ], [ 121.108963, 17.01454 ], [ 120.978653, 16.99798 ], [ 120.969711,
16.97583 ], [ 120.981949, 16.9319 ], [ 120.924637, 16.83209 ], [ 120.855087,
16.838671 ], [ 120.844437, 16.87294 ], [ 120.775467, 16.934839 ], [ 120.781837,
17.113951 ], [ 120.858276, [...]
+{ "type": "Feature", "properties": { "ISO": "PH-APA", "NAME_1": "Apayao" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.442978, 17.68977 ], [
121.399002, 17.66449 ], [ 121.389397, 17.641291 ], [ 121.253799, 17.670959 ], [
121.227417, 17.624269 ], [ 121.122704, 17.68395 ], [ 121.099792, 17.824209 ], [
121.060944, 17.849171 ], [ 121.01017, 17.843719 ], [ 120.987228, 17.939619 ], [
120.927834, 17.978069 ], [ 120.940468, 17.997141 ], [ 120.936478, 18.099991 ],
[ 120.973106, 18. [...]
+{ "type": "Feature", "properties": { "ISO": "PH-KAL", "NAME_1": "Kalinga" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.656052, 17.508221 ],
[ 121.67498, 17.444799 ], [ 121.60453, 17.396601 ], [ 121.549751, 17.279181 ],
[ 121.41053, 17.30442 ], [ 121.341202, 17.28134 ], [ 121.249657, 17.186239 ], [
121.162209, 17.168171 ], [ 121.086533, 17.19331 ], [ 121.056473, 17.233789 ], [
120.914787, 17.247601 ], [ 120.997719, 17.41864 ], [ 120.998009, 17.49139 ], [
121.110191, 17.560 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-ABR", "NAME_1": "Abra" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.122704, 17.68395 ], [
121.091507, 17.66675 ], [ 121.11972, 17.58935 ], [ 121.110191, 17.560869 ], [
120.998009, 17.49139 ], [ 120.997719, 17.41864 ], [ 120.914787, 17.247601 ], [
120.915199, 17.2134 ], [ 120.891144, 17.186991 ], [ 120.798912, 17.18788 ], [
120.766373, 17.159519 ], [ 120.686203, 17.166651 ], [ 120.682648, 17.25573 ], [
120.607201, 17.31217 ], [...]
+{ "type": "Feature", "properties": { "ISO": "PH-MDR", "NAME_1": "Oriental
Mindoro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
120.893385992225731, 13.504686871505649 ], [ 120.977386915000011,
13.530340887000079 ], [ 120.979665561000047, 13.514146226000037 ], [
120.957041863000086, 13.502997137000079 ], [ 121.026866082000083,
13.421576239000046 ], [ 121.10865319100003, 13.415961005000042 ], [
121.125254754000025, 13.404771226000037 ], [ 121.121592644000089,
13.37201569200004 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-MDC", "NAME_1": "Occidental
Mindoro" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
121.247813347000033, 12.219916083000044 ], [ 121.113617384, 12.251288153000075
], [ 121.093272332000083, 12.303697007000039 ], [ 121.101084832000083,
12.330511786000045 ], [ 121.115977410000028, 12.305243231000077 ], [
121.142588738000086, 12.310044664000088 ], [ 121.121592644000089,
12.310044664000088 ], [ 121.094411655000044, 12.3454043640 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-MAD", "NAME_1": "Marinduque"
}, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.101573113000086,
13.416693427000041 ], [ 122.128916863000086, 13.386297919000071 ], [
122.120290561000047, 13.356634833000044 ], [ 122.039561394000089,
13.269598700000074 ], [ 122.049082879000025, 13.24835846600007 ], [
122.008799675000091, 13.204779364000046 ], [ 121.993174675000091,
13.201605536000045 ], [ 121.909190300000091, 13.269598700000074 ], [ [...]
+{ "type": "Feature", "properties": { "ISO": "PH-ROM", "NAME_1": "Romblon" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
122.687510613000086, 12.402818101000037 ], [ 122.670176629000025,
12.317531643000052 ], [ 122.611827019000089, 12.276516018000052 ], [
122.553477410000028, 12.317531643000052 ], [ 122.511973504000025,
12.377630927000041 ], [ 122.431895379000025, 12.409735419000071 ], [
122.423024936000047, 12.462876695000091 ], [ 122.481130405000044,
12.493353583000044 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-PLW", "NAME_1": "Palawan" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.072777,
8.07501 ], [ 117.086937, 7.90806 ], [ 117.069443, 7.89917 ], [ 117.07917,
7.88056 ], [ 117.061668, 7.84278 ], [ 117.010277, 7.80417 ], [ 116.993332,
7.81361 ], [ 116.94278, 7.93056 ], [ 116.96917, 7.96529 ], [ 116.949997,
7.99972 ], [ 117.003197, 8.05449 ], [ 117.072777, 8.07501 ] ] ], [ [ [
117.029549, 8.12992 ], [ 117.05127, 8.11738 ], [ [...]
+{ "type": "Feature", "properties": { "ISO": "PH-CAN", "NAME_1": "Camarines
Norte" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
123.059158, 13.83713 ], [ 122.941727, 13.92977 ], [ 122.792572, 14.01445 ], [
122.444153, 14.14861 ], [ 122.385246, 14.0747 ], [ 122.303139, 14.06806 ], [
122.310318, 14.1037 ], [ 122.352493, 14.12865 ], [ 122.33252, 14.1986 ], [
122.379639, 14.21389 ], [ 122.358994, 14.24862 ], [ 122.453682, 14.32846 ], [
122.538269, 14.34014 ], [ 122.59671, 1 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-CAS", "NAME_1": "Camarines
Sur" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.82106,
13.97528 ], [ 123.831306, 13.9764 ], [ 123.840759, 13.90199 ], [ 123.811989,
13.91245 ], [ 123.82106, 13.97528 ] ] ], [ [ [ 123.645599, 13.97807 ], [
123.679153, 13.94515 ], [ 123.624077, 13.9068 ], [ 123.606613, 13.91307 ], [
123.60125, 13.94926 ], [ 123.645599, 13.97807 ] ] ], [ [ [ 123.6008, 13.52329
], [ 123.553886, 13.51901 ], [ 1 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-ALB", "NAME_1": "Albay" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.129333,
13.23612 ], [ 124.203987, 13.21144 ], [ 124.219902, 13.18023 ], [ 124.185204,
13.17164 ], [ 124.100304, 13.18869 ], [ 124.083969, 13.21233 ], [ 124.129333,
13.23612 ] ] ], [ [ [ 123.976799, 13.28069 ], [ 124.054024, 13.27882 ], [
124.065857, 13.2517 ], [ 124.055458, 13.22875 ], [ 124.023018, 13.21645 ], [
123.952133, 13.23318 ], [ 123.915062, [...]
+{ "type": "Feature", "properties": { "ISO": "PH-MAS", "NAME_1": "Masbate" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.237152,
12.60118 ], [ 123.34639, 12.55083 ], [ 123.360283, 12.49389 ], [ 123.32917,
12.47111 ], [ 123.347504, 12.45639 ], [ 123.374443, 12.47389 ], [ 123.371109,
12.50528 ], [ 123.403893, 12.52306 ], [ 123.445267, 12.51695 ], [ 123.523888,
12.45583 ], [ 123.554443, 12.46278 ], [ 123.57, 12.4125 ], [ 123.59333,
12.39556 ], [ 123.586113, 12.36972 ], [...]
+{ "type": "Feature", "properties": { "ISO": "PH-SOR", "NAME_1": "Sorsogon" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 123.480423, 12.98889 ], [
123.574944, 13.03099 ], [ 123.634987, 13.01563 ], [ 123.733742, 13.02409 ], [
123.768646, 12.98583 ], [ 123.861061, 13.04161 ], [ 123.893944, 13.03757 ], [
123.939972, 13.1181 ], [ 124.065979, 13.03233 ], [ 124.076393, 13.00417 ], [
124.095284, 13.0125 ], [ 124.107002, 13.05899 ], [ 124.138229, 13.07638 ], [
124.190132, 13.06633 ], [...]
+{ "type": "Feature", "properties": { "ISO": "PH-AKL", "NAME_1": "Aklan" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.575546,
11.55167 ], [ 122.529533, 11.4911 ], [ 122.501183, 11.47823 ], [ 122.394653,
11.47912 ], [ 122.36599, 11.43249 ], [ 122.350098, 11.43992 ], [ 122.321426,
11.3716 ], [ 122.274841, 11.33235 ], [ 122.200073, 11.31268 ], [ 122.18235,
11.3429 ], [ 122.185753, 11.39381 ], [ 122.168747, 11.39834 ], [ 122.166634,
11.43724 ], [ 122.135437, 11.46901 ], [...]
+{ "type": "Feature", "properties": { "ISO": "PH-ANT", "NAME_1": "Antique" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.200073,
11.31268 ], [ 122.201714, 11.21484 ], [ 122.215553, 11.17303 ], [ 122.324432,
11.01567 ], [ 122.313164, 10.95836 ], [ 122.323723, 10.93468 ], [ 122.295128,
10.92805 ], [ 122.279327, 10.89273 ], [ 122.261307, 10.89543 ], [ 122.20089,
10.83418 ], [ 122.1754, 10.75622 ], [ 122.064468, 10.6752 ], [ 122.024467,
10.58615 ], [ 122.011124, 10.49399 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-ILI", "NAME_1": "Iloilo" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.146202,
11.15463 ], [ 123.152222, 11.14889 ], [ 123.120201, 11.09765 ], [ 123.113838,
11.14572 ], [ 123.146202, 11.15463 ] ] ], [ [ [ 123.165123, 11.31157 ], [
123.193893, 11.29083 ], [ 123.167221, 11.26806 ], [ 123.155769, 11.27722 ], [
123.165123, 11.31157 ] ] ], [ [ [ 123.259232, 11.46087 ], [ 123.275002, 11.455
], [ 123.260597, 11.42334 ], [ 123 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-CAP", "NAME_1": "Capiz" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 123.097076, 11.54448 ], [
123.048462, 11.44644 ], [ 123.049797, 11.3969 ], [ 122.935127, 11.35722 ], [
122.947128, 11.30357 ], [ 122.889977, 11.27763 ], [ 122.890129, 11.23763 ], [
122.874634, 11.241209 ], [ 122.852043, 11.19193 ], [ 122.779671, 11.18379 ], [
122.778168, 11.22662 ], [ 122.650543, 11.21239 ], [ 122.626877, 11.23574 ], [
122.577278, 11.23243 ], [ [...]
+{ "type": "Feature", "properties": { "ISO": "PH-NEC", "NAME_1": "Negros
Occidental" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
123.336014, 10.38258 ], [ 123.251633, 10.41343 ], [ 123.129143, 10.41033 ], [
123.200897, 10.26791 ], [ 123.114059, 10.16411 ], [ 123.020622, 10.01058 ], [
122.991158, 9.90987 ], [ 122.737007, 9.58903 ], [ 122.648087, 9.50012 ], [
122.613457, 9.42013 ], [ 122.535278, 9.49556 ], [ 122.517502, 9.54472 ], [
122.480553, 9.56472 ], [ 122.445, 9.61965 ], [...]
+{ "type": "Feature", "properties": { "ISO": "PH-GUI", "NAME_1": "Guimaras" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.705971,
10.47458 ], [ 122.725441, 10.45114 ], [ 122.682869, 10.44529 ], [ 122.68644,
10.46719 ], [ 122.705971, 10.47458 ] ] ], [ [ [ 122.660202, 10.75354 ], [
122.713768, 10.71588 ], [ 122.722069, 10.69249 ], [ 122.721947, 10.61083 ], [
122.682716, 10.50274 ], [ 122.666351, 10.47397 ], [ 122.647217, 10.47278 ], [
122.639816, 10.44552 ], [ 122.5969 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-SIG", "NAME_1": "Siquijor" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 123.604477, 9.30056 ], [
123.648773, 9.27531 ], [ 123.671631, 9.21271 ], [ 123.656143, 9.18943 ], [
123.673759, 9.16091 ], [ 123.699409, 9.15695 ], [ 123.693222, 9.12956 ], [
123.664597, 9.11503 ], [ 123.635834, 9.12389 ], [ 123.623734, 9.10266 ], [
123.588341, 9.09456 ], [ 123.559998, 9.10083 ], [ 123.455994, 9.18236 ], [
123.469849, 9.22436 ], [ 123.510757 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-NER", "NAME_1": "Negros
Oriental" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.336014,
10.38258 ], [ 123.33139, 10.27778 ], [ 123.287537, 10.18819 ], [ 123.283836,
10.13811 ], [ 123.227219, 10.00361 ], [ 123.14724, 9.8918 ], [ 123.150543,
9.85404 ], [ 123.133087, 9.83074 ], [ 123.16111, 9.708 ], [ 123.149849, 9.65116
], [ 123.121681, 9.65561 ], [ 123.107498, 9.62889 ], [ 123.141388, 9.5975 ], [
123.123047, 9.55167 ], [ 123.1 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-CEB", "NAME_1": "Cebu" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.072746,
10.28797 ], [ 124.051109, 10.2375 ], [ 124.031471, 10.2586 ], [ 124.072746,
10.28797 ] ] ], [ [ [ 123.988182, 10.33445 ], [ 124.005417, 10.31339 ], [
124.026657, 10.31374 ], [ 123.984123, 10.25885 ], [ 123.947502, 10.24222 ], [
123.932213, 10.25052 ], [ 123.943047, 10.31167 ], [ 123.988182, 10.33445 ] ] ],
[ [ [ 124.438812, 10.7178 ], [ 124.48 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-BOH", "NAME_1": "Bohol" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.837067,
9.64411 ], [ 123.872223, 9.62529 ], [ 123.862617, 9.59429 ], [ 123.805023,
9.55565 ], [ 123.744186, 9.55227 ], [ 123.743271, 9.59086 ], [ 123.837067,
9.64411 ] ] ], [ [ [ 124.617203, 10.15256 ], [ 124.599113, 10.13323 ], [
124.606773, 10.0984 ], [ 124.527771, 10.06862 ], [ 124.531342, 10.11973 ], [
124.617203, 10.15256 ] ] ], [ [ [ 124.291183 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-LAN", "NAME_1": "Lanao del
Norte" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.565224,
8.2352 ], [ 124.575073, 8.18601 ], [ 124.551651, 8.14903 ], [ 124.495598,
8.13797 ], [ 124.331818, 8.21221 ], [ 124.298439, 8.20776 ], [ 124.275871,
8.13177 ], [ 124.284843, 8.08848 ], [ 124.214058, 8.01577 ], [ 124.127548,
8.00201 ], [ 124.138924, 7.96916 ], [ 124.115387, 7.90898 ], [ 124.023369,
7.89961 ], [ 124.044281, 7.85886 ], [ 124. [...]
+{ "type": "Feature", "properties": { "ISO": "PH-LAS", "NAME_1": "Lanao del
Sur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.80674,
7.60358 ], [ 124.700256, 7.63983 ], [ 124.648621, 7.61308 ], [ 124.60363,
7.62467 ], [ 124.568367, 7.67307 ], [ 124.496147, 7.67864 ], [ 124.440552,
7.65203 ], [ 124.365433, 7.56782 ], [ 124.249779, 7.5092 ], [ 124.183327,
7.40917 ], [ 124.136391, 7.43889 ], [ 124.146393, 7.455 ], [ 124.108887,
7.52528 ], [ 124.029442, 7.63333 ], [ 123.974167 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-MSR", "NAME_1": "Misamis
Oriental" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.24231,
8.65959 ], [ 125.244202, 8.58163 ], [ 124.868813, 8.59437 ], [ 124.814278,
8.47604 ], [ 124.816231, 8.42205 ], [ 124.626053, 8.41954 ], [ 124.565224,
8.2352 ], [ 124.531616, 8.29432 ], [ 124.471901, 8.33142 ], [ 124.333977,
8.34055 ], [ 124.245552, 8.32676 ], [ 124.282219, 8.39444 ], [ 124.28389,
8.46333 ], [ 124.311668, 8.53611 ], [ 124.4 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-MSC", "NAME_1": "Misamis
Occidental" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
123.636864, 8.01389 ], [ 123.564613, 8.04726 ], [ 123.549568, 8.21537 ], [
123.554611, 8.62128 ], [ 123.576057, 8.61754 ], [ 123.609123, 8.67022 ], [
123.616226, 8.64958 ], [ 123.651894, 8.63522 ], [ 123.66626, 8.64563 ], [
123.747238, 8.59587 ], [ 123.743568, 8.58151 ], [ 123.836662, 8.43081 ], [
123.863289, 8.32174 ], [ 123.849586, 8.31516 ], [ 1 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-BUK", "NAME_1": "Bukidnon" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 125.244202, 8.58163 ], [
125.261177, 8.37049 ], [ 125.277893, 8.33649 ], [ 125.329033, 8.30081 ], [
125.344337, 8.2507 ], [ 125.363487, 8.23666 ], [ 125.353958, 8.18747 ], [
125.372177, 8.15252 ], [ 125.368408, 8.09991 ], [ 125.387863, 8.07751 ], [
125.375397, 8.02043 ], [ 125.420891, 7.91193 ], [ 125.417442, 7.81732 ], [
125.441063, 7.7715 ], [ 125.430733, [...]
+{ "type": "Feature", "properties": { "ISO": "PH-ZAS", "NAME_1": "Zamboanga del
Sur" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
122.279373, 6.98906 ], [ 122.285797, 6.97765 ], [ 122.265228, 6.95342 ], [
122.247047, 6.96369 ], [ 122.216942, 6.93778 ], [ 122.206902, 6.96839 ], [
122.224487, 6.98892 ], [ 122.271004, 6.99919 ], [ 122.279373, 6.98906 ] ] ], [
[ [ 121.90139, 7.14597 ], [ 122.071938, 7.14947 ], [ 122.145576, 7.21946 ], [
122.165771, 7.27452 ], [ 122.169128, [...]
+{ "type": "Feature", "properties": { "ISO": "PH-ZAN", "NAME_1": "Zamboanga del
Norte" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 123.554611,
8.62128 ], [ 123.549568, 8.21537 ], [ 123.382263, 8.21482 ], [ 123.348389,
8.23174 ], [ 123.200653, 8.23939 ], [ 123.193077, 8.10613 ], [ 123.166924,
8.05126 ], [ 123.166977, 7.99583 ], [ 123.070259, 7.99516 ], [ 122.962257,
7.91425 ], [ 122.753273, 7.9434 ], [ 122.662933, 7.92972 ], [ 122.551567,
7.87746 ], [ 122.451553, 7.79463 ], [ [...]
+{ "type": "Feature", "properties": { "ISO": "PH-ZSI", "NAME_1": "Zamboanga
Sibugay" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
122.899406, 7.4417 ], [ 122.929443, 7.42806 ], [ 122.975281, 7.36333 ], [
122.936668, 7.37389 ], [ 122.928047, 7.35611 ], [ 122.951668, 7.34972 ], [
122.942497, 7.33417 ], [ 122.921944, 7.34667 ], [ 122.903343, 7.32389 ], [
122.855003, 7.31056 ], [ 122.830276, 7.27722 ], [ 122.804733, 7.29861 ], [
122.787781, 7.34417 ], [ 122.802223, 7.4225 ] [...]
+{ "type": "Feature", "properties": { "ISO": "PH-SUK", "NAME_1": "Sultan
Kudarat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.0037,
6.72055 ], [ 125.120773, 6.75631 ], [ 125.152023, 6.73248 ], [ 125.132057,
6.72344 ], [ 125.133278, 6.68084 ], [ 125.175018, 6.63484 ], [ 125.19677,
6.53614 ], [ 124.834038, 6.53209 ], [ 124.75029, 6.67099 ], [ 124.673523,
6.59942 ], [ 124.656288, 6.6279 ], [ 124.604431, 6.52631 ], [ 124.645493,
6.39949 ], [ 124.595779, 6.31597 ], [ 124.54428 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-MGS", "NAME_1": "Maguindanao
del Sur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.0037,
6.72055 ], [ 124.87764, 6.65437 ], [ 124.799873, 6.64957 ], [ 124.748558,
6.74812 ], [ 124.745918, 6.78199 ], [ 124.666267, 6.78368 ], [ 124.695824,
6.86817 ], [ 124.655609, 6.87044 ], [ 124.656487, 6.88278 ], [ 124.556267,
6.86169 ], [ 124.575783, 6.78405 ], [ 124.510887, 6.72318 ], [ 124.282516,
6.72399 ], [ 124.265297, 6.75352 ], [ 12 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-MGN", "NAME_1": "Maguindanao
del Norte" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
124.194722946267063, 7.4412997700353 ], [ 124.206156651093636,
7.407816114842987 ], [ 124.247724365124952, 7.409265473839284 ], [
124.256975772072508, 7.348624369372672 ], [ 124.202397218499243,
7.35124507445002 ], [ 124.215207792374599, 7.34136115933039 ], [
124.2067747653781, 7.254291873943615 ], [ 124.168937914195794,
7.221697524288359 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-DAS", "NAME_1": "Davao del
Sur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.714622,
7.30018 ], [ 125.673592, 7.30215 ], [ 125.61422, 7.24421 ], [ 125.509247,
7.23922 ], [ 125.505371, 7.5584 ], [ 125.253639, 7.56478 ], [ 125.264679,
7.50371 ], [ 125.242943, 7.46829 ], [ 125.247169, 7.37824 ], [ 125.226784,
7.35225 ], [ 125.245193, 7.252 ], [ 125.226837, 7.20425 ], [ 125.241241, 7.1584
], [ 125.284157, 7.12294 ], [ 125.28923, [...]
+{ "type": "Feature", "properties": { "ISO": "PH-SAR", "NAME_1": "Sarangani" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.396378, 6.213
], [ 124.352119, 6.11843 ], [ 124.517776, 6.02306 ], [ 124.570831, 6.01722 ], [
124.60257, 5.98618 ], [ 124.635277, 5.98583 ], [ 124.823059, 5.88889 ], [
124.923607, 5.85944 ], [ 125.039551, 5.85088 ], [ 125.087883, 5.87321 ], [
125.075539, 5.88962 ], [ 125.098007, 5.91368 ], [ 125.101624, 5.95476 ], [
125.0513, 5.95953 ], [ 125.051 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-BAS", "NAME_1": "Basilan" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.962784,
6.31306 ], [ 121.985558, 6.31 ], [ 122.001953, 6.28639 ], [ 121.979721, 6.27847
], [ 121.955833, 6.29722 ], [ 121.962784, 6.31306 ] ] ], [ [ [ 121.975281,
6.36222 ], [ 121.985458, 6.33942 ], [ 121.965279, 6.3325 ], [ 121.949173,
6.35111 ], [ 121.975281, 6.36222 ] ] ], [ [ [ 121.588913, 6.6834 ], [
121.557953, 6.69278 ], [ 121.564056, 6.7041 [...]
{ "type": "Feature", "properties": { "ISO": "PH-SLU", "NAME_1": "Sulu" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
120.860687696000014, 5.574367580000057 ], [ 120.904551629000025,
5.538031317000048 ], [ 120.897797071000014, 5.498521226000094 ], [
120.85084069100003, 5.505438544000071 ], [ 120.823741082000083,
5.533636786000045 ], [ 120.824392123000052, 5.553208726000094 ], [
120.860687696000014, 5.574367580000057 ] ] ], [ [ [ 121.902354363000086,
6.033636786000045 ], [...]
-{ "type": "Feature", "properties": { "ISO": "PH-DAV", "NAME_1": "Davao del
Norte" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
125.791270379000025, 6.948187567000048 ], [ 125.776866082000083,
6.894029039000088 ], [ 125.74537194100003, 6.93695709800005 ], [
125.717621290000011, 7.052232164000088 ], [ 125.674082879000025,
7.070217190000051 ], [ 125.715830925000091, 7.19594961100006 ], [
125.781911655000044, 7.135199286000045 ], [ 125.791270379000025,
6.948187567000048 ] [...]
-{ "type": "Feature", "properties": { "ISO": "PH-ZSI", "NAME_1": "Zamboanga
Sibugay" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
122.971690300000091, 7.383612372000073 ], [ 122.944509311000047,
7.389837958000044 ], [ 122.950694207000083, 7.355698960000041 ], [
122.854991082000083, 7.31476471600007 ], [ 122.842051629000025,
7.294256903000075 ], [ 122.816661004000025, 7.294907945000091 ], [
122.800547722000033, 7.32094961100006 ], [ 122.79420006600003,
7.383937893000052 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-PLW", "NAME_1": "Palawan" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
121.252452019000089, 9.63117096600007 ], [ 121.234629754000025,
9.594305731000077 ], [ 121.210948113000086, 9.575873114000046 ], [
121.258636915000011, 9.64484284100007 ], [ 121.252452019000089,
9.63117096600007 ] ] ], [ [ [ 119.63209069100003, 11.069891669000071 ], [
119.647959832000083, 11.015285549000055 ], [ 119.613129102000016,
11.00844961100006 ] [...]
-{ "type": "Feature", "properties": { "ISO": "PH-SUN", "NAME_1": "Surigao del
Norte" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
125.990244988000086, 9.685736395000049 ], [ 126.001475457000083,
9.676743882000039 ], [ 125.984141472000033, 9.589504299000055 ], [
125.94695071700005, 9.566229559000078 ], [ 125.952891472000033,
9.581976630000042 ], [ 125.92505944100003, 9.589544989000046 ], [
125.93873131600003, 9.60382721600007 ], [ 125.915537957000083,
9.618963934000078 ] [...]
-{ "type": "Feature", "properties": { "ISO": "PH-SUR", "NAME_1": "Surigao del
Sur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
125.934092644000089, 9.492336330000057 ], [ 125.95240319100003,
9.453029690000051 ], [ 125.972829623000052, 9.480292059000078 ], [
125.971202019000089, 9.454087632000039 ], [ 125.920258009, 9.426906643000052 ],
[ 125.910980665000011, 9.40493398600006 ], [ 125.955821160000028,
9.381781317000048 ], [ 125.993907097000033, 9.397772528000075 ], [ 125.99659
[...]
-{ "type": "Feature", "properties": { "ISO": "PH-AGN", "NAME_1": "Agusan del
Norte" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
125.516612175000091, 9.01593659100007 ], [ 125.54070071700005,
9.084051825000074 ], [ 125.542002800000091, 9.189195054000038 ], [
125.465258885589037, 9.444700412194265 ], [ 125.549577264778918,
9.46422882709868 ], [ 125.6220276227765, 9.455805569071742 ], [
125.691790805601158, 9.428520413386366 ], [ 125.730961541741749,
9.38521556214846 ], [ [...]
-{ "type": "Feature", "properties": { "ISO": "PH-AGN", "NAME_1": "Butuan" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 125.4411727218436,
8.980414130207919 ], [ 125.516612175000091, 9.01593659100007 ], [
125.709619907432739, 9.014830564379054 ], [ 125.662149388383568,
8.876591035048193 ], [ 125.673700039724963, 8.800870093679862 ], [
125.513274318255185, 8.797019876566026 ], [ 125.461938086773216,
8.876591035048193 ], [ 125.4411727218436, 8.980414130207919 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-MSR", "NAME_1": "Misamis
Oriental" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
124.753184440809264, 8.561712958386295 ], [ 124.773610873000052,
8.59642161700009 ], [ 124.746348504000025, 8.670965887000079 ], [
124.787852410000028, 8.733628648000092 ], [ 124.780772332000083,
8.949123440000051 ], [ 124.799082879000025, 8.999986070000091 ], [
124.820811394000089, 9.014553127000056 ], [ 124.91529381600003,
8.994126695000091 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-MSR", "NAME_1": "Cagayan de
Oro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
124.57154381569444, 8.528143621730749 ], [ 124.65748131600003,
8.514553127000056 ], [ 124.636485222000033, 8.454291083000044 ], [
124.643321160000028, 8.43195221600007 ], [ 124.663096550000091,
8.475816148000092 ], [ 124.71216881600003, 8.47296784100007 ], [
124.75318444100003, 8.500230210000041 ], [ 124.753184440809264,
8.561712958386295 ], [ 124.8255 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-LAN", "NAME_1": "Iligan" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 124.232269727000016,
8.212876695000091 ], [ 124.27466881600003, 8.281073309000078 ], [
124.261692740343662, 8.324175558905162 ], [ 124.352337681338895,
8.370548814076471 ], [ 124.407528111233319, 8.369877021407376 ], [
124.521629673170878, 8.290140286045357 ], [ 124.547261184256172,
8.244251614220616 ], [ 124.572479283292296, 8.237223619274573 ], [ 124.5597668
[...]
-{ "type": "Feature", "properties": { "ISO": "PH-LAN", "NAME_1": "Lanao del
Norte" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
123.688967319685958, 7.968299464748497 ], [ 124.000254754000025,
8.181341864000046 ], [ 124.155772332000083, 8.190252997000073 ], [
124.232269727000016, 8.212876695000091 ], [ 124.263713229481937,
8.197794566366156 ], [ 124.299109554162555, 8.215565904742675 ], [
124.288879022149104, 8.083331204471506 ], [ 124.254462517830916,
8.034186916692818 ], [ 1 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-ZAS", "NAME_1": "Zamboanga del
Sur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
123.677582227000016, 8.010606187000064 ], [ 123.670664910000028,
7.969224351000037 ], [ 123.688967319685958, 7.968299464748497 ], [
123.701834751172782, 7.927733466426332 ], [ 123.69366987466492,
7.890836493409438 ], [ 123.614681559006669, 7.833489896386385 ], [
123.522959832000083, 7.835516669000071 ], [ 123.444672071000014,
7.801336981000077 ], [ [...]
-{ "type": "Feature", "properties": { "ISO": "PH-MSC", "NAME_1": "Misamis
Occidental" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
123.54900149762102, 8.618841864360547 ], [ 123.58130944100003,
8.582831122000073 ], [ 123.616709832000083, 8.670721747000073 ], [
123.633067254000025, 8.668443101000037 ], [ 123.629079623000052,
8.651068427000041 ], [ 123.722504102000016, 8.628078518000052 ], [
123.738942905000044, 8.602687893000052 ], [ 123.758799675000091,
8.607489325000074 ], [ [...]
-{ "type": "Feature", "properties": { "ISO": "PH-ZAN", "NAME_1": "Zamboanga del
Norte" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
121.904275939493957, 7.154397057234028 ], [ 121.933441602000016,
7.217922268000052 ], [ 122.051036004000025, 7.307806708000044 ], [
122.032562696000014, 7.339829820000091 ], [ 122.046885613000086,
7.452541408000059 ], [ 122.077647332000083, 7.528021552000041 ], [
122.146006707000083, 7.588812567000048 ], [ 122.113536004000025,
7.603257554000038 ], [...]
-{ "type": "Feature", "properties": { "ISO": "PH-ZAN", "NAME_1": "Zamboanga" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 122.359873894000089,
7.472845770000049 ], [ 122.347992384, 7.452541408000059 ], [
122.379079623000052, 7.391587632000039 ], [ 122.372569207000083,
7.372748114000046 ], [ 122.34498131600003, 7.331773179000038 ], [
122.300140821000014, 7.32094961100006 ], [ 122.280446811000047,
7.294501044000071 ], [ 122.243500196000014, 7.099269924000055 ], [
122.20240319100 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-LAS", "NAME_1": "Lanao del
Sur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
124.167313222127405, 7.431845780258527 ], [ 124.065196160000028,
7.602728583000044 ], [ 123.910899285000028, 7.698919989000046 ], [
123.861818883972617, 7.703472448980802 ], [ 123.86926639193041,
7.739734604768159 ], [ 123.99339318234945, 7.701855779820391 ], [
124.005950556373023, 7.767278143771307 ], [ 124.058350458306904,
7.844792791953751 ], [ 124.0 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-MAG", "NAME_1": "Maguindanao"
}, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.219248894000089,
7.32094961100006 ], [ 124.246755405000044, 7.404120184000078 ], [
124.187754754000025, 7.410345770000049 ], [ 124.167313222127405,
7.431845780258527 ], [ 124.382878452978161, 7.620517075802411 ], [
124.464578892202098, 7.669558009894217 ], [ 124.448765904023162,
7.539488430146946 ], [ 124.492690871086779, 7.433190009511293 ], [ 124.32 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-NCO", "NAME_1": "Cotabato" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 124.18376712295435,
7.226385808558234 ], [ 124.219248894000089, 7.279974677000041 ], [
124.219248894000089, 7.32094961100006 ], [ 124.251105780307512,
7.314710034340578 ], [ 124.305450714378935, 7.222323646419113 ], [
124.280995494046806, 7.165261466543427 ], [ 124.229367806678852,
7.181564946764865 ], [ 124.18376712295435, 7.226385808558234 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-SUK", "NAME_1": "Sultan
Kudarat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
124.370282343284927, 6.132650245541392 ], [ 124.228770379000025,
6.197007554000038 ], [ 124.07195071700005, 6.401516018000052 ], [
124.032969597000033, 6.54242584800005 ], [ 124.055837436000047,
6.552720445000091 ], [ 124.037219171005489, 6.758550510509302 ], [
124.222423130323136, 6.761809800981496 ], [ 124.245677524598023,
6.757210597890776 ], [ 124. [...]
-{ "type": "Feature", "properties": { "ISO": "PH-SAR", "NAME_1": "Sarangani" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
125.112233920000108, 5.953355210000041 ], [ 125.069102410000028,
5.861721096000053 ], [ 124.93873131600003, 5.863959052000041 ], [
124.605804884, 5.992336330000057 ], [ 124.585948113000086, 6.022691148000092 ],
[ 124.370282343284927, 6.132650245541392 ], [ 124.396366001189904,
6.212954413315515 ], [ 124.789416945235757, 6.01167470902061 ], [ 125.0482 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-SCO", "NAME_1": "General
Santos" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
125.240082227000016, 6.094224351000094 ], [ 125.15788821700005,
6.108791408000059 ], [ 125.112233920000108, 5.953355210000041 ], [
125.053070103102755, 5.958137926424172 ], [ 125.036049185121783,
6.196364829972936 ], [ 125.119096062333369, 6.19082837143219 ], [
125.102486687610508, 6.251729415380225 ], [ 125.137424199766997,
6.320709767142034 ], [ 125. [...]
-{ "type": "Feature", "properties": { "ISO": "PH-DAS", "NAME_1": "Davao del
Sur" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
125.509938998000052, 7.015570380000042 ], [ 125.487478061000047,
6.978949286000045 ], [ 125.480642123000052, 6.913234768000052 ], [
125.40357506600003, 6.811835028000075 ], [ 125.380625847000033,
6.657212632000039 ], [ 125.40552819100003, 6.588853257000039 ], [
125.434580925000091, 6.58820221600007 ], [ 125.432139519000089,
6.615790106000077 ], [ [...]
-{ "type": "Feature", "properties": { "ISO": "PH-DAV", "NAME_1": "Davao" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 125.676768425000091,
7.264634507000039 ], [ 125.656911655000044, 7.23704661700009 ], [
125.658050977000016, 7.129136460000041 ], [ 125.603526238000086,
7.054632880000042 ], [ 125.509938998000052, 7.015570380000042 ], [
125.302770623865172, 7.017349758284695 ], [ 125.315017937727589,
7.028201809066218 ], [ 125.297602980892862, 7.122252915839397 ], [ 125.22251712
[...]
-{ "type": "Feature", "properties": { "ISO": "PH-COM", "NAME_1": "Compostela
Valley" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
125.954274914064328, 7.047406359831964 ], [ 125.902598504000025,
7.101141669000071 ], [ 125.850596550000091, 7.253892320000091 ], [
125.85320071700005, 7.336004950000074 ], [ 125.830715478936099,
7.354265664129059 ], [ 125.841135695056209, 7.422415473095612 ], [
125.826666294014217, 7.432208157580419 ], [ 125.833900995434533,
7.455591742165154 ], [ [...]
-{ "type": "Feature", "properties": { "ISO": "PH-DAO", "NAME_1": "Davao
Oriental" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
126.383474155000044, 7.899562893000052 ], [ 126.406097852000016,
7.833238023000092 ], [ 126.454925977000016, 7.797308661000045 ], [
126.487478061000047, 7.74673086100006 ], [ 126.582855665000011,
7.719427802000041 ], [ 126.569183790000011, 7.626369533000059 ], [
126.60865319100003, 7.465318101000094 ], [ 126.566416863000086,
7.426011460000041 ], [ 126. [...]
-{ "type": "Feature", "properties": { "ISO": "PH-SLE", "NAME_1": "Southern
Leyte" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
125.295095248000052, 9.970648505000042 ], [ 125.304942254000025,
9.932806708000044 ], [ 125.273936394000089, 9.919134833000044 ], [
125.198741082000083, 10.035834052000041 ], [ 125.14576256600003,
10.070705471000053 ], [ 125.125824415000011, 10.129828192000048 ], [
125.137461785000028, 10.165513414000088 ], [ 125.229258660000028,
10.121161200000 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-LEY", "NAME_1": "Leyte" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
124.379730665000011, 10.691310940000051 ], [ 124.389984571000014,
10.641302802000041 ], [ 124.378428582000083, 10.628322658000059 ], [
124.300629102000016, 10.590073960000041 ], [ 124.284353061000047,
10.60382721600007 ], [ 124.327647332000083, 10.704006252000056 ], [
124.355479363000086, 10.710638739000046 ], [ 124.379730665000011,
10.691310940000051 ] [...]
+{ "type": "Feature", "properties": { "ISO": "PH-SUN", "NAME_1": "Surigao del
Norte" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
125.628311, 9.72801 ], [ 125.648949, 9.72676 ], [ 125.662193, 9.66789 ], [
125.643608, 9.66917 ], [ 125.628311, 9.72801 ] ] ], [ [ [ 126.030167, 9.73282
], [ 126.05513, 9.73265 ], [ 126.064743, 9.71403 ], [ 126.024719, 9.69306 ], [
125.972511, 9.6938 ], [ 125.985352, 9.72978 ], [ 126.030167, 9.73282 ] ] ], [ [
[ 125.942436, 9.75879 ], [ 125.9 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-DIN", "NAME_1": "Dinagat
Islands" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
125.719574415000011, 9.911688544000071 ], [ 125.681488477000016,
9.958075262000079 ], [ 125.692881707000083, 9.974351304000038 ], [
125.681976759, 10.021551825000074 ], [ 125.706553582000083, 10.069322007000039
], [ 125.676768425000091, 10.12767161700009 ], [ 125.685313347000033,
10.172349351000037 ], [ 125.656504754000025, 10.176336981000077 ], [ 125 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-SUR", "NAME_1": "Surigao del
Sur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.360741,
7.910173 ], [ 126.344337, 8.05324 ], [ 126.300194, 8.06536 ], [ 126.360184,
8.12358 ], [ 126.293907, 8.11663 ], [ 126.23288, 8.17449 ], [ 126.206917,
8.17799 ], [ 126.221237, 8.22954 ], [ 126.271797, 8.28687 ], [ 126.290756,
8.28723 ], [ 126.267776, 8.34024 ], [ 126.27636, 8.36634 ], [ 126.098488,
8.3793 ], [ 126.06012, 8.41665 ], [ 126.09 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-AGN", "NAME_1": "Agusan del
Norte" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.747726,
9.32456 ], [ 125.767509, 9.16362 ], [ 125.746696, 9.07297 ], [ 125.695877,
8.98506 ], [ 125.671242, 8.86519 ], [ 125.639633, 8.80887 ], [ 125.674652,
8.69828 ], [ 125.496887, 8.70089 ], [ 125.437492, 8.66019 ], [ 125.24231,
8.65959 ], [ 125.231506, 8.85519 ], [ 125.25338, 8.86697 ], [ 125.220192,
8.92085 ], [ 125.2285, 8.96386 ], [ 125.20 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-COM", "NAME_1": "Davao de Oro"
}, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.942436, 7.07435 ],
[ 125.884079, 7.12622 ], [ 125.892776, 7.16333 ], [ 125.838379, 7.25088 ], [
125.855553, 7.34806 ], [ 125.831947, 7.36194 ], [ 125.841743, 7.40431 ], [
125.826637, 7.43227 ], [ 125.867928, 7.49774 ], [ 125.852509, 7.5281 ], [
125.919411, 7.54259 ], [ 125.938179, 7.64674 ], [ 125.903236, 7.69085 ], [
125.92923, 7.71924 ], [ 125.9411 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-SLE", "NAME_1": "Southern
Leyte" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.149437,
10.62223 ], [ 125.183891, 10.595 ], [ 125.189453, 10.5625 ], [ 125.164719,
10.53417 ], [ 125.191673, 10.47196 ], [ 125.179207, 10.42926 ], [ 125.222023,
10.38181 ], [ 125.24028, 10.39444 ], [ 125.260834, 10.36667 ], [ 125.268059,
10.29889 ], [ 125.249184, 10.25476 ], [ 125.208557, 10.24621 ], [ 125.141762,
10.27712 ], [ 125.126152, 10.26265 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-LEY", "NAME_1": "Leyte" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 125.149437, 10.62223 ], [
125.052963, 10.52387 ], [ 124.939842, 10.52433 ], [ 124.893181, 10.4044 ], [
124.899887, 10.26502 ], [ 124.845467, 10.25276 ], [ 124.775284, 10.18533 ], [
124.759407, 10.19212 ], [ 124.791008, 10.30276 ], [ 124.765129, 10.35777 ], [
124.733612, 10.375 ], [ 124.720612, 10.48749 ], [ 124.766144, 10.53691 ], [
124.776688, 10.63881 ], [ 12 [...]
{ "type": "Feature", "properties": { "ISO": "PH-EAS", "NAME_1": "Eastern
Samar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
125.822032097000033, 10.73468659100007 ], [ 125.826914910000028,
10.708929755000042 ], [ 125.769379102000016, 10.700384833000044 ], [
125.684092644000089, 10.752752997000073 ], [ 125.687266472000033,
10.805161851000037 ], [ 125.709157748000052, 10.817694403000075 ], [
125.731455925000091, 10.80805084800005 ], [ 125.760508660000028, 10.74095286700
[...]
{ "type": "Feature", "properties": { "ISO": "PH-BIL", "NAME_1": "Biliran" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 124.599619988000086,
11.563381252000056 ], [ 124.621429884, 11.553900458000044 ], [
124.625010613000086, 11.532700914000088 ], [ 124.609141472000033,
11.486558335000041 ], [ 124.486338738000086, 11.488226630000042 ], [
124.472666863000086, 11.473944403000075 ], [ 124.413259311000047,
11.546454169000071 ], [ 124.349131707000083, 11.680080471000053 ], [ 124.430
[...]
{ "type": "Feature", "properties": { "ISO": "PH-WSA", "NAME_1": "Samar" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
124.815196160000028, 11.63226959800005 ], [ 124.856211785000028,
11.60492584800005 ], [ 124.831553582000083, 11.536322333000044 ], [
124.808767123000052, 11.577337958000044 ], [ 124.787852410000028,
11.570217190000051 ], [ 124.776052280000044, 11.629828192000048 ], [
124.740570509, 11.650620835000041 ], [ 124.722422722000033, 11.693264065000051
], [ 124. [...]
-{ "type": "Feature", "properties": { "ISO": "PH-AUR", "NAME_1": "Aurora" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 122.244639519000089,
16.510565497000073 ], [ 122.204274936000047, 16.434759833000044 ], [
122.217621290000011, 16.394761460000041 ], [ 122.231944207000083,
16.415269273000092 ], [ 122.191905144000089, 16.317368882000039 ], [
122.197113477000016, 16.291693427000041 ], [ 122.231944207000083,
16.319037177000041 ], [ 122.203868035000028, 16.236517645000049 ], [ 12 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-QUE", "NAME_1": "Quezon" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
121.446178112323281, 15.207934112507255 ], [ 121.481455925000091,
15.182521877000056 ], [ 121.508148634, 15.06281159100007 ], [
121.615000847000033, 14.872870184000078 ], [ 121.594493035000028,
14.859198309000078 ], [ 121.724945509, 14.73078034100007 ], [
121.726084832000083, 14.72016022300005 ], [ 121.649180535000028,
14.710516669000071 ], [ 121.613942 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-CAN", "NAME_1": "Camarines
Norte" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
122.309985687389371, 14.096280240136826 ], [ 122.345713738000086,
14.131333726000037 ], [ 122.33130944100003, 14.200262762000079 ], [
122.355479363000086, 14.195054429000038 ], [ 122.347992384, 14.222357489000046
], [ 122.376800977000016, 14.228501695000091 ], [ 122.366221550000091,
14.261460679000038 ], [ 122.416270379000025, 14.324774481000077 ], [ [...]
-{ "type": "Feature", "properties": { "ISO": "PH-CAS", "NAME_1": "Camarines
Sur" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
123.048838738000086, 13.821966864000046 ], [ 123.049815300000091,
13.775824286000045 ], [ 123.108246290000011, 13.72211334800005 ], [
123.214691602000016, 13.728949286000045 ], [ 123.266612175000091,
13.749416408000059 ], [ 123.314952019000089, 13.820542710000041 ], [
123.280284050000091, 13.906439520000049 ], [ 123.325531446000014, 13.9400088560
[...]
-{ "type": "Feature", "properties": { "ISO": "PH-ALB", "NAME_1": "Albay" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
123.593581098288951, 13.529467053161966 ], [ 123.66724694100003,
13.485581773000092 ], [ 123.725352410000028, 13.409898179000038 ], [
123.74341881600003, 13.340318101000037 ], [ 123.79460696700005,
13.308417059000078 ], [ 123.82154381600003, 13.24290599200009 ], [
123.82545006600003, 13.260158596000053 ], [ 123.836192254000025,
13.256089585000041 ], [ 12 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-SOR", "NAME_1": "Sorsogon" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 123.935381275298965,
13.118511132448013 ], [ 124.008148634, 13.080023505000042 ], [
124.081553582000083, 13.009507554000038 ], [ 124.126719597000033,
13.078680731000077 ], [ 124.184580925000091, 13.057318427000041 ], [
124.188243035000028, 13.039536851000037 ], [ 124.177500847000033,
13.009995835000041 ], [ 124.164805535000028, 13.01634349200009 ], [ 124.153
[...]
-{ "type": "Feature", "properties": { "ISO": "PH-QUE", "NAME_1": "Lucena" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.636892122873178,
13.909613348177459 ], [ 121.621755405000044, 13.893459377000056 ], [
121.549327019000089, 13.878159898000092 ], [ 121.49841296108923,
13.957229433291673 ], [ 121.581947999300723, 13.996386481750733 ], [
121.636892122873178, 13.909613348177459 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-BTG", "NAME_1": "Batangas" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
121.454580756396695, 13.819219335404 ], [ 121.433441602000016,
13.796372789000088 ], [ 121.436289910000028, 13.700995184000078 ], [
121.46412194100003, 13.69476959800005 ], [ 121.430023634, 13.656927802000041 ],
[ 121.374766472000033, 13.667466539000088 ], [ 121.278819207000083,
13.595038153000075 ], [ 121.158702019000089, 13.639471747000073 ], [ 121. [...]
-{ "type": "Feature", "properties": { "ISO": "PH-CAV", "NAME_1": "Cavite" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.596679796726121,
14.21879689746336 ], [ 120.627452019000089, 14.269598700000074 ], [
120.713145379000025, 14.298529364000046 ], [ 120.877940300000091,
14.458889065000051 ], [ 120.926117384, 14.464667059000078 ], [
120.96080439496447, 14.495230243285709 ], [ 121.012903274166774,
14.401136786333609 ], [ 121.014763625241017, 14.328169664398501 ], [ 121.074708
[...]
-{ "type": "Feature", "properties": { "ISO": "PH-MNL", "NAME_1": "Las Pinas" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.96080439496447,
14.495230243285709 ], [ 120.973392840427465, 14.505999077100693 ], [
121.032971807502918, 14.43856738917367 ], [ 121.014195879636077,
14.397060106438744 ], [ 120.96080439496447, 14.495230243285709 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-MNL", "NAME_1": "Paranaque" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.973392840427465,
14.505999077100693 ], [ 120.984385612905612, 14.534002996840798 ], [
121.005777307976359, 14.53180567339308 ], [ 121.0075039424529,
14.50979107819569 ], [ 121.057144695571196, 14.502021221702023 ], [
121.055849719488947, 14.44935885712556 ], [ 121.025201950109818,
14.442883975814823 ], [ 120.973392840427465, 14.505999077100693 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-MNL", "NAME_1": "Pasay" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.984385612905612,
14.534002996840798 ], [ 120.98015384200005, 14.557440497000073 ], [
121.00620896637065, 14.557705196837333 ], [ 121.044626593142766,
14.507201126031134 ], [ 121.0075039424529, 14.50979107819569 ], [
121.005777307976359, 14.53180567339308 ], [ 120.984385612905612,
14.534002996840798 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-MNL", "NAME_1": "Manila" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.98015384200005,
14.557440497000073 ], [ 120.958832227000016, 14.591782945000091 ], [
120.947583812519525, 14.627863720735219 ], [ 121.001029062041539,
14.627418080579957 ], [ 121.03728839414407, 14.588784624610696 ], [
121.00620896637065, 14.557705196837333 ], [ 120.98015384200005,
14.557440497000073 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-MNL", "NAME_1": "Navotas" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.947583812519525,
14.627863720735219 ], [ 120.916213975467514, 14.694389024837836 ], [
120.921603856332808, 14.701879210257346 ], [ 120.976856173073884,
14.628281397368596 ], [ 120.947583812519525, 14.627863720735219 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-BUL", "NAME_1": "Bulacan" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.916213975467514,
14.694389024837836 ], [ 120.840586785000028, 14.761216539000088 ], [
120.663828972000033, 14.778957424000055 ], [ 120.726512485962417,
14.894026597749246 ], [ 120.829865349905958, 14.936659654519417 ], [
120.883918899137825, 14.98471873578103 ], [ 120.875133905005669,
15.00265045835198 ], [ 120.905106235864082, 15.015156155532111 ], [ 120 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-PAM", "NAME_1": "Pampanga" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.663828972000033,
14.778957424000055 ], [ 120.63209069100003, 14.795477606000077 ], [
120.621267123000052, 14.872870184000078 ], [ 120.621267123000052,
14.831854559000078 ], [ 120.593923373000052, 14.818264065000051 ], [
120.601328972000033, 14.900824286000045 ], [ 120.585703972000033,
14.902818101000037 ], [ 120.57349694100003, 14.838771877000056 ], [ 12 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-BAN", "NAME_1": "Bataan" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.545420769000089,
14.827093817000048 ], [ 120.539317254000025, 14.702826239000046 ], [
120.582204623000052, 14.648260809000078 ], [ 120.574961785000028,
14.621649481000077 ], [ 120.597911004000025, 14.505601304000038 ], [
120.564626498000052, 14.441229559000078 ], [ 120.49146569100003,
14.442084052000041 ], [ 120.467051629000025, 14.421047268000052 ], [ 120 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-ZMB", "NAME_1": "Olongapo" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.282480249342086,
14.806080700908035 ], [ 120.29224694100003, 14.825669664000088 ], [
120.267751498000052, 14.82953522300005 ], [ 120.259776238000086,
14.851507880000042 ], [ 120.209320508934297, 14.880031643045868 ], [
120.279323502277748, 14.933545188059952 ], [ 120.349806190403342,
14.912661428282263 ], [ 120.454901158061944, 14.914128729757067 ], [ 12 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-ZMB", "NAME_1": "Zambales" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.209320508934297,
14.880031643045868 ], [ 120.175547722000033, 14.757391669000071 ], [
120.127777540000011, 14.76703522300005 ], [ 120.079925977000016,
14.803941148000092 ], [ 120.100433790000011, 14.825669664000088 ], [
120.079925977000016, 14.818264065000051 ], [ 120.056651238000086,
14.893255927000041 ], [ 120.052989129000025, 15.062445380000042 ], [ 1 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-PAN", "NAME_1": "Pangasinan"
}, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
119.888798378348298, 15.801418399883865 ], [ 119.898610873000052,
15.853176174000055 ], [ 119.867198113000086, 15.93500397300005 ], [
119.828298373000052, 15.95571523600006 ], [ 119.770843946000014,
15.914984442000048 ], [ 119.755869988000086, 15.944566148000092 ], [
119.757823113000086, 16.058986721000053 ], [ 119.778330925000091,
16.13784414300005 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-PAN", "NAME_1": "Dagupan" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.257660352000016,
16.05219147300005 ], [ 120.306651238000086, 16.044663804000038 ], [
120.299082879000025, 16.017401434000078 ], [ 120.333832227000016,
16.058986721000053 ], [ 120.363291863000086, 16.055487372000073 ], [
120.36101321700005, 16.073187567000048 ], [ 120.326426629000025,
16.065822658000059 ], [ 120.365244987765891, 16.108710027845518 ], [ 120 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-LUN", "NAME_1": "La Union" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.401362300922017,
16.209502092923167 ], [ 120.385508660000028, 16.251939195000091 ], [
120.353770379000025, 16.291693427000041 ], [ 120.353770379000025,
16.271307684000078 ], [ 120.336273634, 16.292181708000044 ], [
120.299082879000025, 16.493801174000055 ], [ 120.306651238000086,
16.544989325000074 ], [ 120.276133660000028, 16.611883856000077 ], [ 120.30
[...]
-{ "type": "Feature", "properties": { "ISO": "PH-ILS", "NAME_1": "Ilocos Sur"
}, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.397908480471358,
16.919186312518271 ], [ 120.434092644000089, 16.982123114000046 ], [
120.416351759, 17.179348049000055 ], [ 120.402110222000033, 17.206691799000055
], [ 120.408213738000086, 17.322699286000045 ], [ 120.443695509,
17.388495184000078 ], [ 120.402110222000033, 17.518866278000075 ], [
120.340830925000091, 17.538763739000046 ], [ 120.333832 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-ILN", "NAME_1": "Ilocos Norte"
}, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.42613947039311,
17.894035924932261 ], [ 120.477224155000044, 18.004828192000048 ], [
120.470062696000014, 18.091009833000044 ], [ 120.579112175000091,
18.325140692000048 ], [ 120.584971550000091, 18.405462958000044 ], [
120.560801629000025, 18.486761786000045 ], [ 120.570160352000016,
18.501776434000078 ], [ 120.611094597000033, 18.538560289000088 ], [...]
-{ "type": "Feature", "properties": { "ISO": "PH-CAG", "NAME_1": "Cagayan" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
120.995110347380987, 18.60605988959172 ], [ 121.106781446000014,
18.642726955000057 ], [ 121.170664910000028, 18.625474351000037 ], [
121.266286655000044, 18.554877020000049 ], [ 121.592051629000025,
18.384711005000042 ], [ 121.64966881600003, 18.313950914000088 ], [
121.634613477000016, 18.334540106000077 ], [ 121.645030144000089,
18.36945221600007 ], [...]
-{ "type": "Feature", "properties": { "ISO": "PH-ISA", "NAME_1": "Isabela" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
122.184630748540542, 17.541313565335727 ], [ 122.239593946000014,
17.426825262000079 ], [ 122.251149936000047, 17.360174872000073 ], [
122.287119988000086, 17.360581773000092 ], [ 122.31373131600003,
17.340073960000041 ], [ 122.365407748000052, 17.353745835000041 ], [
122.390147332000083, 17.316880601000037 ], [ 122.402598504000025,
17.305975653000075 [...]
{ "type": "Feature", "properties": { "ISO": "PH-TAW", "NAME_1": "Tawi-Tawi" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
120.251963738000086, 5.266506252000056 ], [ 120.216563347000033,
5.114976304000038 ], [ 120.184580925000091, 5.136460679000038 ], [
120.182383660000028, 5.204413153000075 ], [ 120.168711785000028,
5.183294989000046 ], [ 120.145518425000091, 5.183294989000046 ], [
120.120941602000016, 5.218003648000092 ], [ 120.100433790000011,
5.156642971000053 ], [ [...]
-{ "type": "Feature", "properties": { "ISO": "PH-BAS", "NAME_1": "Basilan" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
122.049223944328872, 6.739796633355941 ], [ 122.152842644000089,
6.704575914000088 ], [ 122.168711785000028, 6.681586005000042 ], [
122.235362175000091, 6.666205145000049 ], [ 122.33521569100003,
6.603338934000078 ], [ 122.235362175000091, 6.571193752000056 ], [
122.188649936000047, 6.451076565000051 ], [ 122.057627800000091,
6.413885809000078 ], [ 121 [...]
{ "type": "Feature", "properties": { "ISO": "PH-CAM", "NAME_1": "Camiguin" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 124.784190300000091,
9.199774481000077 ], [ 124.808360222000033, 9.156805731000077 ], [
124.801280144000089, 9.096258856000077 ], [ 124.770192905000044,
9.077378648000092 ], [ 124.672129754000025, 9.125392971000053 ], [
124.636485222000033, 9.18235911700009 ], [ 124.646739129000025,
9.218898830000057 ], [ 124.708506707000083, 9.250189520000049 ], [ 124.74634
[...]
-{ "type": "Feature", "properties": { "ISO": "PH-SIG", "NAME_1": "Siquijor" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 123.698008660000028,
9.165025132000039 ], [ 123.722422722000033, 9.149115302000041 ], [
123.703298373000052, 9.12836334800005 ], [ 123.653005405000044,
9.122951565000051 ], [ 123.632334832000083, 9.098334052000041 ], [
123.561208530000044, 9.114243882000039 ], [ 123.471202019000089,
9.185451565000051 ], [ 123.500010613000086, 9.220282294000071 ], [ 123.51758
[...]
-{ "type": "Feature", "properties": { "ISO": "PH-BOH", "NAME_1": "Bohol" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
124.565277540000011, 9.870754299000055 ], [ 124.549815300000091,
9.861558335000041 ], [ 124.624034050000091, 9.801825262000079 ], [
124.596202019000089, 9.737290757000039 ], [ 124.520355665000011,
9.740383205000057 ], [ 124.514414910000028, 9.76703522300005 ], [
124.499847852000016, 9.76829661700009 ], [ 124.429453972000033,
9.715033270000049 ], [ 124.41 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-GUI", "NAME_1": "Guimaras" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 122.711110873000052,
10.73468659100007 ], [ 122.73796634200005, 10.694159247000073 ], [
122.737071160000028, 10.640041408000059 ], [ 122.686859571000014,
10.506008205000057 ], [ 122.63445071700005, 10.444240627000056 ], [
122.59498131600003, 10.43305084800005 ], [ 122.605235222000033,
10.460516669000071 ], [ 122.594493035000028, 10.45970286700009 ], [ 122.53 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-BCD", "NAME_1": "Bacolod" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 122.919899199479644,
10.618316367510527 ], [ 122.975840690595305, 10.742417709909375 ], [
123.06776443667934, 10.680928100151675 ], [ 123.024866693243212,
10.592609215442906 ], [ 122.919899199479644, 10.618316367510527 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-NEC", "NAME_1": "Negros
Occidental" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
122.597097201, 9.437648830000057 ], [ 122.529795769000089, 9.537909247000073 ],
[ 122.496592644000089, 9.561712958000044 ], [ 122.461436394000089,
9.655259507000039 ], [ 122.443614129000025, 9.672756252000056 ], [
122.42310631600003, 9.658433335000041 ], [ 122.430430535000028,
9.713690497000073 ], [ 122.402598504000025, 9.699408270000049 ], [ 122.40 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-NER", "NAME_1": "Negros
Oriental" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
123.365728144338391, 10.392512629554176 ], [ 123.290375196000014,
10.093573309000078 ], [ 123.162364129000025, 9.890204169000071 ], [
123.170420769000089, 9.695990302000041 ], [ 123.160411004000025,
9.647406317000048 ], [ 123.136241082000083, 9.64484284100007 ], [
123.135427280000044, 9.618353583000044 ], [ 123.17741946700005,
9.589911200000074 ], [ 1 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-CEB", "NAME_1": "Cebu" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 123.934434565084814,
10.309298638739113 ], [ 123.889659050000091, 10.282212632000039 ], [
123.868662956730077, 10.248195704867896 ], [ 123.837164093248248,
10.353510764510133 ], [ 123.907100027744036, 10.435972538301996 ], [
123.935156889878499, 10.401065799147318 ], [ 123.914406767558262,
10.346204024695965 ], [ 123.934434565084814, 10.309298638739113 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-MDE", "NAME_1": "Mandaue" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 123.979665561000047,
10.377183335000041 ], [ 123.972911004000025, 10.326605536000045 ], [
123.934434565084814, 10.309298638739113 ], [ 123.914406767558262,
10.346204024695965 ], [ 123.935156889878499, 10.401065799147318 ], [
123.979665561000047, 10.377183335000041 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-CEB", "NAME_1": "Cebu" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
123.868662956730077, 10.248195704867896 ], [ 123.793630405000044,
10.226467190000051 ], [ 123.719493035000028, 10.156805731000077 ], [
123.696136915000011, 10.093898830000057 ], [ 123.652598504000025,
10.063625393000052 ], [ 123.629079623000052, 9.887518622000073 ], [
123.601817254000025, 9.867621161000045 ], [ 123.479502800000091,
9.548570054000038 ], [ [...]
-{ "type": "Feature", "properties": { "ISO": "PH-PLW", "NAME_1": "Puerto
Princesa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
118.382334831986896, 9.657782293817775 ], [ 118.53052819100003,
9.774237372000073 ], [ 118.667979363000086, 9.974351304000038 ], [
118.656504754000025, 9.996161200000074 ], [ 118.722504102000016,
10.035834052000041 ], [ 118.771657748000052, 10.130804755000042 ], [
118.77662194100003, 10.083075262000079 ], [ 118.76295006600003,
10.069240627000056 ], [ [...]
-{ "type": "Feature", "properties": { "ISO": "PH-LEY", "NAME_1": "Tacloban" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 124.975596550000091,
11.334418036000045 ], [ 124.973968946000014, 11.277085679000038 ], [
125.019379102000016, 11.25259023600006 ], [ 125.023448113000086,
11.227932033000059 ], [ 125.041758660000028, 11.248032945000091 ], [
125.038747591927745, 11.197943426947575 ], [ 124.985324049265387,
11.192093813678525 ], [ 124.93269104665444, 11.236539460327833 ], [ 12 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-LEY", "NAME_1": "Ormoc" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 124.622325065649193,
11.002020574889627 ], [ 124.549571160000028, 10.983303127000056 ], [
124.487649771719589, 11.06589157053952 ], [ 124.497956263170977,
11.109352288677144 ], [ 124.558762805459082, 11.111740763925127 ], [
124.604206292186632, 11.156765482241212 ], [ 124.670121349720489,
11.064484401334028 ], [ 124.622325065649193, 11.002020574889627 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-AKL", "NAME_1": "Aklan" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.853851758851533,
11.769435940316384 ], [ 121.889008009, 11.819281317000048 ], [ 121.896820509,
11.893784898000092 ], [ 121.963715040000011, 11.93390534100007 ], [
122.030284050000091, 11.896307684000078 ], [ 122.094411655000044,
11.834662177000041 ], [ 122.228688998000052, 11.799750067000048 ], [
122.322113477000016, 11.742254950000074 ], [ 122.387950066000 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-ANT", "NAME_1": "Antique" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
122.033213738000086, 10.460923570000091 ], [ 121.98210696700005,
10.430243231000077 ], [ 121.949717644000089, 10.433172919000071 ], [
121.929698113000086, 10.466620184000078 ], [ 121.932465040000011,
10.508693752000056 ], [ 121.984873894000089, 10.624904690000051 ], [
121.978037957000083, 10.710191148000092 ], [ 121.937022332000083,
10.77570221600007 ] [...]
-{ "type": "Feature", "properties": { "ISO": "PH-ILI", "NAME_1": "Iloilo" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 122.472105220784215,
10.687134476141249 ], [ 122.293304884, 10.658392645000049 ], [
122.259287957000083, 10.637884833000044 ], [ 122.226573113000086,
10.642238674000055 ], [ 122.101817254000025, 10.569322007000039 ], [
122.033213738000086, 10.460923570000091 ], [ 122.009638299667699,
10.47331452104828 ], [ 122.034753045916318, 10.637128811545381 ], [ 122.07599
[...]
-{ "type": "Feature", "properties": { "ISO": "PH-ILI", "NAME_1": "Iloilo" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 122.614756707000083,
10.761460679000038 ], [ 122.589854363000086, 10.698716539000088 ], [
122.472105220784215, 10.687134476141249 ], [ 122.48990658931757,
10.771770381797694 ], [ 122.532804333653075, 10.799527746308456 ], [
122.614756707000083, 10.761460679000038 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-CAP", "NAME_1": "Capiz" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 122.592201745314242,
11.554294992519885 ], [ 122.604177280000044, 11.517075914000088 ], [
122.62232506600003, 11.508734442000048 ], [ 122.654470248000052,
11.526068427000041 ], [ 122.660411004000025, 11.568752346000053 ], [
122.704274936000047, 11.542873440000051 ], [ 122.695648634, 11.561346747000073
], [ 122.730804884, 11.592230536000045 ], [ 122.724782748000 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-ROM", "NAME_1": "Romblon" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
122.687510613000086, 12.402818101000037 ], [ 122.670176629000025,
12.317531643000052 ], [ 122.611827019000089, 12.276516018000052 ], [
122.553477410000028, 12.317531643000052 ], [ 122.511973504000025,
12.377630927000041 ], [ 122.431895379000025, 12.409735419000071 ], [
122.423024936000047, 12.462876695000091 ], [ 122.481130405000044,
12.493353583000044 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-SCO", "NAME_1": "South
Cotabato" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 125.19677,
6.53614 ], [ 125.198708, 6.51024 ], [ 125.142128, 6.42226 ], [ 125.114532,
6.42225 ], [ 125.075447, 6.34252 ], [ 125.269623, 6.2741 ], [ 125.272583,
6.23984 ], [ 125.239937, 6.18763 ], [ 125.23983, 6.09726 ], [ 125.174042,
6.10631 ], [ 125.154037, 6.09114 ], [ 125.141678, 6.02002 ], [ 125.101624,
5.95476 ], [ 125.0513, 5.95953 ], [ 125.05143 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-NCO", "NAME_1": "Cotabato" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 124.80674, 7.60358 ], [
124.825073, 7.54148 ], [ 124.799812, 7.51733 ], [ 124.840637, 7.47724 ], [
124.840233, 7.45099 ], [ 124.892632, 7.41451 ], [ 124.933243, 7.43129 ], [
124.971909, 7.40071 ], [ 125.049103, 7.40556 ], [ 125.067787, 7.45176 ], [
125.155319, 7.46537 ], [ 125.193298, 7.57212 ], [ 125.216568, 7.57054 ], [
125.218941, 7.59196 ], [ 125.250427, [...]
{ "type": "Feature", "properties": { "ISO": "PH-NSA", "NAME_1": "Northern
Samar" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
124.370549351184806, 12.290048816351952 ], [ 124.276215040000011,
12.533270575000074 ], [ 124.283457879000025, 12.57062409100007 ], [
124.305023634, 12.582993882000039 ], [ 124.363047722000033, 12.54360586100006
], [ 124.40748131600003, 12.557074286000045 ], [ 124.53679446700005,
12.522528387000079 ], [ 124.679209832000083, 12.51593659100007 ], [...]
-{ "type": "Feature", "properties": { "ISO": "PH-MAS", "NAME_1": "Masbate" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
124.054942254000025, 11.799790757000039 ], [ 124.072520379000025,
11.744086005000042 ], [ 124.054860873000052, 11.725572007000039 ], [
124.007985873000052, 11.796698309000078 ], [ 123.89031009200005,
11.870794989000046 ], [ 123.855642123000052, 11.913397528000075 ], [
123.742930535000028, 11.926947333000044 ], [ 123.711680535000028,
11.954413153000075 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-MDR", "NAME_1": "Mindoro
Oriental" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
120.893385992225731, 13.504686871505649 ], [ 120.977386915000011,
13.530340887000079 ], [ 120.979665561000047, 13.514146226000037 ], [
120.957041863000086, 13.502997137000079 ], [ 121.026866082000083,
13.421576239000046 ], [ 121.10865319100003, 13.415961005000042 ], [
121.125254754000025, 13.404771226000037 ], [ 121.121592644000089,
13.37201569200004 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-MDC", "NAME_1": "Mindoro
Occidental" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
121.247813347000033, 12.219916083000044 ], [ 121.113617384, 12.251288153000075
], [ 121.093272332000083, 12.303697007000039 ], [ 121.101084832000083,
12.330511786000045 ], [ 121.115977410000028, 12.305243231000077 ], [
121.142588738000086, 12.310044664000088 ], [ 121.121592644000089,
12.310044664000088 ], [ 121.094411655000044, 12.3454043640 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-MAD", "NAME_1": "Marinduque"
}, "geometry": { "type": "Polygon", "coordinates": [ [ [ 122.101573113000086,
13.416693427000041 ], [ 122.128916863000086, 13.386297919000071 ], [
122.120290561000047, 13.356634833000044 ], [ 122.039561394000089,
13.269598700000074 ], [ 122.049082879000025, 13.24835846600007 ], [
122.008799675000091, 13.204779364000046 ], [ 121.993174675000091,
13.201605536000045 ], [ 121.909190300000091, 13.269598700000074 ], [ [...]
{ "type": "Feature", "properties": { "ISO": "PH-CAT", "NAME_1": "Catanduanes"
}, "geometry": { "type": "Polygon", "coordinates": [ [ [ 124.417979363000086,
13.872951565000051 ], [ 124.389984571000014, 13.845648505000042 ], [
124.417979363000086, 13.797796942000048 ], [ 124.389984571000014,
13.790350653000075 ], [ 124.389984571000014, 13.71157461100006 ], [
124.408702019000089, 13.667303778000075 ], [ 124.355316602000016,
13.65961334800005 ], [ 124.334727410000028, 13.557603257000039 ], [ [...]
{ "type": "Feature", "properties": { "ISO": "PH-BTN", "NAME_1": "Batanes" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
121.841644727000016, 20.34601471600007 ], [ 121.859385613000086,
20.347357489000046 ], [ 121.893239780000044, 20.313666083000044 ], [
121.869313998000052, 20.276190497000073 ], [ 121.85084069100003,
20.273423570000091 ], [ 121.841644727000016, 20.34601471600007 ] ] ], [ [ [
122.009776238000086, 20.488470770000049 ], [ 122.032399936000047, 20.4640567080
[...]
-{ "type": "Feature", "properties": { "ISO": "PH-LAP", "NAME_1": "Lapu-Lapu" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 123.991649441695316,
10.324283806534812 ], [ 124.009394380397609, 10.311757967450836 ], [
124.043840437878544, 10.324283806534812 ], [ 123.97599214284034,
10.255391691572939 ], [ 123.933195525970092, 10.254347871649275 ], [
123.947809004901387, 10.306538867832511 ], [ 123.991649441695316,
10.324283806534812 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-AGS", "NAME_1": "Agusan del
Sur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
125.767031691559282, 9.212771308049412 ], [ 125.802533400595962,
9.111020412761832 ], [ 125.802068312602501, 8.966688137547521 ], [
125.849248894720631, 8.950978502156147 ], [ 125.87379520108766,
8.879096584939418 ], [ 125.951516554845057, 8.80111684786425 ], [
125.952343378044361, 8.755124823252004 ], [ 126.032648554187404,
8.667636624330726 ], [ 125. [...]
-{ "type": "Feature", "properties": { "ISO": "PH-BUK", "NAME_1": "Bukidnon" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 125.231198765010959,
8.591672267960803 ], [ 125.320699447921129, 8.589837038548467 ], [
125.304079176113078, 8.441516476004551 ], [ 125.331761101893335,
8.266472479721131 ], [ 125.32385460780381, 8.213349107375393 ], [
125.36013146409573, 8.124155585212065 ], [ 125.364885695018756,
8.026848863384316 ], [ 125.440539992126901, 7.805260321506637 ], [ 125.434803
[...]
-{ "type": "Feature", "properties": { "ISO": "PH-NCO", "NAME_1": "Cotabato" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 124.523076613095213,
7.690797024363178 ], [ 124.591754592100642, 7.624754542787912 ], [
124.726733433301206, 7.628320217104317 ], [ 124.808640578100153,
7.611111964945223 ], [ 124.818149041744846, 7.572251288066468 ], [
124.862177361595968, 7.523727117912131 ], [ 124.889669223755618,
7.415671698090364 ], [ 124.932664015731689, 7.426006984934418 ], [ 124.9936
[...]
-{ "type": "Feature", "properties": { "ISO": "PH-SCO", "NAME_1": "South
Cotabato" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
124.633974236821473, 6.639440008849306 ], [ 124.672989944230494,
6.590502428444324 ], [ 124.751693149918879, 6.636701157732205 ], [
124.830241326875694, 6.536758938474236 ], [ 124.855666132386091,
6.531487941815044 ], [ 124.925842727260033, 6.561822007879357 ], [
125.176501301194094, 6.563329784242114 ], [ 125.158696731069199,
6.464566961995672 ], [ 12 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-MNL", "NAME_1": "Muntinlupa"
}, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.014842140552332,
14.359142183464996 ], [ 121.014195879636077, 14.397060106438744 ], [
121.055849719488947, 14.464898571012213 ], [ 121.134708081612644,
14.454146329689365 ], [ 121.14343794190745, 14.388166002059336 ], [
121.06711096449942, 14.384989194595619 ], [ 121.014842140552332,
14.359142183464996 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-MNL", "NAME_1": "Caloocan" },
"geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
121.058280397222461, 14.766693378896321 ], [ 121.112828670706563,
14.743534276785454 ], [ 121.016568775928249, 14.697994282010484 ], [
121.00903109740716, 14.739477542954205 ], [ 121.058280397222461,
14.766693378896321 ] ] ], [ [ [ 120.968654657286606, 14.63648291315593 ], [
120.971676268744773, 14.650727650960334 ], [ 121.035561759667416, 14.67921712
[...]
-{ "type": "Feature", "properties": { "ISO": "PH-MNL", "NAME_1": "Malabon" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.933964271633727,
14.693431050002914 ], [ 120.963474752957381, 14.685692007879823 ], [
120.972971244827022, 14.667130682534946 ], [ 121.008367260140858,
14.660655802123529 ], [ 120.971676268744773, 14.650727650960334 ], [
120.968654657286606, 14.63648291315593 ], [ 120.933964271633727,
14.693431050002914 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-MNL", "NAME_1": "Valenzuela"
}, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.967167094985371,
14.707125524123626 ], [ 121.00903109740716, 14.739477542954205 ], [
121.01095721230547, 14.703174186339595 ], [ 121.035561759667416,
14.679217127468462 ], [ 120.994122522336511, 14.660224143729238 ], [
120.972971244827022, 14.667130682534946 ], [ 120.931883975165306,
14.721024934852835 ], [ 120.967167094985371, 14.707125524123626 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-MNL", "NAME_1": "Quezon City"
}, "geometry": { "type": "Polygon", "coordinates": [ [ [ 121.129255640435417,
14.761230019050117 ], [ 121.154267908936845, 14.758426503080614 ], [
121.137433218068509, 14.738570201653488 ], [ 121.146066393149454,
14.718713900226305 ], [ 121.126210091722328, 14.663461583485287 ], [
121.095130663049645, 14.644468599746062 ], [ 121.095993980737603,
14.584468037070224 ], [ 120.999302426665622, 14.618137417907519 ], [...]
-{ "type": "Feature", "properties": { "ISO": "PH-NUE", "NAME_1": "Nueva Ecija"
}, "geometry": { "type": "Polygon", "coordinates": [ [ [ 120.862008091100506,
15.165069484868809 ], [ 120.845368279722265, 15.166516424793144 ], [
120.839270460763146, 15.196023668557416 ], [ 120.779635858308211,
15.22563426420993 ], [ 120.782219679794366, 15.288524481719435 ], [
120.744185826114972, 15.340614325290858 ], [ 120.755244581572128,
15.426087144406154 ], [ 120.732610304921536, 15.551815904380476 ], [...]
-{ "type": "Feature", "properties": { "ISO": "PH-LAG", "NAME_1": "Laguna" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.466208938291857,
14.562884019282023 ], [ 121.590335727811521, 14.313286851307112 ], [
121.594469842908893, 14.219494126952384 ], [ 121.503726028033725,
14.074541734113723 ], [ 121.416496209732259, 14.050977281476321 ], [
121.264464146003434, 13.961525376894599 ], [ 121.263740675591634,
13.984521388751091 ], [ 121.223743117151116, 14.005915431951621 ], [ 12 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-RIZ", "NAME_1": "Rizal" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.342082146973439,
14.889272365926956 ], [ 121.354587844153684, 14.747162176992845 ], [
121.460524529583381, 14.571513983783291 ], [ 121.385903762148814,
14.532239894855252 ], [ 121.366783482072037, 14.501285712065965 ], [
121.371744418569961, 14.368399765936431 ], [ 121.388384230847578,
14.34509369571748 ], [ 121.309215936266355, 14.290549220969751 ], [ 121. [...]
-{ "type": "Feature", "properties": { "ISO": "PH-MNL", "NAME_1": "Taguig" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.125346774034369,
14.524899133688052 ], [ 121.134708081612644, 14.454146329689365 ], [
121.055849719488947, 14.464898571012213 ], [ 121.057144695571196,
14.502021221702023 ], [ 121.032108489814959, 14.527489085852608 ], [
121.065346211358474, 14.557273537543722 ], [ 121.069662798899003,
14.53137401409947 ], [ 121.09167739409645, 14.543028799739318 ], [ 121. [...]
-{ "type": "Feature", "properties": { "ISO": "PH-MNL", "NAME_1": "Marikina" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.126210091722328,
14.663461583485287 ], [ 121.149951321396316, 14.65569172699162 ], [
121.147361369231703, 14.625043957612547 ], [ 121.092109052490741,
14.608640926037879 ], [ 121.095130663049645, 14.644468599746062 ], [
121.126210091722328, 14.663461583485287 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-MNL", "NAME_1": "Pasig" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.118440234329341,
14.609072584432226 ], [ 121.12577843242866, 14.594827846627823 ], [
121.125346774034369, 14.524899133688052 ], [ 121.064482893670515,
14.564611736542417 ], [ 121.071389433375657, 14.583604720281585 ], [
121.095993980737603, 14.584468037070224 ], [ 121.096857298425562,
14.615115806449296 ], [ 121.118440234329341, 14.609072584432226 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-QUI", "NAME_1": "Quirino" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 122.037543572977484,
16.507623196353393 ], [ 121.872385695343496, 16.281900540277718 ], [
121.447708774939997, 15.924299628425103 ], [ 121.321618279759718,
16.106200670224723 ], [ 121.287615188390191, 16.259627997034443 ], [
121.421663852704569, 16.346341051398383 ], [ 121.430655552411736,
16.402616685111923 ], [ 121.389314405935011, 16.406802476153359 ], [ 1 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-ISA", "NAME_1": "Santiago" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.5698718605978,
16.610614325091035 ], [ 121.540519647363794, 16.629579576436299 ], [
121.487989206136945, 16.629470289921926 ], [ 121.503633900583964,
16.679949572714577 ], [ 121.476326192599686, 16.72261786672118 ], [
121.390071551460892, 16.694342895608145 ], [ 121.335364211289289,
16.764300035218412 ], [ 121.341151971885893, 16.780939845697333 ], [ 121 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-NUV", "NAME_1": "Nueva
Vizcaya" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
121.447708774939997, 15.924299628425103 ], [ 121.267254673064713,
15.777590237299592 ], [ 121.207413365034768, 15.898203030245611 ], [
121.184779086585536, 16.049821681925039 ], [ 121.167519159381641,
16.080930894345272 ], [ 121.094965447697177, 16.117827867362166 ], [
121.013730097366079, 16.13581126587718 ], [ 120.944380323892801,
16.13291738512919 ], [...]
-{ "type": "Feature", "properties": { "ISO": "PH-BEN", "NAME_1": "Benguet" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.526007928922695,
16.232084458930615 ], [ 120.488490839180827, 16.344118964218808 ], [
120.471954379690828, 16.463749905233897 ], [ 120.482909784159119,
16.516201484011276 ], [ 120.618818801346606, 16.69391673387014 ], [
120.637835727736615, 16.860108141177761 ], [ 120.662227003573321,
16.895764878946011 ], [ 120.773538039348978, 16.920982977982021 ], [ 12 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-IFU", "NAME_1": "Ifugao" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.563463983276165,
17.086554266765972 ], [ 121.57100874215962, 16.910957750399859 ], [
121.524810011972477, 16.845432034560758 ], [ 121.426418085426235,
16.831634426187804 ], [ 121.409571567573721, 16.804814358495832 ], [
121.341151971885893, 16.780939845697333 ], [ 121.320688103772909,
16.708489487699694 ], [ 121.280173781394865, 16.664874578998592 ], [ 120 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-MOU", "NAME_1": "Mountain
Province" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
121.570595331009713, 17.250058498900614 ], [ 121.563463983276165,
17.086554266765972 ], [ 121.375361769729807, 17.073325100073305 ], [
121.225190057075451, 17.009866440883513 ], [ 121.053107538182303,
17.004750474754587 ], [ 120.974456008437983, 16.950955307941115 ], [
120.945620559141389, 16.871890367046774 ], [ 120.919368931331064,
16.844708564148 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-TAR", "NAME_1": "Tarlac" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.763616163655001,
15.259378974060382 ], [ 120.747906529162947, 15.273745022314927 ], [
120.556186965356119, 15.254211331088072 ], [ 120.380590448090629,
15.168996894391171 ], [ 120.308140090093048, 15.273745022314927 ], [
120.163652785247791, 15.343198146777013 ], [ 120.143809034759101,
15.406450100391794 ], [ 120.246955194026896, 15.614034329220885 ], [ 12 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-APA", "NAME_1": "Apayao" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.938489211407955,
17.967068996836701 ], [ 120.941383091256625, 18.09791372293995 ], [
120.982104120109057, 18.170209052205962 ], [ 120.909240350062078,
18.240695706341739 ], [ 120.953682081962484, 18.291493638720453 ], [
120.957092726647943, 18.446781318403112 ], [ 120.99946740099972,
18.468175360704322 ], [ 121.059205357141423, 18.531685695838178 ], [ 121. [...]
-{ "type": "Feature", "properties": { "ISO": "PH-KAL", "NAME_1": "Kalinga" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.42879520133738,
17.717626858492736 ], [ 121.566357863124836, 17.563424384427776 ], [
121.637878046034984, 17.529007880109589 ], [ 121.670124139117661,
17.489733792080813 ], [ 121.612970005361376, 17.420177313931902 ], [
121.570595331009713, 17.250058498900614 ], [ 121.424247675090101,
17.298324285737181 ], [ 121.341151971885893, 17.257499904996621 ], [ 12 [...]
-{ "type": "Feature", "properties": { "ISO": "PH-ABR", "NAME_1": "Abra" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.888259718910831,
17.945829983267117 ], [ 120.938489211407955, 17.967068996836701 ], [
120.964224074381491, 17.95952423795319 ], [ 121.025615676022539,
17.838808092219665 ], [ 121.084733513640685, 17.834725653965734 ], [
121.10292361863003, 17.816225491513194 ], [ 121.128038364878535,
17.697886460791494 ], [ 121.09951297394457, 17.661247870193051 ], [ 121.117
[...]
-{ "type": "Feature", "properties": { "ISO": "PH-CAS", "NAME_1": "Naga" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 123.293391049657203,
13.663276951969749 ], [ 123.36830571733492, 13.619905301788208 ], [
123.234247891626865, 13.568647898581617 ], [ 123.139618838238789,
13.619905301788208 ], [ 123.293391049657203, 13.663276951969749 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-PAM", "NAME_1": "Angeles" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.636957883299601,
15.17892936140089 ], [ 120.636957883299601, 15.116278082967142 ], [
120.592579894446544, 15.103225733780562 ], [ 120.511655326432106,
15.14499325243662 ], [ 120.5690856644718, 15.176318892103154 ], [
120.636957883299601, 15.17892936140089 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-BEN", "NAME_1": "Baguio" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 120.563864724977066,
16.434565399373639 ], [ 120.644789292991391, 16.431954929176641 ], [
120.65262070268318, 16.353640831359257 ], [ 120.584748484754755,
16.358861771753368 ], [ 120.563864724977066, 16.434565399373639 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-MNL", "NAME_1": "Makati" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.074411044833823,
14.530510697310831 ], [ 121.065346211358474, 14.557273537543722 ], [
121.032108489814959, 14.527489085852608 ], [ 121.00620896637065,
14.557705196837333 ], [ 121.026496926192181, 14.57497154520064 ], [
121.064482893670515, 14.564611736542417 ], [ 121.079590949162935,
14.556841879149374 ], [ 121.074411044833823, 14.530510697310831 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-MNL", "NAME_1": "Pateros" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.077432655392727,
14.534827283951984 ], [ 121.080454266850893, 14.547777045674081 ], [
121.090814076408492, 14.54734538727979 ], [ 121.084770854391422,
14.535690601639942 ], [ 121.077432655392727, 14.534827283951984 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-MNL", "NAME_1": "Mandaluyong
City" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
121.044626593142766, 14.562453442772153 ], [ 121.026496926192181,
14.57497154520064 ], [ 121.03728839414407, 14.588784624610696 ], [
121.071389433375657, 14.593964528939864 ], [ 121.064482893670515,
14.564611736542417 ], [ 121.044626593142766, 14.562453442772153 ] ] ] } },
-{ "type": "Feature", "properties": { "ISO": "PH-MNL", "NAME_1": "San Juan" },
"geometry": { "type": "Polygon", "coordinates": [ [ [ 121.034698441979458,
14.606914290661962 ], [ 121.069662798899003, 14.599576092562586 ], [
121.071389433375657, 14.593964528939864 ], [ 121.044626593142766,
14.584899696363891 ], [ 121.034698441979458, 14.606914290661962 ] ] ] } }
+{ "type": "Feature", "properties": { "ISO": "PH-AGS", "NAME_1": "Agusan del
Sur" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.351173,
8.00093 ], [ 126.16288, 8.00002 ], [ 126.052094, 7.93625 ], [ 125.99807,
7.96253 ], [ 125.98082, 7.99822 ], [ 125.381653, 7.98555 ], [ 125.387863,
8.07751 ], [ 125.368408, 8.09991 ], [ 125.372177, 8.15252 ], [ 125.353958,
8.18747 ], [ 125.363487, 8.23666 ], [ 125.344337, 8.2507 ], [ 125.329033,
8.30081 ], [ 125.277893, 8.33649 ], [ 125.2611 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-DAO", "NAME_1": "Davao
Oriental" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 126.351173,
8.00093 ], [ 126.349693, 7.93043 ], [ 126.360184, 7.88346 ], [ 126.381943,
7.86861 ], [ 126.384003, 7.82949 ], [ 126.425781, 7.82718 ], [ 126.423668,
7.81099 ], [ 126.447502, 7.81194 ], [ 126.506111, 7.73611 ], [ 126.531281,
7.74098 ], [ 126.570267, 7.71806 ], [ 126.552147, 7.69882 ], [ 126.559448,
7.57778 ], [ 126.599152, 7.50152 ], [ 126. [...]
+{ "type": "Feature", "properties": { "ISO": "PH-DAV", "NAME_1": "Davao del
Norte" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
125.684753, 6.96153 ], [ 125.704842, 6.95892 ], [ 125.724586, 6.92097 ], [
125.71347, 6.89736 ], [ 125.68708, 6.90681 ], [ 125.668472, 6.94696 ], [
125.684753, 6.96153 ] ] ], [ [ [ 125.707413, 7.19745 ], [ 125.733047, 7.16889
], [ 125.761902, 7.16291 ], [ 125.79747, 7.1141 ], [ 125.776207, 7.02709 ], [
125.793266, 6.93835 ], [ 125.769089, 6.895 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-DVO", "NAME_1": "Davao
Occidental" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
125.444580447019689, 6.578408846529513 ], [ 125.419571089461385,
6.331930405345076 ], [ 125.468423868064178, 6.30099819052505 ], [
125.50375057835862, 6.234301508711184 ], [ 125.509762130629952,
6.138297219909049 ], [ 125.536985472880076, 6.10719057501413 ], [
125.537526525442104, 6.074682090880017 ], [ 125.479917597921883,
5.904708731739376 ] [...]
]
}
diff --git
a/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/philippines_regions.geojson
b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/philippines_regions.geojson
new file mode 100644
index 0000000000..af1f927ed2
--- /dev/null
+++
b/superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/philippines_regions.geojson
@@ -0,0 +1,23 @@
+{
+"type": "FeatureCollection",
+"crs": { "type": "name", "properties": { "name":
"urn:ogc:def:crs:OGC:1.3:CRS84" } },
+"features": [
+{ "type": "Feature", "properties": { "ISO": "PH-00", "NAME_1": "National
Capital Region" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
120.984385612905612, 14.534002996840798 ], [ 120.916213975467514,
14.694389024837836 ], [ 120.954849737425434, 14.679156144440526 ], [
120.931883975165306, 14.721024934852835 ], [ 120.967167094985371,
14.707125524123626 ], [ 120.989619990070423, 14.715679007580093 ], [
121.040369853685775, 14.763830670449067 ], [ 121.154267908936845, 14.7584265
[...]
+{ "type": "Feature", "properties": { "ISO": "PH-01", "NAME_1": "Ilocos (Region
I)" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
119.891774936000047, 15.82298411700009 ], [ 119.895030144000089,
15.874009507000039 ], [ 119.854014519000089, 15.949164130000042 ], [
119.828298373000052, 15.95571523600006 ], [ 119.770843946000014,
15.914984442000048 ], [ 119.755869988000086, 15.944566148000092 ], [
119.757823113000086, 16.058986721000053 ], [ 119.778330925000091, 16.13784414
[...]
+{ "type": "Feature", "properties": { "ISO": "PH-02", "NAME_1": "Cagayan Valley
(Region II)" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
121.194804315067017, 15.942334702884239 ], [ 121.184779086585536,
16.049821681925039 ], [ 121.167519159381641, 16.080930894345272 ], [
121.094965447697177, 16.117827867362166 ], [ 121.013730097366079,
16.13581126587718 ], [ 120.944380323892801, 16.13291738512919 ], [
120.886502719724717, 16.100671292046457 ], [ 120.86376509028662, 16. [...]
+{ "type": "Feature", "properties": { "ISO": "PH-03", "NAME_1": "Central Luzon
(Region III)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
120.539317254000025, 14.702826239000046 ], [ 120.582204623000052,
14.648260809000078 ], [ 120.574961785000028, 14.621649481000077 ], [
120.597911004000025, 14.505601304000038 ], [ 120.588389519000089,
14.466986395000049 ], [ 120.564626498000052, 14.441229559000078 ], [
120.49146569100003, 14.442084052000041 ], [ 120.467051629000025, 14.42104 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-05", "NAME_1": "Bicol (Region
V)" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
124.072520379000025, 11.744086005000042 ], [ 124.054860873000052,
11.725572007000039 ], [ 124.007985873000052, 11.796698309000078 ], [
123.89031009200005, 11.870794989000046 ], [ 123.855642123000052,
11.913397528000075 ], [ 123.742930535000028, 11.926947333000044 ], [
123.711680535000028, 11.954413153000075 ], [ 123.722422722000033, 11.97581614
[...]
+{ "type": "Feature", "properties": { "ISO": "PH-06", "NAME_1": "Western
Visayas (Region VI)" }, "geometry": { "type": "MultiPolygon", "coordinates": [
[ [ [ 122.551768425000091, 9.49095286700009 ], [ 122.529795769000089,
9.537909247000073 ], [ 122.496592644000089, 9.561712958000044 ], [
122.461436394000089, 9.655259507000039 ], [ 122.443614129000025,
9.672756252000056 ], [ 122.42310631600003, 9.658433335000041 ], [
122.430430535000028, 9.713690497000073 ], [ 122.402598504000025, 9.699408 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-07", "NAME_1": "Central
Visayas (Region VII)" }, "geometry": { "type": "MultiPolygon", "coordinates": [
[ [ [ 123.722422722000033, 9.149115302000041 ], [ 123.698008660000028,
9.124009507000039 ], [ 123.653005405000044, 9.122951565000051 ], [
123.632334832000083, 9.098334052000041 ], [ 123.561208530000044,
9.114243882000039 ], [ 123.471202019000089, 9.185451565000051 ], [
123.500010613000086, 9.220282294000071 ], [ 123.517588738000086, 9.209 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-08", "NAME_1": "Eastern
Visayas (Region VIII)" }, "geometry": { "type": "MultiPolygon", "coordinates":
[ [ [ [ 124.389984571000014, 10.641302802000041 ], [ 124.300629102000016,
10.590073960000041 ], [ 124.284353061000047, 10.60382721600007 ], [
124.340993686000047, 10.711818752000056 ], [ 124.379730665000011,
10.691310940000051 ], [ 124.389984571000014, 10.641302802000041 ] ] ], [ [ [
124.462412957000083, 10.631048895000049 ], [ 124.4091903 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-09", "NAME_1": "Zamboanga
Peninsula (Region IX)" }, "geometry": { "type": "MultiPolygon", "coordinates":
[ [ [ [ 122.354258660000028, 7.43040599200009 ], [ 122.379079623000052,
7.391587632000039 ], [ 122.372569207000083, 7.372748114000046 ], [
122.34498131600003, 7.331773179000038 ], [ 122.300140821000014,
7.32094961100006 ], [ 122.280446811000047, 7.294501044000071 ], [
122.243500196000014, 7.099269924000055 ], [ 122.20240319100003, 7.0426 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-10", "NAME_1": "Northern
Mindanao (Region X)" }, "geometry": { "type": "MultiPolygon", "coordinates": [
[ [ [ 123.740977410000028, 8.000433661000045 ], [ 124.000254754000025,
8.181341864000046 ], [ 124.155772332000083, 8.190252997000073 ], [
124.232269727000016, 8.212876695000091 ], [ 124.27466881600003,
8.281073309000078 ], [ 124.261729363000086, 8.32453034100007 ], [
124.321787957000083, 8.514553127000056 ], [ 124.405772332000083, 8.60789 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-11", "NAME_1": "Davao (Region
XI)" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
125.424571160000028, 5.407375393000052 ], [ 125.418711785000028,
5.368475653000075 ], [ 125.363780144000089, 5.367173570000091 ], [
125.334239129000025, 5.387681382000039 ], [ 125.376800977000016,
5.431219794000071 ], [ 125.418711785000028, 5.425482489000046 ], [
125.424571160000028, 5.407375393000052 ] ] ], [ [ [ 125.480642123000052,
6.913234 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-12", "NAME_1": "SOCCSKSARGEN
(Region XII)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [
125.300140821000014, 5.67133209800005 ], [ 125.278656446000014,
5.716498114000046 ], [ 125.237803582000083, 5.72797272300005 ], [
125.220957879000025, 5.766424872000073 ], [ 125.181162957000083,
5.798325914000088 ], [ 125.208994988000086, 5.876857815000051 ], [
125.278005405000044, 5.97923411700009 ], [ 125.280772332000083,
6.019354559000078 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-13", "NAME_1": "Caraga
Administrative Region (Region XIII)" }, "geometry": { "type": "MultiPolygon",
"coordinates": [ [ [ [ 125.675440948241089, 7.99671591900443 ], [
125.374290805875944, 7.997755032568705 ], [ 125.36013146409573,
8.124155585212065 ], [ 125.32385460780381, 8.213349107375393 ], [
125.331761101893335, 8.266472479721131 ], [ 125.304079176113078,
8.441516476004551 ], [ 125.320699447921129, 8.589837038548467 ], [
125.29101719518 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-14", "NAME_1": "Bangsamoro
Autonomous Region in Muslim Mindanao (BARMM)" }, "geometry": { "type":
"MultiPolygon", "coordinates": [ [ [ [ 119.50359134200005, 4.764227606000077 ],
[ 119.456553582000083, 4.65570709800005 ], [ 119.462738477000016,
4.775783596000053 ], [ 119.435394727000016, 4.902777411000045 ], [
119.475922071000014, 4.883775132000039 ], [ 119.50359134200005,
4.764227606000077 ] ] ], [ [ [ 119.833994988000086, 4.796616929000038 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-15", "NAME_1": "Cordillera
Administrative Region (CAR)" }, "geometry": { "type": "Polygon", "coordinates":
[ [ [ 120.471954379690828, 16.463749905233897 ], [ 120.514329054941868,
16.566482652452407 ], [ 120.618818801346606, 16.69391673387014 ], [
120.637835727736615, 16.860108141177761 ], [ 120.662227003573321,
16.895764878946011 ], [ 120.773538039348978, 16.920982977982021 ], [
120.788110793178475, 16.958861802929846 ], [ 120.7913147322890 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-40", "NAME_1": "CALABARZON
(Region IV-A)" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
121.043467644000089, 13.567572333000044 ], [ 121.085785352000016,
13.57062409100007 ], [ 121.094248894000089, 13.537054755000042 ], [
121.072113477000016, 13.535834052000041 ], [ 121.043467644000089,
13.567572333000044 ] ] ], [ [ [ 120.923024936000047, 13.629421291000142 ], [
120.840830925000091, 13.655625718000181 ], [ 120.826426629000 [...]
+{ "type": "Feature", "properties": { "ISO": "PH-41", "NAME_1": "MIMAROPA
(Region IV-B)" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [
118.518728061000047, 6.970933335000041 ], [ 118.445160352000016,
6.982326565000051 ], [ 118.431407097000033, 7.027085679000038 ], [
118.524587436000047, 7.043646552000041 ], [ 118.544444207000083,
7.013088283000059 ], [ 118.520518425000091, 7.013373114000046 ], [
118.530772332000083, 6.978949286000045 ], [ 118.518728061000047, 6.970933335
[...]
+]
+}