feat(maps): Consolidating all country maps (and TS) into the Jupyter notebook workflow. (#26300)

This commit is contained in:
Evan Rusackas 2024-01-30 16:26:49 -07:00 committed by GitHub
parent 55846992d2
commit 73d118c0e2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
46 changed files with 2791 additions and 2419 deletions

View File

@ -72,6 +72,7 @@
"tdd": "cross-env NODE_ENV=test jest --watch",
"test": "cross-env NODE_ENV=test jest",
"type": "tsc --noEmit",
"update-maps": "jupyter nbconvert --to notebook --execute --inplace 'plugins/legacy-plugin-chart-country-map/scripts/Country Map GeoJSON Generator.ipynb' -Xfrozen_modules=off",
"validate-release": "../RELEASING/validate_this_release.sh"
},
"browserslist": [

View File

@ -17,9 +17,12 @@
* under the License.
*/
import austria from './countries/austria.geojson';
import afghanistan from './countries/afghanistan.geojson';
import albania from './countries/albania.geojson';
import algeria from './countries/algeria.geojson';
import argentina from './countries/argentina.geojson';
import australia from './countries/australia.geojson';
import austria from './countries/austria.geojson';
import belgium from './countries/belgium.geojson';
import bolivia from './countries/bolivia.geojson';
import brazil from './countries/brazil.geojson';
@ -29,14 +32,14 @@ import canada from './countries/canada.geojson';
import chile from './countries/chile.geojson';
import china from './countries/china.geojson';
import colombia from './countries/colombia.geojson';
import costa_rica from './countries/costa rica.geojson';
import costa_rica from './countries/costa_rica.geojson';
import cuba from './countries/cuba.geojson';
import cyprus from './countries/cyprus.geojson';
import denmark from './countries/denmark.geojson';
import dominican_republic from './countries/dominican republic.geojson';
import dominican_republic from './countries/dominican_republic.geojson';
import ecuador from './countries/ecuador.geojson';
import egypt from './countries/egypt.geojson';
import el_salvador from './countries/el salvador.geojson';
import el_salvador from './countries/el_salvador.geojson';
import estonia from './countries/estonia.geojson';
import ethiopia from './countries/ethiopia.geojson';
import france from './countries/france.geojson';
@ -62,35 +65,35 @@ import kyrgyzstan from './countries/kyrgyzstan.geojson';
import latvia from './countries/latvia.geojson';
import liechtenstein from './countries/liechtenstein.geojson';
import lithuania from './countries/lithuania.geojson';
import nigeria from './countries/nigeria.geojson';
import norway from './countries/norway.geojson';
import malaysia from './countries/malaysia.geojson';
import mexico from './countries/mexico.geojson';
import morocco from './countries/morocco.geojson';
import myanmar from './countries/myanmar.geojson';
import netherlands from './countries/netherlands.geojson';
import nicaragua from './countries/nicaragua.geojson';
import nigeria from './countries/nigeria.geojson';
import norway from './countries/norway.geojson';
import oman from './countries/oman.geojson';
import pakistan from './countries/pakistan.geojson';
import panama from './countries/panama.geojson';
import papua_new_guinea from './countries/papua new guinea.geojson';
import papua_new_guinea from './countries/papua_new_guinea.geojson';
import paraguay from './countries/paraguay.geojson';
import philippines from './countries/philippines.geojson';
import peru from './countries/peru.geojson';
import poland from './countries/poland.geojson';
import philippines from './countries/philippines.geojson';
import portugal from './countries/portugal.geojson';
import puerto_rico from './countries/puerto rico.geojson';
import poland from './countries/poland.geojson';
import puerto_rico from './countries/puerto_rico.geojson';
import qatar from './countries/qatar.geojson';
import russia from './countries/russia.geojson';
import rwanda from './countries/rwanda.geojson';
import saint_barthelemy from './countries/saint barthelemy.geojson';
import saint_martin from './countries/saint martin.geojson';
import saint_barthelemy from './countries/saint_barthelemy.geojson';
import saint_martin from './countries/saint_martin.geojson';
import saudi_arabia from './countries/saudi_arabia.geojson';
import singapore from './countries/singapore.geojson';
import slovenia from './countries/slovenia.geojson';
import sweden from './countries/sweden.geojson';
import spain from './countries/spain.geojson';
import srilanka from './countries/srilanka.geojson';
import sri_lanka from './countries/sri_lanka.geojson';
import sweden from './countries/sweden.geojson';
import switzerland from './countries/switzerland.geojson';
import syria from './countries/syria.geojson';
import tajikistan from './countries/tajikistan.geojson';
@ -99,21 +102,24 @@ import thailand from './countries/thailand.geojson';
import timorleste from './countries/timorleste.geojson';
import turkey from './countries/turkey.geojson';
import turkmenistan from './countries/turkmenistan.geojson';
import united_arab_emirates from './countries/united_arab_emirates.geojson';
import uganda from './countries/uganda.geojson';
import uk from './countries/uk.geojson';
import ukraine from './countries/ukraine.geojson';
import united_arab_emirates from './countries/united_arab_emirates.geojson';
import uruguay from './countries/uruguay.geojson';
import usa from './countries/usa.geojson';
import uzbekistan from './countries/uzbekistan.geojson';
import zambia from './countries/zambia.geojson';
import venezuela from './countries/venezuela.geojson';
import vietnam from './countries/vietnam.geojson';
import zambia from './countries/zambia.geojson';
export const countries = {
austria,
afghanistan,
albania,
algeria,
argentina,
australia,
austria,
belgium,
bolivia,
brazil,
@ -169,10 +175,10 @@ export const countries = {
panama,
papua_new_guinea,
paraguay,
philippines,
peru,
poland,
philippines,
portugal,
poland,
puerto_rico,
qatar,
russia,
@ -183,7 +189,7 @@ export const countries = {
singapore,
slovenia,
spain,
srilanka,
sri_lanka,
sweden,
switzerland,
syria,
@ -193,16 +199,16 @@ export const countries = {
timorleste,
turkey,
turkmenistan,
united_arab_emirates,
uganda,
uk,
ukraine,
united_arab_emirates,
uruguay,
usa,
uzbekistan,
zambia,
venezuela,
vietnam,
zambia,
};
export const countryOptions = Object.keys(countries).map(x => {
@ -215,7 +221,13 @@ export const countryOptions = Object.keys(countries).map(x => {
if (x === 'france_regions') {
return [x, 'France (regions)'];
}
return [x, x[0].toUpperCase() + x.slice(1)];
return [
x,
x
.split('_')
.map(e => e[0].toUpperCase() + e.slice(1))
.join(' '),
];
});
export default countries;

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,54 @@
{
"type": "FeatureCollection",
"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
"features": [
{ "type": "Feature", "properties": { "ISO": "DZ-01", "NAME_1": "Adrar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.821225545999908, 24.99475453700002 ], [ -5.661524745999969, 25.508881108000097 ], [ -2.97425737068113, 27.203275255048936 ], [ -3.750644089553077, 28.566887112050551 ], [ -3.552620002111439, 28.582441717811037 ], [ -3.022678188047962, 28.331035874705833 ], [ -2.812923549781999, 28.294345608163269 ], [ -2.569682583184658, 28.38108450004961 ], [ -2.114154831880001, 28.675795193493343 ], [ -1.876029832310905, 28.779044705548699 ], [ -0.958359747704208, 28.92301524555711 ], [ -0.825654669627284, 29.008203843832291 ], [ -0.199232956935418, 29.745032253835404 ], [ 0.399128451916511, 30.708694363054406 ], [ 0.750166456816544, 31.029940904249315 ], [ 1.033043246648504, 31.201790880045053 ], [ 2.085382114093306, 31.658584703221436 ], [ 2.071739536250561, 30.859692898008802 ], [ 1.943426954790141, 30.094804185964392 ], [ 2.134112989822597, 28.491517034883259 ], [ 2.06553836360456, 28.073299669544099 ], [ 1.939396193379594, 26.808260606241959 ], [ 1.763592969639831, 26.60943553312336 ], [ 1.628872510857661, 26.583959052568218 ], [ 1.514202508139249, 26.461640937279412 ], [ 1.393951450399129, 26.425777493036833 ], [ 1.067769810228526, 26.41551972145794 ], [ 0.864371372440871, 26.318910630721007 ], [ 0.825407341875291, 26.268836167854829 ], [ 1.091230910078423, 25.957718207029586 ], [ 1.117120801783585, 25.692798977290977 ], [ 1.307186720091067, 25.541387031186503 ], [ 1.300055373256839, 22.270113837283759 ], [ 1.368991732882137, 22.177897244062535 ], [ 3.57319827587969, 20.969004625063405 ], [ 3.677636346340307, 20.878390001397406 ], [ 3.75148196831816, 20.778292752508492 ], [ 3.782229444633174, 20.549417833266375 ], [ 3.790290968000079, 19.060770275000024 ], [ 3.333057088000089, 18.975561218000067 ], [ 3.158597452000066, 19.081549581000061 ], [ 3.102683553000077, 19.153560690000049 ], [ 3.192910604000105, 19.325798238000047 ], [ 3.260813436000149, 19.388326722000031 ], [ 3.199421834000077, 19.553768819000069 ], [ 3.198801717000094, 19.82052256200005 ], [ 2.946000610000112, 19.941652120000057 ], [ 2.400400838000081, 20.056554667000071 ], [ 2.316478312000072, 20.180164693000066 ], [ 2.200826456000129, 20.273905742000053 ], [ 2.07122196500012, 20.213263448000063 ], [ 1.955260050000106, 20.254914653000085 ], [ 1.891387980000076, 20.23178944900009 ], [ 1.855007771000089, 20.294834697000042 ], [ 1.778113241000085, 20.304291484000103 ], [ 1.659154093000069, 20.39751576700003 ], [ 1.643961222000144, 20.522676087000022 ], [ 1.559728637000148, 20.597503561000067 ], [ 1.363978312000057, 20.65770660500003 ], [ 1.296695597000081, 20.733464254000111 ], [ 1.154585408000059, 20.73878692600006 ], [ 1.180113566000102, 20.995308736000041 ], [ 1.146523885000079, 21.101710511000064 ], [ -4.821225545999908, 24.99475453700002 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-11", "NAME_1": "Tamanghasset" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.968860717000069, 23.517351176000105 ], [ 7.482726278000058, 20.872577210000102 ], [ 5.794302205000122, 19.449795838000014 ], [ 3.790290968000079, 19.060770275000024 ], [ 3.782229444633174, 20.549417833266375 ], [ 3.75148196831816, 20.778292752508492 ], [ 3.677636346340307, 20.878390001397406 ], [ 3.57319827587969, 20.969004625063405 ], [ 1.368991732882137, 22.177897244062535 ], [ 1.300055373256839, 22.270113837283759 ], [ 1.307186720091067, 25.541387031186503 ], [ 1.117120801783585, 25.692798977290977 ], [ 1.091230910078423, 25.957718207029586 ], [ 0.825407341875291, 26.268836167854829 ], [ 0.864371372440871, 26.318910630721007 ], [ 1.067769810228526, 26.41551972145794 ], [ 1.393951450399129, 26.425777493036833 ], [ 1.514202508139249, 26.461640937279412 ], [ 1.628872510857661, 26.583959052568218 ], [ 1.763592969639831, 26.60943553312336 ], [ 1.931799757652698, 26.783585110464458 ], [ 2.134112989822597, 28.491517034883259 ], [ 2.079335971977514, 29.036367499560413 ], [ 2.9859989761718, 29.123545641018495 ], [ 3.815560744232926, 28.545906480000042 ], [ 4.750490756942895, 28.461854763286681 ], [ 5.952742953724339, 28.490793565370723 ], [ 6.510900098560683, 28.089861964757858 ], [ 6.566607293291952, 27.888091335846468 ], [ 6.25784060995619, 27.765514838139268 ], [ 5.837452834280839, 27.406286119209028 ], [ 5.81574873181853, 27.321355903352242 ], [ 5.950417514656579, 26.861823228159437 ], [ 6.261871372266, 26.598505967975996 ], [ 6.274428745390253, 26.528510240255343 ], [ 6.179447462630264, 26.312089342249351 ], [ 6.183478224040812, 26.225660508725468 ], [ 6.307346632940721, 26.165302435858734 ], [ 6.537771843995415, 25.894905503885866 ], [ 6.95857303172005, 25.759823309897797 ], [ 6.995521680681009, 25.501570338999954 ], [ 7.170704786796477, 25.28638967534323 ], [ 7.085800409361411, 25.109191189421836 ], [ 7.106936069244171, 24.922587591743934 ], [ 7.314106886023978, 24.70763947208394 ], [ 7.630625033818262, 24.597155260406907 ], [ 7.953706088565127, 24.36766022443976 ], [ 8.521320021102099, 24.228624783406985 ], [ 8.698673536654383, 24.003470567212901 ], [ 11.710140444000075, 24.000137321000082 ], [ 11.968860717000069, 23.517351176000105 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-37", "NAME_1": "Tindouf" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.661524745999969, 25.508881108000097 ], [ -8.68238521299989, 27.285415751000116 ], [ -8.667605753999879, 28.711685283000051 ], [ -8.430410929999937, 28.841005555000081 ], [ -8.368450886999909, 28.916530661000095 ], [ -8.036326456999859, 29.099852804000093 ], [ -7.619452677999902, 29.389421692000084 ], [ -7.349610105356646, 29.383439374604663 ], [ -7.258755287181771, 29.467305360612258 ], [ -7.146933972505082, 29.509238353615942 ], [ -6.95823550398822, 29.509238353615942 ], [ -6.78351469980592, 29.446338864110359 ], [ -6.699648713798354, 29.516227185783251 ], [ -6.413106594939393, 29.565149010954329 ], [ -6.000765497129976, 29.579126675355781 ], [ -5.266778936698586, 28.207244981071028 ], [ -3.750644089553077, 28.566887112050551 ], [ -2.97425737068113, 27.203275255048936 ], [ -5.661524745999969, 25.508881108000097 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-08", "NAME_1": "Béchar" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.516146605999893, 32.13220001300003 ], [ -1.249557250999942, 32.081660462000073 ], [ -1.190594440999917, 32.125223694000013 ], [ -1.23271073399988, 32.163722636000088 ], [ -1.305161091999963, 32.151165263000067 ], [ -1.273423460999879, 32.229442172000049 ], [ -1.115921189611242, 32.243355211074118 ], [ -0.994016486371777, 32.223485623063027 ], [ -0.895624558926272, 32.104629828403858 ], [ -0.039449428748128, 32.327303574999974 ], [ -0.400822719592838, 31.390668239947274 ], [ -0.154016078679092, 31.123785305447484 ], [ 0.399128451916511, 30.708694363054406 ], [ -0.199232956935418, 29.745032253835404 ], [ -0.825654669627284, 29.008203843832291 ], [ -0.958359747704208, 28.92301524555711 ], [ -1.876029832310905, 28.779044705548699 ], [ -2.114154831880001, 28.675795193493343 ], [ -2.569682583184658, 28.38108450004961 ], [ -2.812923549781999, 28.294345608163269 ], [ -3.022678188047962, 28.331035874705833 ], [ -3.552620002111439, 28.582441717811037 ], [ -3.750644089553077, 28.566887112050551 ], [ -5.266778936698586, 28.207244981071028 ], [ -6.000765497129976, 29.579126675355781 ], [ -5.756156371213876, 29.61407083612535 ], [ -5.721212210377359, 29.52321601795056 ], [ -5.637346224369793, 29.495260689281352 ], [ -5.539502574027694, 29.52321601795056 ], [ -5.176083301328532, 29.977490108824597 ], [ -4.875563518134896, 30.180166241676076 ], [ -4.62396556011231, 30.284998724185542 ], [ -4.372367602089838, 30.50864135353892 ], [ -4.155713804903684, 30.585518507379092 ], [ -3.834227525208235, 30.627451500382804 ], [ -3.645529056691345, 30.711317486390399 ], [ -3.659506721025934, 30.837116465401678 ], [ -3.554674238516554, 30.955926612245648 ], [ -3.624140991999951, 31.086527405000098 ], [ -3.731421264999881, 31.176341045000086 ], [ -3.810796263999862, 31.142906393000104 ], [ -3.842835652999952, 31.170191549000023 ], [ -3.815188761999934, 31.337158102 ], [ -3.747466796999959, 31.385165507000053 ], [ -3.673484385360553, 31.389234206617786 ], [ -3.659506721025934, 31.647820996807653 ], [ -2.827835693118061, 31.794586472320745 ], [ -2.938730631999903, 32.048639221000101 ], [ -2.516146605999893, 32.13220001300003 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-36", "NAME_1": "El Tarf" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.60251042862123, 36.93951076359987 ], [ 8.641725301000065, 36.836357321000079 ], [ 8.413108765000061, 36.783905742000016 ], [ 8.461787964000081, 36.732797750000131 ], [ 8.430368693000048, 36.662621155000053 ], [ 8.193483927000074, 36.548984681 ], [ 8.167890169000145, 36.491994979000069 ], [ 8.054888543071797, 36.410491034333745 ], [ 8.007242872960205, 36.412790635879105 ], [ 7.974635043772253, 36.507280992223968 ], [ 7.784879184726606, 36.573840236837441 ], [ 7.707932977325015, 36.652104193853461 ], [ 7.649745313895096, 36.663395494206668 ], [ 7.752581413901112, 36.771967677965961 ], [ 7.773773634000065, 36.88975657800006 ], [ 7.908457879000082, 36.849554755000042 ], [ 8.233164910000085, 36.958075262000079 ], [ 8.463226759000065, 36.901556708000044 ], [ 8.60251042862123, 36.93951076359987 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-39", "NAME_1": "El Oued" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.708286222930838, 33.410703984501254 ], [ 7.724985392000093, 33.231409404000075 ], [ 8.086823771000098, 33.094285991000035 ], [ 8.28288415600008, 32.836368917000058 ], [ 8.331253296000114, 32.52762807200007 ], [ 9.019893433000021, 32.104863180000095 ], [ 9.063303822000108, 32.000191513000047 ], [ 7.313796827661463, 32.002258816391247 ], [ 7.030868360986062, 32.052953395982399 ], [ 6.850879347104183, 32.239246935297786 ], [ 6.683757764709071, 32.511762599864085 ], [ 6.464804722060251, 33.15769216626046 ], [ 6.378556755689715, 33.317553208813536 ], [ 6.192986687685504, 33.37698110569346 ], [ 5.008046094951283, 33.441886704807587 ], [ 5.334847852746179, 33.845996406109236 ], [ 5.37381188331176, 34.058386541805419 ], [ 5.359859246207236, 34.166209418529832 ], [ 5.185451287347007, 34.356662909565614 ], [ 5.217232293335655, 34.411956692247543 ], [ 5.29903608624636, 34.449060369940128 ], [ 5.315779250412049, 34.499806627273983 ], [ 5.477164748154564, 34.449835517195368 ], [ 5.998528272761575, 34.394955146562722 ], [ 6.211435174193923, 34.428415636472437 ], [ 6.526919793213892, 34.316536159915813 ], [ 6.695901726683303, 34.376093248004963 ], [ 6.744890984831045, 34.298733629453409 ], [ 6.960588413324615, 34.193933823786892 ], [ 7.271112094947227, 34.113835354118294 ], [ 7.539228219000051, 34.113757839000058 ], [ 7.503706909000073, 34.067973328000065 ], [ 7.484896688000049, 33.855014750000024 ], [ 7.553006225000075, 33.658747661000078 ], [ 7.708286222930838, 33.410703984501254 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-12", "NAME_1": "Tébessa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.10248315957017, 34.536354708303122 ], [ 7.831542195000054, 34.414386292000088 ], [ 7.765293009000061, 34.244706726000103 ], [ 7.631451049000077, 34.199102275000101 ], [ 7.539228219000051, 34.113757839000058 ], [ 7.271112094947227, 34.113835354118294 ], [ 7.135771519440084, 34.16057668756406 ], [ 7.274057650739962, 34.540734360802105 ], [ 7.400354852394514, 34.734520982157562 ], [ 7.365886672132206, 34.962465725412869 ], [ 7.30831912632658, 34.977193507973993 ], [ 7.264445835207141, 34.940632433539974 ], [ 7.26553103992552, 34.832344468822157 ], [ 7.219745720888284, 34.937841905579432 ], [ 7.411516960639233, 35.156097317137437 ], [ 7.413067254250393, 35.38662588097958 ], [ 7.840741408189444, 35.615164903437517 ], [ 7.823378127298724, 35.739007473016443 ], [ 7.906370476816051, 35.903493557081958 ], [ 8.002747022656933, 35.971293036044756 ], [ 8.194053175313798, 36.004210924494544 ], [ 8.26842340061944, 35.969863948562363 ], [ 8.245780477000096, 35.785310364000097 ], [ 8.323605184000144, 35.652191874000025 ], [ 8.336730997000103, 35.508376363000039 ], [ 8.290015502000102, 35.402594706000102 ], [ 8.294356323000102, 35.32508005800004 ], [ 8.431298869000102, 35.241725973000101 ], [ 8.300454142000149, 35.067679749000021 ], [ 8.248881062000123, 34.901953431000081 ], [ 8.266554403000043, 34.750283102000068 ], [ 8.21064050300015, 34.681191712 ], [ 8.236478719000075, 34.647653708000078 ], [ 8.10248315957017, 34.536354708303122 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-41", "NAME_1": "Souk Ahras" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.355423112986273, 36.356115986463578 ], [ 8.30706872600004, 36.243628642000104 ], [ 8.317093953000068, 36.14590850900008 ], [ 8.26842340061944, 35.969863948562363 ], [ 8.194053175313798, 36.004210924494544 ], [ 8.002747022656933, 35.971293036044756 ], [ 7.865856154437949, 35.858715929296693 ], [ 7.734598016285418, 35.934499416714687 ], [ 7.660132276683214, 35.834195462250761 ], [ 7.577243279953393, 35.833497830260626 ], [ 7.398339470789949, 35.967003893115134 ], [ 7.324958936805501, 36.080020250334258 ], [ 7.325889112792311, 36.127407538027455 ], [ 7.410431755920797, 36.181254380785049 ], [ 7.829424269414517, 36.315044664479672 ], [ 7.795266148413987, 36.440980130028947 ], [ 7.871437208560337, 36.432582709524411 ], [ 7.98786421136424, 36.484388333155039 ], [ 8.023210889870654, 36.404134832956174 ], [ 8.167890169000145, 36.491994979000069 ], [ 8.349236695000116, 36.44878407800006 ], [ 8.355423112986273, 36.356115986463578 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-30", "NAME_1": "Ouargla" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.063303822000108, 32.000191513000047 ], [ 9.519707885000116, 30.228905335000078 ], [ 9.286543823000073, 30.117129212000108 ], [ 9.36948530440327, 30.022793077538495 ], [ 7.146365186903836, 28.83937693909445 ], [ 6.787420688813711, 28.868264065234428 ], [ 6.420931430940755, 28.731269843328562 ], [ 5.952742953724339, 28.490793565370723 ], [ 4.750490756942895, 28.461854763286681 ], [ 3.815560744232926, 28.545906480000042 ], [ 2.9859989761718, 29.123545641018495 ], [ 3.34447838716784, 29.306557725958271 ], [ 3.397550082670193, 29.364874578798776 ], [ 3.479612257999293, 29.636847642804469 ], [ 3.721509636560484, 29.863345445236064 ], [ 3.802538283115268, 29.989849352465626 ], [ 4.110839877558305, 31.791393134085865 ], [ 4.359145135239771, 32.255990099463475 ], [ 4.738863559805452, 32.531890571192889 ], [ 4.978280469667936, 32.840760606416836 ], [ 4.95311404837463, 33.24148550145469 ], [ 5.008046094951283, 33.441886704807587 ], [ 6.192986687685504, 33.37698110569346 ], [ 6.378556755689715, 33.317553208813536 ], [ 6.464804722060251, 33.15769216626046 ], [ 6.683757764709071, 32.511762599864085 ], [ 6.850879347104183, 32.239246935297786 ], [ 7.030868360986062, 32.052953395982399 ], [ 7.313796827661463, 32.002258816391247 ], [ 9.063303822000108, 32.000191513000047 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-33", "NAME_1": "Illizi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.36948530440327, 30.022793077538495 ], [ 9.66770918800006, 29.608323059000057 ], [ 9.8261491290001, 29.128533224000094 ], [ 9.851263875000114, 28.785995992000025 ], [ 9.776953166000112, 28.26757802300007 ], [ 9.935909871000121, 27.866723939000067 ], [ 9.863356160000109, 27.619245504000034 ], [ 9.793903036000131, 27.56973948200006 ], [ 9.821601603000147, 27.505686544000056 ], [ 9.756282592000105, 27.423030091 ], [ 9.721866089000059, 27.308463440000068 ], [ 9.825529012000118, 26.920580139 ], [ 9.910588419000135, 26.843117168000035 ], [ 9.854571167000103, 26.524376933000028 ], [ 9.482604207000065, 26.352552795000051 ], [ 9.377804403000084, 26.168946432000055 ], [ 10.007946818000079, 25.331426493 ], [ 10.032028035000025, 24.856339213000112 ], [ 10.19336185700007, 24.749937440000011 ], [ 10.260334513000146, 24.576640524000126 ], [ 10.410506225000063, 24.473287659000036 ], [ 10.720668172000046, 24.552300924000107 ], [ 11.508630412000031, 24.313814189000098 ], [ 11.56712813300004, 24.266840312000042 ], [ 11.710140444000075, 24.000137321000082 ], [ 8.691697217652461, 24.006002711855672 ], [ 8.521320021102099, 24.228624783406985 ], [ 7.953706088565127, 24.36766022443976 ], [ 7.630625033818262, 24.597155260406907 ], [ 7.314106886023978, 24.70763947208394 ], [ 7.106936069244171, 24.922587591743934 ], [ 7.085800409361411, 25.109191189421836 ], [ 7.170704786796477, 25.28638967534323 ], [ 6.995521680681009, 25.501570338999954 ], [ 6.95857303172005, 25.759823309897797 ], [ 6.537771843995415, 25.894905503885866 ], [ 6.307346632940721, 26.165302435858734 ], [ 6.178827345005971, 26.231551622109635 ], [ 6.179447462630264, 26.312089342249351 ], [ 6.271328159067252, 26.5704973409795 ], [ 6.206319207165677, 26.659742539986212 ], [ 5.95832400874599, 26.846113592768063 ], [ 5.81574873181853, 27.321355903352242 ], [ 5.872386101637289, 27.45679983254621 ], [ 6.25784060995619, 27.765514838139268 ], [ 6.566607293291952, 27.888091335846468 ], [ 6.510900098560683, 28.089861964757858 ], [ 5.952742953724339, 28.490793565370723 ], [ 6.420931430940755, 28.731269843328562 ], [ 6.787420688813711, 28.868264065234428 ], [ 7.146365186903836, 28.83937693909445 ], [ 9.36948530440327, 30.022793077538495 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-45", "NAME_1": "Naâma" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.273423460999879, 32.229442172000049 ], [ -1.217982950999954, 32.392623393000079 ], [ -1.123156697999917, 32.417944845000065 ], [ -1.031999470999949, 32.49440012700002 ], [ -1.423345092999881, 32.742395325000118 ], [ -1.558789021999871, 32.933649801000072 ], [ -1.502978474999907, 32.974629212000096 ], [ -1.499516153999878, 33.060205384000071 ], [ -1.571398071999909, 33.111985169000022 ], [ -1.683380899999918, 33.270838521000101 ], [ -1.683225869999887, 33.369230449000028 ], [ -1.617338418999879, 33.554438782000048 ], [ -1.662400268999932, 33.644691671000075 ], [ -1.746787881999865, 33.702388408000061 ], [ -1.703224650999914, 33.761816305000096 ], [ -1.718727579999921, 33.898087056000023 ], [ -1.67208514811108, 34.092020705191374 ], [ -1.479878301942108, 34.190523180000753 ], [ -1.249918178880876, 34.20623281539207 ], [ -1.120417039015138, 34.271293443237766 ], [ -0.836196662046348, 34.215121161412469 ], [ -0.597813280058858, 34.313719794432927 ], [ -0.501540086106104, 34.265634873850331 ], [ -0.488879360194346, 34.158122057287073 ], [ -0.361083542671395, 33.916457220923974 ], [ -0.2289469062747, 34.053942369244908 ], [ -0.14342241031602, 34.086808579951992 ], [ -0.068801641982191, 34.072235826122437 ], [ -0.055365769714513, 33.986246243069616 ], [ 0.086020948807743, 34.048309638279136 ], [ 0.050622592558568, 33.803104966920671 ], [ 0.063490024045336, 33.308096422012227 ], [ -0.027047085254765, 33.02062042908949 ], [ -0.006686570828606, 32.804767970965088 ], [ -0.10156449990177, 32.567108059389398 ], [ -0.083942836592655, 32.524397488253442 ], [ -0.006583218041101, 32.487009588821422 ], [ -0.039449428748128, 32.327303574999974 ], [ -0.895624558926272, 32.104629828403858 ], [ -1.010087856069731, 32.231908881089964 ], [ -1.273423460999879, 32.229442172000049 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-13", "NAME_1": "Tlemcen" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.67208514811108, 34.092020705191374 ], [ -1.746064412999942, 34.290311178000096 ], [ -1.80962642399993, 34.372450867000012 ], [ -1.702966267999955, 34.479679464000057 ], [ -1.871121377999941, 34.596649069000122 ], [ -1.769525512999849, 34.741343079000032 ], [ -1.979745238999953, 34.865263164000012 ], [ -2.016280476999981, 34.926241354000084 ], [ -2.193789021999919, 35.003600973000104 ], [ -2.222564256999931, 35.08930084800005 ], [ -1.956450975999928, 35.075018622000073 ], [ -1.761138475999928, 35.12962474200009 ], [ -1.510365363999938, 35.295477606000077 ], [ -1.361975709870848, 35.319898656042554 ], [ -1.320663215435047, 35.283789780973564 ], [ -1.337664761119868, 35.190823879818197 ], [ -1.271622280443921, 35.195655626006328 ], [ -0.933193324612262, 35.051814277207086 ], [ -0.967196417780485, 34.942105210986654 ], [ -0.924149949860293, 34.881514594123189 ], [ -0.941358201120067, 34.842576401979329 ], [ -0.89056026874141, 34.843609930753701 ], [ -0.886116095281579, 34.74302175634898 ], [ -0.775631882705227, 34.737440701327273 ], [ -0.758475308288837, 34.711912543029428 ], [ -0.829582078250326, 34.578380641753199 ], [ -0.903789435434135, 34.547193914967181 ], [ -0.880018276322403, 34.467612210135371 ], [ -1.120417039015138, 34.271293443237766 ], [ -1.249918178880876, 34.20623281539207 ], [ -1.479878301942108, 34.190523180000753 ], [ -1.67208514811108, 34.092020705191374 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-23", "NAME_1": "Annaba" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.262676963171316, 37.07600483835256 ], [ 7.383474155000044, 37.082993882000039 ], [ 7.404633009000065, 37.051581122000073 ], [ 7.490244988000086, 37.05499909100007 ], [ 7.588877800000091, 36.987616278000075 ], [ 7.712738477000073, 36.96320221600007 ], [ 7.79859459700009, 36.99359772300005 ], [ 7.752581413901112, 36.771967677965961 ], [ 7.612331576940733, 36.622622789410173 ], [ 7.481073438788144, 36.634094956916726 ], [ 7.456837191683064, 36.693057765803246 ], [ 7.384231804953799, 36.726130682984603 ], [ 7.36387129142696, 36.881108303405483 ], [ 7.307233920708882, 36.9292190624098 ], [ 7.262676963171316, 37.07600483835256 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-21", "NAME_1": "Skikda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.247830732379128, 36.935314631953098 ], [ 6.274424675000091, 37.024237372000073 ], [ 6.371592644000089, 37.083482164000088 ], [ 6.462412957000083, 37.093939520000049 ], [ 6.544200066000087, 37.058783270000049 ], [ 6.599457227000073, 36.973089911000045 ], [ 6.82203209700009, 36.952622789000088 ], [ 6.909434441000087, 36.893052476000037 ], [ 7.156993035000085, 36.91469961100006 ], [ 7.254242384000065, 36.994696356000077 ], [ 7.181651238000086, 37.076727606000077 ], [ 7.222666863000086, 37.089789130000042 ], [ 7.262676963171316, 37.07600483835256 ], [ 7.307233920708882, 36.9292190624098 ], [ 7.36387129142696, 36.881108303405483 ], [ 7.384231804953799, 36.726130682984603 ], [ 7.314727003648272, 36.651613268337655 ], [ 7.123989291772375, 36.585829169180784 ], [ 7.077118768016703, 36.545263169959298 ], [ 7.075723504036489, 36.502552598823343 ], [ 6.93795413577476, 36.432866930364526 ], [ 6.818013136397099, 36.466818345789989 ], [ 6.845453321713421, 36.5314138865416 ], [ 6.904106073136745, 36.529036769731135 ], [ 6.911082391239347, 36.560404365469083 ], [ 6.777188754757219, 36.556270250371711 ], [ 6.652441846713828, 36.607895005949729 ], [ 6.579939812772125, 36.570067856946025 ], [ 6.457363315064924, 36.579886379852553 ], [ 6.474778272799028, 36.66905406269484 ], [ 6.365999382565462, 36.741840318375978 ], [ 6.338507521305075, 36.837751777122776 ], [ 6.271328159067252, 36.87041128225485 ], [ 6.247830732379128, 36.935314631953098 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-18", "NAME_1": "Jijel" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.428038737297868, 36.663878422950859 ], [ 5.529144727000073, 36.697658596000053 ], [ 5.576182488000086, 36.761379299000055 ], [ 5.710459832000083, 36.825506903000075 ], [ 6.037119988000086, 36.853583075000074 ], [ 6.247830732379128, 36.935314631953098 ], [ 6.271328159067252, 36.87041128225485 ], [ 6.338507521305075, 36.837751777122776 ], [ 6.365999382565462, 36.741840318375978 ], [ 6.47849897584706, 36.660372423148772 ], [ 6.457363315064924, 36.579886379852553 ], [ 6.294582554241458, 36.624069729334508 ], [ 6.215310906872844, 36.582625230070278 ], [ 6.023229607860117, 36.605931301188605 ], [ 5.904322137256827, 36.545521552377693 ], [ 5.614003940429484, 36.555495103116471 ], [ 5.542793816781227, 36.523972480445593 ], [ 5.498248732093316, 36.584098009315653 ], [ 5.427813754800923, 36.61275259055958 ], [ 5.428038737297868, 36.663878422950859 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-06", "NAME_1": "Béjaïa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.59148196700005, 36.89524974200009 ], [ 4.787119988000086, 36.895412502000056 ], [ 5.10482832100007, 36.781317450000074 ], [ 5.090179884000065, 36.716782945000034 ], [ 5.235850457000083, 36.650946356000077 ], [ 5.428038737297868, 36.663878422950859 ], [ 5.427813754800923, 36.61275259055958 ], [ 5.475459424912515, 36.590635076947194 ], [ 5.463677199043502, 36.508831284935809 ], [ 5.327871534643577, 36.449300035268379 ], [ 5.303221877287797, 36.389303696708225 ], [ 5.222193230733012, 36.384316921788468 ], [ 5.165555860914253, 36.494155178318806 ], [ 5.193357782335795, 36.527538153862679 ], [ 5.076517368381815, 36.574305324830846 ], [ 5.045304803174133, 36.524179186020604 ], [ 4.949858433320003, 36.502991848395084 ], [ 4.986807082281018, 36.462425849173599 ], [ 4.922573275835987, 36.38940705039505 ], [ 4.801081983746542, 36.379743557119468 ], [ 4.75824222230068, 36.424624539490878 ], [ 4.635820754224426, 36.338454088385447 ], [ 4.630084669571829, 36.253343004476051 ], [ 4.423378939886163, 36.22616119977954 ], [ 4.356354608178606, 36.340443631568348 ], [ 4.398729281631006, 36.373697415003676 ], [ 4.37092736200816, 36.47265778323009 ], [ 4.453661330006355, 36.501544908470748 ], [ 4.592050814993115, 36.661612657498097 ], [ 4.544095085619688, 36.744424139862133 ], [ 4.63473554860667, 36.753674221088431 ], [ 4.648068068086843, 36.795480455558561 ], [ 4.59148196700005, 36.89524974200009 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-15", "NAME_1": "Tizi Ouzou" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.039463159896911, 36.896919823890755 ], [ 4.59148196700005, 36.89524974200009 ], [ 4.646517775375003, 36.785171007136228 ], [ 4.624658644181068, 36.748971666109469 ], [ 4.544095085619688, 36.744424139862133 ], [ 4.592050814993115, 36.661612657498097 ], [ 4.426634555840053, 36.488522447353034 ], [ 4.18628746909144, 36.466249905009079 ], [ 3.888786247687165, 36.488522447353034 ], [ 3.761868931106278, 36.567794093822329 ], [ 3.735513949609071, 36.640761217556133 ], [ 3.93224612765664, 36.679518540748063 ], [ 3.965008985576219, 36.712126369936016 ], [ 3.932556186918475, 36.768996283751449 ], [ 4.025987176067304, 36.835994777936605 ], [ 4.039463159896911, 36.896919823890755 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-35", "NAME_1": "Boumerdès" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.173269076000054, 36.742621161000045 ], [ 3.210459832000083, 36.757391669000071 ], [ 3.227305535000085, 36.812323309000078 ], [ 3.46070397200009, 36.775091864000046 ], [ 3.612071160000085, 36.808579820000034 ], [ 3.82748457100007, 36.912909247000073 ], [ 4.039463159896911, 36.896919823890755 ], [ 4.025987176067304, 36.835994777936605 ], [ 3.932556186918475, 36.768996283751449 ], [ 3.959117873091373, 36.704013170271594 ], [ 3.908836703750865, 36.667322902829653 ], [ 3.744660678947184, 36.656264146473177 ], [ 3.733653599434035, 36.607610785109614 ], [ 3.641927930829354, 36.600401923010338 ], [ 3.680736931763988, 36.666806138892184 ], [ 3.647353957119435, 36.691817532353241 ], [ 3.437392612379142, 36.676547146533551 ], [ 3.354400261962496, 36.713469957072846 ], [ 3.22980838444937, 36.685125434191434 ], [ 3.173269076000054, 36.742621161000045 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-16", "NAME_1": "Alger" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.984873894000089, 36.814968166000085 ], [ 3.173269076000054, 36.742621161000045 ], [ 3.22980838444937, 36.685125434191434 ], [ 3.070748324875296, 36.660036526364593 ], [ 3.024032829851194, 36.736207587410206 ], [ 2.966310256213319, 36.748144842910165 ], [ 2.984873894000089, 36.814968166000085 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-42", "NAME_1": "Tipaza" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.70093834700009, 36.54718659100007 ], [ 2.05990644600007, 36.570135809000078 ], [ 2.329600457000083, 36.637274481000077 ], [ 2.447276238000086, 36.59056224200009 ], [ 2.600759311000047, 36.59634023600006 ], [ 2.977061394000089, 36.81586334800005 ], [ 2.966310256213319, 36.748144842910165 ], [ 3.02666832818079, 36.733339545083936 ], [ 3.035039911162983, 36.6709660915119 ], [ 2.976077101377143, 36.639805203147603 ], [ 2.837377557128548, 36.637867336808142 ], [ 2.602456495770639, 36.467438463414339 ], [ 2.499723747652808, 36.470384020106394 ], [ 2.476262647802969, 36.420619614703412 ], [ 1.793048536560718, 36.43198843032178 ], [ 1.708350863801286, 36.367677110410284 ], [ 1.647786086258861, 36.443150540365139 ], [ 1.70093834700009, 36.54718659100007 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-02", "NAME_1": "Chlef" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.740407748000052, 36.33775462400007 ], [ 1.044769727000073, 36.486883856000077 ], [ 1.367686394000089, 36.547919012000079 ], [ 1.70093834700009, 36.54718659100007 ], [ 1.647786086258861, 36.443150540365139 ], [ 1.553166537805453, 36.367677110410284 ], [ 1.603292676615695, 36.279077867449587 ], [ 1.594921095432198, 36.234377753130786 ], [ 1.628717482126092, 36.2114850940618 ], [ 1.588513218110506, 36.143298041471439 ], [ 1.717187533877564, 35.973205063962496 ], [ 1.712691685372988, 35.92341482193649 ], [ 1.612129346691972, 35.947211819469885 ], [ 1.553321567436399, 36.005657864418879 ], [ 1.504900750069567, 35.935222887126542 ], [ 1.447953321888292, 35.914268093497697 ], [ 1.411624789652308, 35.841559353081664 ], [ 1.356227655082193, 35.868146878575544 ], [ 1.288893263213538, 35.965867011553314 ], [ 1.159340448303055, 35.94597158512056 ], [ 1.040949740737915, 36.025449937164865 ], [ 0.956355421665364, 36.02707774514181 ], [ 0.920543654266226, 36.06524079003043 ], [ 0.897392611879525, 36.197635809744781 ], [ 0.704071079416792, 36.186525377444184 ], [ 0.740407748000052, 36.33775462400007 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-27", "NAME_1": "Mostaganem" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.113677537999934, 35.788804429000038 ], [ 0.03451582100007, 35.863267320000034 ], [ 0.127289259000065, 36.050767320000034 ], [ 0.321055535000085, 36.158880927000041 ], [ 0.342295769000089, 36.205959377000056 ], [ 0.451345248000052, 36.223211981000077 ], [ 0.644053582000083, 36.32884349200009 ], [ 0.740407748000052, 36.33775462400007 ], [ 0.704071079416792, 36.186525377444184 ], [ 0.542840610405847, 36.048962713858145 ], [ 0.529043002932212, 35.968063259411849 ], [ 0.451735060324779, 35.951966051292231 ], [ 0.434836867427464, 35.834428006247492 ], [ 0.392462192176424, 35.790864773490455 ], [ 0.155835809375105, 35.682060044835168 ], [ 0.109895460706923, 35.755440578819616 ], [ -0.038622606448143, 35.713505154039581 ], [ -0.098153856115573, 35.741281236140139 ], [ -0.113677537999934, 35.788804429000038 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-31", "NAME_1": "Oran" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.106353318999936, 35.623236395000049 ], [ -1.032948370999918, 35.682603257000039 ], [ -0.887562628999945, 35.715969143000052 ], [ -0.801665818999936, 35.773911851000037 ], [ -0.692453579999949, 35.719305731000077 ], [ -0.60610917899993, 35.730943101000037 ], [ -0.523426886999914, 35.779689846000053 ], [ -0.473784959999932, 35.89126211100006 ], [ -0.348540818999936, 35.907049872000073 ], [ -0.285552537999934, 35.828273830000057 ], [ -0.113677537999934, 35.788804429000038 ], [ -0.203573777607744, 35.695030829109442 ], [ -0.302482468990775, 35.669399318923411 ], [ -0.407333949702036, 35.574107977800907 ], [ -0.645097214964494, 35.294538478967581 ], [ -0.668868374076226, 35.332003892765442 ], [ -0.629490933259945, 35.409621893735391 ], [ -0.689435594077395, 35.476051948038958 ], [ -0.954122279819387, 35.437320462369428 ], [ -1.017787644584132, 35.455872300766032 ], [ -1.067035285150325, 35.416133123844588 ], [ -1.063366258046358, 35.466569321916666 ], [ -1.005126918672374, 35.517005519988743 ], [ -1.106353318999936, 35.623236395000049 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-46", "NAME_1": "Aïn Témouchent" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.361975709870848, 35.319898656042554 ], [ -1.267730272999927, 35.390326239000046 ], [ -1.183338995999918, 35.57648346600007 ], [ -1.106353318999936, 35.623236395000049 ], [ -1.006728888227599, 35.524912014078154 ], [ -1.06920569458714, 35.454451199263417 ], [ -1.059025438273352, 35.411533922552451 ], [ -1.017787644584132, 35.455872300766032 ], [ -0.954122279819387, 35.437320462369428 ], [ -0.715428840368702, 35.482485662882993 ], [ -0.629490933259945, 35.409621893735391 ], [ -0.668868374076226, 35.332003892765442 ], [ -0.880845098622387, 35.254308377429652 ], [ -0.890456915953905, 35.159895535450573 ], [ -1.000527715581597, 35.087393499710231 ], [ -1.271622280443921, 35.195655626006328 ], [ -1.337664761119868, 35.190823879818197 ], [ -1.320663215435047, 35.283789780973564 ], [ -1.361975709870848, 35.319898656042554 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-19", "NAME_1": "Sétif" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.838444044756841, 36.304967760054069 ], [ 4.789919874602504, 36.333854885294727 ], [ 4.801081983746542, 36.379743557119468 ], [ 4.922573275835987, 36.38940705039505 ], [ 4.986807082281018, 36.462425849173599 ], [ 4.949858433320003, 36.502991848395084 ], [ 5.045304803174133, 36.524179186020604 ], [ 5.076517368381815, 36.574305324830846 ], [ 5.187621697683198, 36.53448863444288 ], [ 5.165555860914253, 36.494155178318806 ], [ 5.187776727314088, 36.408423976785059 ], [ 5.255421176645996, 36.378865057976043 ], [ 5.303221877287797, 36.389303696708225 ], [ 5.327871534643577, 36.449300035268379 ], [ 5.457889439346161, 36.499917101393066 ], [ 5.475459424912515, 36.590635076947194 ], [ 5.542793816781227, 36.523972480445593 ], [ 5.737200554861715, 36.555133367910571 ], [ 5.776164585427239, 36.439998277198697 ], [ 5.872386101637289, 36.401886909153518 ], [ 5.866029901158981, 36.255410061125417 ], [ 5.933519320859943, 36.224972643172919 ], [ 5.89936119985947, 36.16967886049099 ], [ 5.983335402207047, 36.058471178402158 ], [ 5.976669141567641, 35.915792547787817 ], [ 5.94018558060003, 35.862126573082833 ], [ 5.822880079552021, 35.914733181491101 ], [ 5.745623813787972, 35.89021271444517 ], [ 5.711620720619749, 35.849672552746085 ], [ 5.761901889960257, 35.810915229554155 ], [ 5.736425409405115, 35.771046861423486 ], [ 5.575091586707345, 35.818279120385057 ], [ 5.476854688892786, 35.736087754746052 ], [ 5.423472935027917, 35.635654609072901 ], [ 5.226223993042822, 35.664024970376033 ], [ 5.065768670387797, 35.762081000138039 ], [ 5.054916618706955, 35.820862941871269 ], [ 5.139976026672286, 35.856623033326287 ], [ 5.184056024266113, 36.115366929739992 ], [ 5.25356082467232, 36.197377428225707 ], [ 5.212426384669925, 36.196653957813908 ], [ 5.188086785676603, 36.245514023853104 ], [ 5.125558301574358, 36.232362372425541 ], [ 5.034762810755126, 36.310884710960636 ], [ 4.838444044756841, 36.304967760054069 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-34", "NAME_1": "Bordj Bou Arréridj" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.801081983746542, 36.379743557119468 ], [ 4.785217318724278, 36.346644802415653 ], [ 4.821235792597747, 36.306853950449408 ], [ 5.034762810755126, 36.310884710960636 ], [ 5.125558301574358, 36.232362372425541 ], [ 5.188086785676603, 36.245514023853104 ], [ 5.212426384669925, 36.196653957813908 ], [ 5.25356082467232, 36.197377428225707 ], [ 5.184056024266113, 36.115366929739992 ], [ 5.139976026672286, 35.856623033326287 ], [ 5.066543816743717, 35.840474148363228 ], [ 5.05445153161287, 35.777325548435272 ], [ 4.854928827403455, 35.873159491917022 ], [ 4.620782912401467, 35.823601792988313 ], [ 4.466683791124069, 35.832283434333021 ], [ 4.449268833389965, 35.869697171287385 ], [ 4.540839470565118, 35.942147529285023 ], [ 4.494123976440335, 36.02844717070036 ], [ 4.379143913560767, 35.991085109690061 ], [ 4.214812860025461, 36.016613267987907 ], [ 4.136316359012767, 35.995632635937397 ], [ 4.084329868228849, 36.029093125847055 ], [ 4.356354608178606, 36.340443631568348 ], [ 4.423378939886163, 36.22616119977954 ], [ 4.511383905442869, 36.225747789528839 ], [ 4.630084669571829, 36.253343004476051 ], [ 4.635820754224426, 36.338454088385447 ], [ 4.748010288244188, 36.420748805912638 ], [ 4.801081983746542, 36.379743557119468 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-10", "NAME_1": "Bouira" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.356354608178606, 36.340443631568348 ], [ 4.093631626298532, 36.046068834009475 ], [ 4.035133905405416, 35.870808214427541 ], [ 3.954156934794696, 35.890755316804416 ], [ 3.850804070851154, 35.861971544351263 ], [ 3.735513949609071, 35.929977728889071 ], [ 3.628440382617555, 35.922794705211459 ], [ 3.578934359632967, 35.999353338985372 ], [ 3.551752556735096, 36.298301500313983 ], [ 3.583120150674404, 36.338660793960457 ], [ 3.555524936626512, 36.422945055569812 ], [ 3.500127801157078, 36.438964749323702 ], [ 3.422664828918698, 36.407855536004149 ], [ 3.283035108683293, 36.49017609285238 ], [ 3.321792432774544, 36.550379136987544 ], [ 3.456357862825087, 36.576837470372936 ], [ 3.510049675951791, 36.623165391769419 ], [ 3.477441846763782, 36.688561917298614 ], [ 3.635726759082672, 36.694401352940076 ], [ 3.680736931763988, 36.666806138892184 ], [ 3.641927930829354, 36.600401923010338 ], [ 3.733653599434035, 36.607610785109614 ], [ 3.888786247687165, 36.488522447353034 ], [ 4.37092736200816, 36.47265778323009 ], [ 4.398729281631006, 36.373697415003676 ], [ 4.356354608178606, 36.340443631568348 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-09", "NAME_1": "Blida" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.477441846763782, 36.688561917298614 ], [ 3.510049675951791, 36.623165391769419 ], [ 3.467364943237556, 36.583167833328844 ], [ 3.321792432774544, 36.550379136987544 ], [ 3.283035108683293, 36.49017609285238 ], [ 3.203246698276473, 36.474905707032747 ], [ 3.008064812940745, 36.356437486001141 ], [ 2.909827915126186, 36.415245266156091 ], [ 2.824458448798339, 36.365170803289914 ], [ 2.661109246294643, 36.363103745741228 ], [ 2.64338423019808, 36.397261868540397 ], [ 2.52251305483361, 36.363982244884653 ], [ 2.476262647802969, 36.420619614703412 ], [ 2.499723747652808, 36.470384020106394 ], [ 2.602456495770639, 36.467438463414339 ], [ 2.837377557128548, 36.637867336808142 ], [ 3.02992394413468, 36.662232774223128 ], [ 3.025118036368269, 36.71005931238733 ], [ 3.097413363835642, 36.649933784416589 ], [ 3.323652784748219, 36.712307237089306 ], [ 3.477441846763782, 36.688561917298614 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-38", "NAME_1": "Tissemsilt" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.712691685372988, 35.92341482193649 ], [ 1.853561639058398, 35.860498766005207 ], [ 1.964510938728836, 35.879825750757789 ], [ 2.008745965054231, 35.917911282179887 ], [ 2.171681756407907, 35.917601222918108 ], [ 2.311776563737396, 35.86695832017034 ], [ 2.241961704069354, 35.744123440044689 ], [ 2.158194207296845, 35.698234768219947 ], [ 2.261030308202123, 35.605578925427039 ], [ 2.249713169427196, 35.559612739236513 ], [ 1.744937777556402, 35.551938788244456 ], [ 1.692021111684937, 35.580490016700878 ], [ 1.658069696259474, 35.547933865255629 ], [ 1.559057651189619, 35.606095689364565 ], [ 1.492343376945257, 35.594881904276463 ], [ 1.469192336357253, 35.648031114144601 ], [ 1.346460809019106, 35.68981151019301 ], [ 1.292458936630624, 35.617645372136167 ], [ 1.245588412874952, 35.647333482154465 ], [ 1.275715773364254, 35.775491033983997 ], [ 1.37720828623344, 35.788048408007626 ], [ 1.447953321888292, 35.914268093497697 ], [ 1.504900750069567, 35.935222887126542 ], [ 1.548360630039042, 36.003952542076149 ], [ 1.638484328189179, 35.934292711139676 ], [ 1.712691685372988, 35.92341482193649 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-44", "NAME_1": "Aïn Defla" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.853561639058398, 35.860498766005207 ], [ 1.712691685372988, 35.92341482193649 ], [ 1.717187533877564, 35.973205063962496 ], [ 1.588513218110506, 36.143298041471439 ], [ 1.628717482126092, 36.2114850940618 ], [ 1.594921095432198, 36.234377753130786 ], [ 1.603292676615695, 36.279077867449587 ], [ 1.553166537805453, 36.367677110410284 ], [ 1.647786086258861, 36.443150540365139 ], [ 1.716722445884159, 36.36666942005769 ], [ 1.793048536560718, 36.43198843032178 ], [ 2.476262647802969, 36.420619614703412 ], [ 2.52251305483361, 36.363982244884653 ], [ 2.652685988267706, 36.39209422556803 ], [ 2.647880079601975, 36.33251129815784 ], [ 2.526853874606616, 36.300006821757393 ], [ 2.486494581859461, 36.241974188857682 ], [ 2.531659784171666, 36.189574286024481 ], [ 2.577445103208959, 36.211795152424315 ], [ 2.639043410425018, 36.181564439147508 ], [ 2.571553988925416, 36.099088853567707 ], [ 2.459364454905653, 36.036999619936466 ], [ 2.311776563737396, 35.86695832017034 ], [ 2.171681756407907, 35.917601222918108 ], [ 2.008745965054231, 35.917911282179887 ], [ 1.964510938728836, 35.879825750757789 ], [ 1.853561639058398, 35.860498766005207 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-48", "NAME_1": "Relizane" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.411624789652308, 35.841559353081664 ], [ 1.361808709204581, 35.776524562758368 ], [ 1.275715773364254, 35.775491033983997 ], [ 1.245588412874952, 35.647333482154465 ], [ 1.010977409879558, 35.575038153787773 ], [ 1.01795372888148, 35.544238999730055 ], [ 0.959456007988365, 35.54775299720302 ], [ 0.866076693884281, 35.436080227120783 ], [ 0.532298617986839, 35.5099775250427 ], [ 0.456851027353025, 35.558139959991138 ], [ 0.319081659091296, 35.557778224785238 ], [ 0.229371372091123, 35.695935167573907 ], [ 0.423984815746621, 35.817633165238362 ], [ 0.451735060324779, 35.951966051292231 ], [ 0.529043002932212, 35.968063259411849 ], [ 0.542840610405847, 36.048962713858145 ], [ 0.704071079416792, 36.186525377444184 ], [ 0.897392611879525, 36.197635809744781 ], [ 0.948138869213437, 36.032012844117446 ], [ 1.040949740737915, 36.025449937164865 ], [ 1.159340448303055, 35.94597158512056 ], [ 1.288893263213538, 35.965867011553314 ], [ 1.356227655082193, 35.868146878575544 ], [ 1.411624789652308, 35.841559353081664 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-32", "NAME_1": "El Bayadh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.340785759755022, 34.234138088701798 ], [ 0.729495884027813, 34.435469468940823 ], [ 0.973718702556084, 34.382087714176635 ], [ 1.031958041930068, 34.339351305518335 ], [ 1.023689812634757, 34.191246650412552 ], [ 1.231480747038859, 34.191892605559303 ], [ 1.409144320953658, 33.961803290389526 ], [ 1.793978713446847, 33.816411647979123 ], [ 2.019287956573919, 33.499040839463134 ], [ 2.031380242604087, 33.392535712353208 ], [ 1.975207960778732, 33.292180081045899 ], [ 2.054221225728952, 33.108909613687729 ], [ 2.174937370563214, 32.97499013878388 ], [ 2.291467726154622, 32.695989080731465 ], [ 2.297513869169734, 32.377300523500367 ], [ 2.344849480918811, 32.172791043471875 ], [ 2.315652297315637, 32.062177638786977 ], [ 2.215296665109008, 31.923297227385092 ], [ 2.24211673280098, 31.791186428510855 ], [ 2.199432000086745, 31.735246689782912 ], [ 2.085382114093306, 31.658584703221436 ], [ 0.842460565302815, 31.096939399333792 ], [ 0.399128451916511, 30.708694363054406 ], [ -0.154016078679092, 31.123785305447484 ], [ -0.400822719592838, 31.390668239947274 ], [ -0.003585985404925, 32.443963120901287 ], [ -0.012887742575288, 32.500006212416736 ], [ -0.083942836592655, 32.524397488253442 ], [ -0.10156449990177, 32.567108059389398 ], [ -0.006686570828606, 32.804767970965088 ], [ -0.027047085254765, 33.02062042908949 ], [ 0.063490024045336, 33.308096422012227 ], [ 0.050622592558568, 33.803104966920671 ], [ 0.086020948807743, 34.048309638279136 ], [ 0.235417515106235, 34.225869859406487 ], [ 0.340785759755022, 34.234138088701798 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-20", "NAME_1": "Saïda" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.75760786291255, 34.438182480736884 ], [ 0.351482781804918, 34.238117174168224 ], [ 0.235417515106235, 34.225869859406487 ], [ 0.086020948807743, 34.048309638279136 ], [ -0.044100307782969, 33.987253933422267 ], [ -0.081772427155784, 34.08153758419212 ], [ -0.220213588985928, 34.059445909001454 ], [ -0.346614141629345, 33.955214545015224 ], [ -0.356122606173358, 33.915036119421359 ], [ -0.499679735031748, 34.193158678330292 ], [ -0.060895147892779, 34.550087795715172 ], [ -0.056502651276332, 34.609050605501011 ], [ -0.114380256343793, 34.682431139485459 ], [ -0.36805986167326, 34.869654852989072 ], [ -0.272716843707371, 34.904329738826391 ], [ -0.299278529880269, 34.98233531342396 ], [ -0.236284958683882, 35.023805650210591 ], [ -0.24687862794633, 35.098891506537768 ], [ -0.135567593069993, 35.12764944146852 ], [ -0.111693081170756, 35.160593167440709 ], [ -0.091022508382082, 35.107909043767336 ], [ -0.014334683398943, 35.06385488549455 ], [ 0.112220899774684, 35.096100979476603 ], [ 0.189993931274898, 35.023495591848075 ], [ 0.625057813567253, 35.095920112323313 ], [ 0.754197218227034, 35.007837633300142 ], [ 0.783032668422891, 34.948151353102446 ], [ 0.669757927886053, 34.855495510309538 ], [ 0.673478630934085, 34.789375515267807 ], [ 0.856878288602104, 34.499858303218105 ], [ 0.75760786291255, 34.438182480736884 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-22", "NAME_1": "Sidi Bel Abbès" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.16517818782313, 35.122921047168575 ], [ -0.250702683781867, 35.093568833934512 ], [ -0.236284958683882, 35.023805650210591 ], [ -0.299278529880269, 34.98233531342396 ], [ -0.272716843707371, 34.904329738826391 ], [ -0.36805986167326, 34.869654852989072 ], [ -0.114380256343793, 34.682431139485459 ], [ -0.055004035407933, 34.60403799126027 ], [ -0.071902228305191, 34.529701442867292 ], [ -0.485727097927224, 34.229332180036067 ], [ -0.523140834881644, 34.290362047370593 ], [ -0.578176235145122, 34.312944648077007 ], [ -0.836196662046348, 34.215121161412469 ], [ -1.120417039015138, 34.271293443237766 ], [ -0.880018276322403, 34.467612210135371 ], [ -0.903789435434135, 34.547193914967181 ], [ -0.829582078250326, 34.578380641753199 ], [ -0.758475308288837, 34.711912543029428 ], [ -0.775631882705227, 34.737440701327273 ], [ -0.886116095281579, 34.74302175634898 ], [ -0.89056026874141, 34.843609930753701 ], [ -0.941358201120067, 34.842576401979329 ], [ -0.924149949860293, 34.881514594123189 ], [ -0.96611121306205, 34.922726549390745 ], [ -0.929834356770186, 35.047163398172245 ], [ -1.000527715581597, 35.087393499710231 ], [ -0.890456915953905, 35.159895535450573 ], [ -0.880845098622387, 35.254308377429652 ], [ -0.753669398723787, 35.318257962135249 ], [ -0.668868374076226, 35.332003892765442 ], [ -0.632281460321167, 35.298155829228108 ], [ -0.569184536337275, 35.405229397118944 ], [ -0.464436408413519, 35.429388128958976 ], [ -0.463661261158279, 35.358048814101494 ], [ -0.361807013083194, 35.358772284513293 ], [ -0.189207729353257, 35.299318549211648 ], [ -0.216957973931358, 35.190927231706382 ], [ -0.16517818782313, 35.122921047168575 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-29", "NAME_1": "Mascara" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.229371372091123, 35.695935167573907 ], [ 0.319081659091296, 35.557778224785238 ], [ 0.456851027353025, 35.558139959991138 ], [ 0.532298617986839, 35.5099775250427 ], [ 0.827887810573998, 35.443469957272669 ], [ 0.878168979914506, 35.374740302323062 ], [ 0.778536818119676, 35.279371445935453 ], [ 0.684330681715551, 35.299551093208379 ], [ 0.617771437102135, 35.276038316515098 ], [ 0.448789503632668, 35.059074815250483 ], [ 0.209837680864268, 35.02148021114283 ], [ 0.112220899774684, 35.096100979476603 ], [ -0.014334683398943, 35.06385488549455 ], [ -0.091022508382082, 35.107909043767336 ], [ -0.105956997417479, 35.159740505819684 ], [ -0.16517818782313, 35.122921047168575 ], [ -0.216957973931358, 35.190927231706382 ], [ -0.189207729353257, 35.299318549211648 ], [ -0.361807013083194, 35.358772284513293 ], [ -0.463661261158279, 35.358048814101494 ], [ -0.464436408413519, 35.429388128958976 ], [ -0.545361701281479, 35.411973172124192 ], [ -0.302482468990775, 35.669399318923411 ], [ -0.220575324191884, 35.683558660703625 ], [ -0.114380256343793, 35.783759264178684 ], [ -0.043996954995464, 35.714461168448167 ], [ 0.104469435316162, 35.756732490012382 ], [ 0.152115106327074, 35.682628486515398 ], [ 0.229371372091123, 35.695935167573907 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-47", "NAME_1": "Ghardaïa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.085382114093306, 31.658584703221436 ], [ 2.239326205739815, 31.77353892678002 ], [ 2.215296665109008, 31.923297227385092 ], [ 2.34329918820697, 32.132664292922755 ], [ 2.297513869169734, 32.377300523500367 ], [ 2.291467726154622, 32.695989080731465 ], [ 3.100668979789589, 32.830683701991234 ], [ 3.321327344781139, 32.780790107177666 ], [ 3.427470736685166, 32.87551300751926 ], [ 3.738614535932072, 33.000466620238285 ], [ 3.884445427914159, 32.981863104998297 ], [ 4.176210564665837, 33.029637966319058 ], [ 4.978280469667936, 32.840760606416836 ], [ 4.738863559805452, 32.531890571192889 ], [ 4.359145135239771, 32.255990099463475 ], [ 4.110839877558305, 31.791393134085865 ], [ 3.802538283115268, 29.989849352465626 ], [ 3.721509636560484, 29.863345445236064 ], [ 3.479612257999293, 29.636847642804469 ], [ 3.397550082670193, 29.364874578798776 ], [ 3.34447838716784, 29.306557725958271 ], [ 2.9859989761718, 29.123545641018495 ], [ 2.079335971977514, 29.036367499560413 ], [ 1.943426954790141, 30.094804185964392 ], [ 2.071739536250561, 30.859692898008802 ], [ 2.085382114093306, 31.658584703221436 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-03", "NAME_1": "Laghouat" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.291467726154622, 32.695989080731465 ], [ 2.174937370563214, 32.97499013878388 ], [ 2.054221225728952, 33.108909613687729 ], [ 1.975207960778732, 33.292180081045899 ], [ 2.031380242604087, 33.392535712353208 ], [ 2.019287956573919, 33.499040839463134 ], [ 1.776925490019323, 33.831346137014577 ], [ 1.428109572298922, 33.951183782705414 ], [ 1.336228874962615, 34.068928534224426 ], [ 1.64158491361286, 34.256152249526679 ], [ 1.691090935698128, 34.345810858784091 ], [ 1.806226027309322, 34.449086209261111 ], [ 1.981099074162955, 34.506989650951596 ], [ 2.220567660868824, 34.674679674127617 ], [ 2.357716912405579, 34.692869778217641 ], [ 2.295808546826947, 34.439035143257229 ], [ 2.360972528359468, 34.352735500942572 ], [ 2.393735386279047, 34.225301419524897 ], [ 2.48339399643578, 34.113576971699842 ], [ 2.458279250187218, 34.003247788754436 ], [ 2.474867383822698, 33.92371775986669 ], [ 2.639198439156644, 33.911005357111549 ], [ 2.650205518669736, 34.09797068909603 ], [ 2.817637160326683, 34.138846747579294 ], [ 2.949412062416741, 34.263619493145086 ], [ 3.093537632056041, 34.240029202085964 ], [ 3.14924482588799, 34.074767970765208 ], [ 3.232133822617811, 33.947411403713318 ], [ 3.640997755741807, 33.564334011305561 ], [ 4.059060093248718, 33.252518419389503 ], [ 4.176210564665837, 33.029637966319058 ], [ 3.884445427914159, 32.981863104998297 ], [ 3.738614535932072, 33.000466620238285 ], [ 3.427470736685166, 32.87551300751926 ], [ 3.321327344781139, 32.780790107177666 ], [ 3.100668979789589, 32.830683701991234 ], [ 2.291467726154622, 32.695989080731465 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-26", "NAME_1": "Médéa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.249713169427196, 35.559612739236513 ], [ 2.261030308202123, 35.605578925427039 ], [ 2.169511346071772, 35.666815497437256 ], [ 2.16269005670074, 35.708983466213965 ], [ 2.241961704069354, 35.744123440044689 ], [ 2.459364454905653, 36.036999619936466 ], [ 2.571553988925416, 36.099088853567707 ], [ 2.643694288560539, 36.191537990785605 ], [ 2.526388786613211, 36.192778225134987 ], [ 2.486494581859461, 36.241974188857682 ], [ 2.526853874606616, 36.300006821757393 ], [ 2.614083692908082, 36.309670315032974 ], [ 2.661109246294643, 36.363103745741228 ], [ 2.845284051217959, 36.369227403122125 ], [ 2.909827915126186, 36.415245266156091 ], [ 2.996282586172413, 36.353285223734076 ], [ 3.203246698276473, 36.474905707032747 ], [ 3.283035108683293, 36.49017609285238 ], [ 3.422664828918698, 36.407855536004149 ], [ 3.500127801157078, 36.438964749323702 ], [ 3.555524936626512, 36.422945055569812 ], [ 3.583120150674404, 36.338660793960457 ], [ 3.552217644728501, 36.30827505105276 ], [ 3.56436160580347, 36.05097809546271 ], [ 3.633866408008316, 35.889540920876755 ], [ 3.60869998491637, 35.837373562040227 ], [ 3.540900505953573, 35.803938910552233 ], [ 3.543225945920653, 35.672396552458906 ], [ 3.411037631781255, 35.805928452835815 ], [ 3.379515008211058, 35.751203110934796 ], [ 3.336726921809998, 35.747534084730205 ], [ 3.255078159429502, 35.797401842021372 ], [ 3.196425408905498, 35.694462389227851 ], [ 3.081910434918598, 35.67187978852138 ], [ 2.960264113198264, 35.804739895329874 ], [ 2.88424808088422, 35.780503648224737 ], [ 2.893704867685472, 35.620823472825009 ], [ 2.671031121089356, 35.44657054269635 ], [ 2.527008905136825, 35.501192531809863 ], [ 2.285731642401345, 35.439077459756959 ], [ 2.249713169427196, 35.559612739236513 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-14", "NAME_1": "Tiaret" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.346460809019106, 35.68981151019301 ], [ 1.469192336357253, 35.648031114144601 ], [ 1.492343376945257, 35.594881904276463 ], [ 1.559057651189619, 35.606095689364565 ], [ 1.634608594610938, 35.5504660098984 ], [ 1.692021111684937, 35.580490016700878 ], [ 1.744937777556402, 35.551938788244456 ], [ 2.249713169427196, 35.559612739236513 ], [ 2.286816847119781, 35.329265042547661 ], [ 2.360042352372659, 35.287975572015 ], [ 2.379317661181119, 35.205009060020075 ], [ 2.620284864654764, 35.031143704418412 ], [ 2.523443230820419, 34.999104316011369 ], [ 2.460294630892463, 34.870171616926541 ], [ 2.369964227167316, 34.776301378206028 ], [ 2.357716912405579, 34.692869778217641 ], [ 2.220567660868824, 34.674679674127617 ], [ 1.981099074162955, 34.506989650951596 ], [ 1.806226027309322, 34.449086209261111 ], [ 1.691090935698128, 34.345810858784091 ], [ 1.64158491361286, 34.256152249526679 ], [ 1.336228874962615, 34.068928534224426 ], [ 1.231480747038859, 34.191892605559303 ], [ 1.023689812634757, 34.191246650412552 ], [ 1.031958041930068, 34.339351305518335 ], [ 0.973718702556084, 34.382087714176635 ], [ 0.75760786291255, 34.438182480736884 ], [ 0.856878288602104, 34.499858303218105 ], [ 0.693529086997728, 34.736329658187174 ], [ 0.667432488818292, 34.84221466677343 ], [ 0.781637404442677, 34.972697659469361 ], [ 0.652549675726959, 35.089796454043096 ], [ 0.492249382702823, 35.086334133413516 ], [ 0.617771437102135, 35.276038316515098 ], [ 0.684330681715551, 35.299551093208379 ], [ 0.778536818119676, 35.279371445935453 ], [ 0.819981317383906, 35.30611400016096 ], [ 0.880494418982266, 35.386367499460505 ], [ 0.827887810573998, 35.443469957272669 ], [ 0.881114535707241, 35.443702501269399 ], [ 0.959456007988365, 35.54775299720302 ], [ 1.01795372888148, 35.544238999730055 ], [ 1.010977409879558, 35.575038153787773 ], [ 1.206210972058727, 35.645679837554439 ], [ 1.292458936630624, 35.617645372136167 ], [ 1.346460809019106, 35.68981151019301 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-28", "NAME_1": "M'Sila" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.05445153161287, 35.777325548435272 ], [ 5.226223993042822, 35.664024970376033 ], [ 5.379702995796606, 35.632915757955857 ], [ 5.1737724142655, 35.510339260248657 ], [ 5.022980583986737, 35.520674547092653 ], [ 4.963242628744297, 35.4887901883165 ], [ 4.876477899335555, 35.519150091903214 ], [ 4.888880242828918, 35.299861152470214 ], [ 4.779016146977597, 35.172840481303126 ], [ 5.038638543434047, 35.083311062355619 ], [ 5.041119012132697, 34.918644111136814 ], [ 4.932805209892535, 34.838907375774738 ], [ 4.394646844276451, 34.746587428866746 ], [ 4.184427118017084, 34.508204046879257 ], [ 4.316460401626216, 34.251785590432632 ], [ 4.213727655307025, 34.232200222362337 ], [ 4.047691277630349, 34.354079088079459 ], [ 4.036374138855422, 34.441929023105899 ], [ 3.921084019411978, 34.672664293422372 ], [ 3.914417758772515, 34.758602200531129 ], [ 3.67112511623111, 34.790279852832896 ], [ 3.599243198115062, 34.886320501889656 ], [ 3.571803012798796, 35.005227973392209 ], [ 3.608079868191339, 35.0659736189873 ], [ 3.532838983132535, 35.054449775536682 ], [ 3.47356611498418, 35.157957669111113 ], [ 3.664872266741725, 35.294900214173538 ], [ 3.657585890276607, 35.374146023120431 ], [ 3.695929803217837, 35.472047024150811 ], [ 3.436927524385737, 35.671983141308885 ], [ 3.379515008211058, 35.751203110934796 ], [ 3.394294467615566, 35.793836167704967 ], [ 3.432276646250216, 35.796600857243732 ], [ 3.543225945920653, 35.672396552458906 ], [ 3.536714714912137, 35.792234199049005 ], [ 3.60869998491637, 35.837373562040227 ], [ 3.628440382617555, 35.922794705211459 ], [ 3.735513949609071, 35.929977728889071 ], [ 3.850804070851154, 35.861971544351263 ], [ 3.954156934794696, 35.890755316804416 ], [ 4.022266473019329, 35.866854967382835 ], [ 4.084329868228849, 36.029093125847055 ], [ 4.136316359012767, 35.995632635937397 ], [ 4.214812860025461, 36.016613267987907 ], [ 4.379143913560767, 35.991085109690061 ], [ 4.494123976440335, 36.02844717070036 ], [ 4.540839470565118, 35.942147529285023 ], [ 4.449268833389965, 35.869697171287385 ], [ 4.466683791124069, 35.832283434333021 ], [ 4.620782912401467, 35.823601792988313 ], [ 4.854928827403455, 35.873159491917022 ], [ 5.05445153161287, 35.777325548435272 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-05", "NAME_1": "Batna" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.94018558060003, 35.862126573082833 ], [ 5.976669141567641, 35.915792547787817 ], [ 6.275513950108689, 35.866079820127595 ], [ 6.351064894429328, 35.884735012211024 ], [ 6.47694868313522, 35.840396633098123 ], [ 6.487025587560822, 35.781433824211604 ], [ 6.649496290921093, 35.796678372508836 ], [ 6.769127231036862, 35.683920395909524 ], [ 6.781684605060491, 35.562558295029248 ], [ 6.592703892370707, 35.436958727163528 ], [ 6.584022251026056, 35.34332103154037 ], [ 6.628360630138957, 35.316862698154978 ], [ 6.514930860870493, 35.119717108957389 ], [ 6.512140333809327, 35.052382717088676 ], [ 6.598595004855554, 34.900350654259285 ], [ 6.58102501838988, 34.769660955988286 ], [ 6.508729689123868, 34.775500393428388 ], [ 6.439845005442635, 34.838261419728724 ], [ 6.459533726300435, 35.016984360839558 ], [ 6.429303013023627, 35.064785061481359 ], [ 6.279079624425094, 35.049256293243332 ], [ 6.166580031143496, 34.992076321065326 ], [ 6.072218866007859, 35.058583888835358 ], [ 5.993102248270134, 34.989363308369946 ], [ 5.927008090750803, 35.061684475158359 ], [ 5.932279087409938, 35.143565782434905 ], [ 6.005349562132551, 35.226273912011436 ], [ 5.830631544909863, 35.288440660008405 ], [ 5.554886101912075, 35.191392319699787 ], [ 5.610748325374914, 35.126383367798155 ], [ 5.596640658639501, 35.091760158804277 ], [ 5.306012404348962, 35.021428534299389 ], [ 5.184831169722713, 35.031040350731587 ], [ 5.004325391903308, 35.08545563427009 ], [ 4.925053745434013, 35.142196356876354 ], [ 4.782426791663113, 35.166871853553175 ], [ 4.888880242828918, 35.299861152470214 ], [ 4.880198602383587, 35.525402940493279 ], [ 4.963242628744297, 35.4887901883165 ], [ 5.022980583986737, 35.520674547092653 ], [ 5.1737724142655, 35.510339260248657 ], [ 5.438200717589041, 35.641855780819583 ], [ 5.476854688892786, 35.736087754746052 ], [ 5.575091586707345, 35.818279120385057 ], [ 5.736425409405115, 35.771046861423486 ], [ 5.761901889960257, 35.810915229554155 ], [ 5.71379113095594, 35.860421250740103 ], [ 5.80009077327054, 35.913467108720056 ], [ 5.94018558060003, 35.862126573082833 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-40", "NAME_1": "Khenchela" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.599680209573989, 35.327818101724006 ], [ 6.592703892370707, 35.436958727163528 ], [ 6.781684605060491, 35.562558295029248 ], [ 6.769127231036862, 35.683920395909524 ], [ 6.82498945539902, 35.623562323942053 ], [ 7.00327314603885, 35.629815172532176 ], [ 7.051228875412278, 35.577182725702187 ], [ 7.141197543931469, 35.617464504982877 ], [ 7.267546420630822, 35.621236883974973 ], [ 7.30335818892928, 35.600695502395524 ], [ 7.315037062010788, 35.535247300922151 ], [ 7.385161980940666, 35.571756700311425 ], [ 7.462263217973145, 35.539123032701752 ], [ 7.544842157239771, 35.447810777045675 ], [ 7.413067254250393, 35.38662588097958 ], [ 7.411516960639233, 35.156097317137437 ], [ 7.222226189586991, 34.94629100202809 ], [ 7.26553103992552, 34.832344468822157 ], [ 7.264445835207141, 34.940632433539974 ], [ 7.30831912632658, 34.977193507973993 ], [ 7.365886672132206, 34.962465725412869 ], [ 7.402835321093164, 34.74604482740682 ], [ 7.274057650739962, 34.540734360802105 ], [ 7.135771519440084, 34.16057668756406 ], [ 6.960588413324615, 34.193933823786892 ], [ 6.714970329916753, 34.326613064341416 ], [ 6.696521844307654, 34.475828761687978 ], [ 6.748456659147507, 34.726097724130625 ], [ 6.714350213191778, 34.788522854546102 ], [ 6.587897982805657, 34.778549302908004 ], [ 6.570483025970873, 34.839010728562243 ], [ 6.598595004855554, 34.900350654259285 ], [ 6.512140333809327, 35.052382717088676 ], [ 6.569707878715633, 35.253455714909308 ], [ 6.628360630138957, 35.316862698154978 ], [ 6.599680209573989, 35.327818101724006 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-24", "NAME_1": "Guelma" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.010559523403288, 36.155157783504876 ], [ 7.04564782128989, 36.275770575551576 ], [ 6.93795413577476, 36.432866930364526 ], [ 7.075723504036489, 36.502552598823343 ], [ 7.077118768016703, 36.545263169959298 ], [ 7.123989291772375, 36.585829169180784 ], [ 7.314727003648272, 36.651613268337655 ], [ 7.3672819352131, 36.721376451162257 ], [ 7.456837191683064, 36.693057765803246 ], [ 7.475595736553998, 36.638849188739073 ], [ 7.533783399983918, 36.615388088889176 ], [ 7.697029249700108, 36.657736924819176 ], [ 7.771546665246376, 36.581643378139347 ], [ 7.98786421136424, 36.484388333155039 ], [ 7.871437208560337, 36.432582709524411 ], [ 7.795266148413987, 36.440980130028947 ], [ 7.835005324436167, 36.334862576546641 ], [ 7.813869662754712, 36.304916083210628 ], [ 7.410431755920797, 36.181254380785049 ], [ 7.357515090049333, 36.129758816416199 ], [ 7.223776483198151, 36.144099026249023 ], [ 7.194889357058173, 36.080743719846794 ], [ 7.133601108204573, 36.053148504899582 ], [ 7.066421745966807, 36.047283229937079 ], [ 7.010559523403288, 36.155157783504876 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-25", "NAME_1": "Constantine" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.93795413577476, 36.432866930364526 ], [ 7.048283318720166, 36.238408515440597 ], [ 7.010559523403288, 36.155157783504876 ], [ 6.898525018115095, 36.10689199486967 ], [ 6.87992150197573, 36.146424465316784 ], [ 6.772692905353267, 36.192442328350751 ], [ 6.577149285710959, 36.10919159641503 ], [ 6.468370396376656, 36.273806870790452 ], [ 6.317733594829519, 36.36783214004123 ], [ 6.47849897584706, 36.428965359263884 ], [ 6.465579868416171, 36.490641180845785 ], [ 6.504078810089027, 36.577715969516362 ], [ 6.599370151211474, 36.57399526646833 ], [ 6.652441846713828, 36.607895005949729 ], [ 6.777188754757219, 36.556270250371711 ], [ 6.920125766890635, 36.557148749515136 ], [ 6.904106073136745, 36.529036769731135 ], [ 6.845453321713421, 36.5314138865416 ], [ 6.818013136397099, 36.466818345789989 ], [ 6.93795413577476, 36.432866930364526 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-43", "NAME_1": "Mila" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.810167676796823, 36.431135768700756 ], [ 5.766242709733262, 36.45260732716639 ], [ 5.737200554861715, 36.555133367910571 ], [ 5.904322137256827, 36.545521552377693 ], [ 6.023229607860117, 36.605931301188605 ], [ 6.215310906872844, 36.582625230070278 ], [ 6.294582554241458, 36.624069729334508 ], [ 6.504078810089027, 36.577715969516362 ], [ 6.465579868416171, 36.490641180845785 ], [ 6.47849897584706, 36.428965359263884 ], [ 6.317733594829519, 36.36783214004123 ], [ 6.468370396376656, 36.273806870790452 ], [ 6.525007765296095, 36.204663804690824 ], [ 6.516326124850764, 36.16564809818118 ], [ 6.406151970636927, 36.11030263955513 ], [ 6.378556755689715, 36.013254299246512 ], [ 6.170300734191528, 35.951242580880375 ], [ 6.149216750252833, 35.900392970758958 ], [ 5.976669141567641, 35.915792547787817 ], [ 5.983335402207047, 36.058471178402158 ], [ 5.89936119985947, 36.16967886049099 ], [ 5.933519320859943, 36.224972643172919 ], [ 5.866029901158981, 36.255410061125417 ], [ 5.872386101637289, 36.401886909153518 ], [ 5.810167676796823, 36.431135768700756 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-04", "NAME_1": "Oum el Bouaghi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.275513950108689, 35.866079820127595 ], [ 6.149216750252833, 35.900392970758958 ], [ 6.151387159689648, 35.935274563070607 ], [ 6.378556755689715, 36.013254299246512 ], [ 6.406151970636927, 36.11030263955513 ], [ 6.477103712766109, 36.158620103235137 ], [ 6.516326124850764, 36.16564809818118 ], [ 6.584797397381976, 36.108700669999905 ], [ 6.772692905353267, 36.192442328350751 ], [ 6.87992150197573, 36.146424465316784 ], [ 6.898525018115095, 36.10689199486967 ], [ 7.010559523403288, 36.155157783504876 ], [ 7.078979119990379, 36.042503159693069 ], [ 7.194889357058173, 36.080743719846794 ], [ 7.223776483198151, 36.144099026249023 ], [ 7.290800814905651, 36.143323879893103 ], [ 7.325889112792311, 36.127407538027455 ], [ 7.324958936805501, 36.080020250334258 ], [ 7.398339470789949, 35.967003893115134 ], [ 7.577243279953393, 35.833497830260626 ], [ 7.660132276683214, 35.834195462250761 ], [ 7.734598016285418, 35.934499416714687 ], [ 7.865856154437949, 35.858715929296693 ], [ 7.823378127298724, 35.739007473016443 ], [ 7.840741408189444, 35.615164903437517 ], [ 7.544842157239771, 35.447810777045675 ], [ 7.462263217973145, 35.539123032701752 ], [ 7.385161980940666, 35.571756700311425 ], [ 7.315037062010788, 35.535247300922151 ], [ 7.30335818892928, 35.600695502395524 ], [ 7.267546420630822, 35.621236883974973 ], [ 7.141197543931469, 35.617464504982877 ], [ 7.083009881400869, 35.576872667339728 ], [ 6.992576124888217, 35.631985581968991 ], [ 6.82498945539902, 35.623562323942053 ], [ 6.649496290921093, 35.796678372508836 ], [ 6.487025587560822, 35.781433824211604 ], [ 6.466820102765496, 35.846391100169114 ], [ 6.339437697291885, 35.88680206975971 ], [ 6.275513950108689, 35.866079820127595 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-07", "NAME_1": "Biskra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.83208784337927, 34.819244493338658 ], [ 4.932805209892535, 34.838907375774738 ], [ 5.028406610276818, 34.900195623729019 ], [ 5.038638543434047, 35.083311062355619 ], [ 5.272474399174143, 35.018431300763893 ], [ 5.536747673766115, 35.0663611917156 ], [ 5.613538853335399, 35.1064362663206 ], [ 5.554886101912075, 35.191392319699787 ], [ 5.830631544909863, 35.288440660008405 ], [ 6.005349562132551, 35.226273912011436 ], [ 5.932279087409938, 35.143565782434905 ], [ 5.927008090750803, 35.061684475158359 ], [ 5.993102248270134, 34.989363308369946 ], [ 6.072218866007859, 35.058583888835358 ], [ 6.166580031143496, 34.992076321065326 ], [ 6.279079624425094, 35.049256293243332 ], [ 6.429303013023627, 35.064785061481359 ], [ 6.459533726300435, 35.016984360839558 ], [ 6.439845005442635, 34.838261419728724 ], [ 6.540407342324954, 34.765681871421236 ], [ 6.714350213191778, 34.788522854546102 ], [ 6.749541863865886, 34.712222602291263 ], [ 6.695901726683303, 34.376093248004963 ], [ 6.558545769571595, 34.317027086330938 ], [ 6.211435174193923, 34.428415636472437 ], [ 5.998528272761575, 34.394955146562722 ], [ 5.477164748154564, 34.449835517195368 ], [ 5.311748488102239, 34.498256334562143 ], [ 5.29903608624636, 34.449060369940128 ], [ 5.217232293335655, 34.411956692247543 ], [ 5.185451287347007, 34.356662909565614 ], [ 5.359859246207236, 34.166209418529832 ], [ 5.37381188331176, 34.058386541805419 ], [ 5.334847852746179, 33.845996406109236 ], [ 5.121785922582262, 33.572679754966714 ], [ 4.406635775720474, 33.927645169389052 ], [ 4.335063917765581, 33.986039537494662 ], [ 4.298477004010522, 34.135797838099734 ], [ 4.210627068984024, 34.174606839034368 ], [ 4.213727655307025, 34.232200222362337 ], [ 4.316460401626216, 34.251785590432632 ], [ 4.184427118017084, 34.508204046879257 ], [ 4.273310580918576, 34.625845444711501 ], [ 4.434696078661091, 34.772658189523781 ], [ 4.83208784337927, 34.819244493338658 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "DZ-17", "NAME_1": "Djelfa" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.978280469667936, 32.840760606416836 ], [ 4.176210564665837, 33.029637966319058 ], [ 4.059060093248718, 33.252518419389503 ], [ 3.640997755741807, 33.564334011305561 ], [ 3.232133822617811, 33.947411403713318 ], [ 3.14924482588799, 34.074767970765208 ], [ 3.093537632056041, 34.240029202085964 ], [ 2.949412062416741, 34.263619493145086 ], [ 2.817637160326683, 34.138846747579294 ], [ 2.650205518669736, 34.09797068909603 ], [ 2.639198439156644, 33.911005357111549 ], [ 2.474867383822698, 33.92371775986669 ], [ 2.458279250187218, 34.003247788754436 ], [ 2.48339399643578, 34.113576971699842 ], [ 2.393735386279047, 34.225301419524897 ], [ 2.293483106859867, 34.474950263443873 ], [ 2.309451124669636, 34.563420315195344 ], [ 2.364383172145665, 34.639591376241015 ], [ 2.369964227167316, 34.776301378206028 ], [ 2.460294630892463, 34.870171616926541 ], [ 2.523443230820419, 34.999104316011369 ], [ 2.620284864654764, 35.031143704418412 ], [ 2.379317661181119, 35.205009060020075 ], [ 2.360042352372659, 35.287975572015 ], [ 2.286816847119781, 35.329265042547661 ], [ 2.285731642401345, 35.439077459756959 ], [ 2.527008905136825, 35.501192531809863 ], [ 2.619819776661359, 35.445692044452244 ], [ 2.687154167630695, 35.453701891329217 ], [ 2.893704867685472, 35.620823472825009 ], [ 2.88424808088422, 35.780503648224737 ], [ 2.960264113198264, 35.804739895329874 ], [ 3.081910434918598, 35.67187978852138 ], [ 3.196425408905498, 35.694462389227851 ], [ 3.255078159429502, 35.797401842021372 ], [ 3.305979444595664, 35.754587918097911 ], [ 3.379515008211058, 35.751203110934796 ], [ 3.449691603085, 35.659115708922798 ], [ 3.680426873401473, 35.495559800844092 ], [ 3.664872266741725, 35.294900214173538 ], [ 3.47356611498418, 35.157957669111113 ], [ 3.532838983132535, 35.054449775536682 ], [ 3.608079868191339, 35.0659736189873 ], [ 3.572113071161311, 35.001688137497524 ], [ 3.599243198115062, 34.886320501889656 ], [ 3.658826124625932, 34.805576077074249 ], [ 3.914417758772515, 34.758602200531129 ], [ 3.921084019411978, 34.672664293422372 ], [ 4.036374138855422, 34.441929023105899 ], [ 4.047691277630349, 34.354079088079459 ], [ 4.213727655307025, 34.232200222362337 ], [ 4.218068475080031, 34.166235256052232 ], [ 4.298477004010522, 34.135797838099734 ], [ 4.362400750294398, 33.957384955351415 ], [ 5.121785922582262, 33.572679754966714 ], [ 5.008046094951283, 33.441886704807587 ], [ 4.95311404837463, 33.24148550145469 ], [ 4.978280469667936, 32.840760606416836 ] ] ] } }
]
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -19,7 +19,7 @@
{ "type": "Feature", "properties": { "ISO": "FR-09", "NAME_1": "Ariège" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.921111287000116, 42.784366354000085 ], [ 0.856102336000077, 42.812762553000098 ], [ 0.837560609134812, 42.907329288315964 ], [ 0.869157290076885, 42.925006291407215 ], [ 0.886603580191036, 42.958987005845643 ], [ 0.956432684220999, 42.967127874951473 ], [ 0.992248115458153, 42.990309028438901 ], [ 0.996598700969287, 43.094690135841063 ], [ 1.038434640046603, 43.109499706346355 ], [ 1.065065501171944, 43.144106641208509 ], [ 1.130631909534998, 43.155213819761968 ], [ 1.24269246098828, 43.088779490980698 ], [ 1.290109455087247, 43.123452343450879 ], [ 1.220456131645165, 43.169572951330622 ], [ 1.236584062404518, 43.184800002418172 ], [ 1.349391683379451, 43.204300735290701 ], [ 1.382306723676322, 43.231316117744598 ], [ 1.315509846702071, 43.259836626259244 ], [ 1.301337482738631, 43.27281148086513 ], [ 1.30566609601351, 43.299046832745091 ], [ 1.325771077073512, 43.30844014359775 ], [ 1.373781333241936, 43.296465045525395 ], [ 1.419836022614334, 43.261396684709212 ], [ 1.417067467789423, 43.2263722692648 ], [ 1.440929773190476, 43.212968948857906 ], [ 1.490016688719209, 43.226635941495488 ], [ 1.504562587893133, 43.249476519026132 ], [ 1.488544521012841, 43.279831744339504 ], [ 1.515219326610634, 43.296728717756082 ], [ 1.630509857943593, 43.244873246503118 ], [ 1.675268161096767, 43.274481402294839 ], [ 1.702558201000159, 43.266736040635749 ], [ 1.696515720024422, 43.243851518632653 ], [ 1.719059666070734, 43.183415725455347 ], [ 1.77491416075992, 43.152203565841887 ], [ 1.94544395247641, 43.103808788344907 ], [ 1.960319441489048, 43.069102976621025 ], [ 1.942653424515925, 43.0458449194075 ], [ 1.973503035936346, 43.022773628899813 ], [ 1.992311629877804, 42.967347601810332 ], [ 1.941554792020042, 42.935058781937187 ], [ 1.974601668432229, 42.913404728545345 ], [ 1.985631942360214, 42.87306293030997 ], [ 1.894071880312993, 42.848189882257259 ], [ 1.865485453291001, 42.815890076265987 ], [ 1.910199810173083, 42.790621520766535 ], [ 1.9179561579503, 42.752147397684212 ], [ 1.973503035936346, 42.73083392114853 ], [ 2.075148546867922, 42.743907651716711 ], [ 2.168752066454715, 42.670057551115065 ], [ 2.154008413557449, 42.656445489967382 ], [ 1.994157332794657, 42.652874933231544 ], [ 1.962802351847074, 42.621761650479755 ], [ 1.956298444917309, 42.587033866519675 ], [ 1.92850303368806, 42.569181082840657 ], [ 1.872824320486018, 42.578980887258126 ], [ 1.761107147000132, 42.567646197 ], [ 1.713310995000086, 42.589546204000058 ], [ 1.721992635000049, 42.609855042000063 ], [ 1.608304484000143, 42.618123271000016 ], [ 1.543088827000133, 42.649361674000019 ], [ 1.466814412000105, 42.641455180000051 ], [ 1.451414835826029, 42.602051901673917 ], [ 1.42929732200011, 42.59538564100005 ], [ 1.361084432000069, 42.686723735000058 ], [ 1.338243449000061, 42.694449361000053 ], [ 1.342584269000042, 42.708660381000115 ], [ 1.151484823000118, 42.706722514 ], [ 1.089059692000149, 42.771318054000048 ], [ 0.950256795000143, 42.796122742000065 ], [ 0.921111287000116, 42.784366354000085 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "FR-66", "NAME_1": "Pyrénées-Orientales" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.717091134804584, 42.539890071086553 ], [ 1.761107147000132, 42.567646197 ], [ 1.938302839004791, 42.571795828414736 ], [ 1.96761436331218, 42.629023613948618 ], [ 2.005649032676729, 42.656126886246795 ], [ 2.166074435786584, 42.663835145475559 ], [ 2.189450309584117, 42.652160822064275 ], [ 2.264684687148588, 42.708938167762199 ], [ 2.32256066624177, 42.708037288989658 ], [ 2.35116906549996, 42.730163754453656 ], [ 2.330910276088332, 42.82240496931388 ], [ 2.341193479595404, 42.837445252796158 ], [ 2.374987425529241, 42.847256044231017 ], [ 2.703962047910181, 42.834039491429337 ], [ 2.783920547095533, 42.889839053729304 ], [ 2.855309709575408, 42.913800235992085 ], [ 3.0462758278677, 42.837076341874791 ], [ 3.037608269000089, 42.683213609000063 ], [ 3.051849806000064, 42.554877020000049 ], [ 3.137380405000044, 42.52492910400008 ], [ 3.181569858000046, 42.43508535400008 ], [ 3.086147094000097, 42.427178854000047 ], [ 3.029613077000135, 42.465651957 ], [ 2.933701619000061, 42.470225322000019 ], [ 2.850812622000149, 42.44836619100009 ], [ 2.788594198000055, 42.412011821000092 ], [ 2.690408976000072, 42.406172384000016 ], [ 2.640282837000143, 42.372841085000076 ], [ 2.662193644000098, 42.339018861000071 ], [ 2.548092081000107, 42.352248027000073 ], [ 2.514812459000069, 42.325660503000037 ], [ 2.445566040000131, 42.351963806000086 ], [ 2.422518351000065, 42.383693136000019 ], [ 2.277410930000144, 42.428625794000126 ], [ 2.136954386000099, 42.416223450000061 ], [ 2.063263794000079, 42.35790659700011 ], [ 2.009210245000077, 42.347080383000062 ], [ 1.963734985000116, 42.367234192000055 ], [ 1.927458129000058, 42.436894023000079 ], [ 1.712174112944922, 42.493712260112716 ], [ 1.717091134804584, 42.539890071086553 ] ], [ [ 1.983372030000055, 42.44126068100006 ], [ 1.99949507600013, 42.443896180000067 ], [ 1.967972453000073, 42.485702413000027 ], [ 1.956603638000075, 42.481775005000074 ], [ 1.947508585000122, 42.451234233000079 ], [ 1.983372030000055, 42.44126068100006 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "FR-67", "NAME_1": "Bas-Rhin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.644932350047895, 49.036295448176361 ], [ 7.773664591000113, 49.048118388 ], [ 7.931897827000114, 49.034837546000077 ], [ 8.090441121000083, 48.979182028000068 ], [ 8.200305216000032, 48.958563131000048 ], [ 8.090337769000143, 48.807512920000093 ], [ 8.038764689000061, 48.790769756000074 ], [ 8.017267293000117, 48.761830954000104 ], [ 7.970138387000105, 48.757283427000075 ], [ 7.959182983000119, 48.72136830700002 ], [ 7.852419475000119, 48.658684794000081 ], [ 7.810251506000071, 48.615018209000098 ], [ 7.801673217000115, 48.547580465000081 ], [ 7.813455444000027, 48.519468486000036 ], [ 7.776455119000076, 48.498177796000064 ], [ 7.738317912000099, 48.406607158000085 ], [ 7.75072025500009, 48.341365662000058 ], [ 7.702454467000081, 48.311186625000047 ], [ 7.687158243000113, 48.252921448000038 ], [ 7.613364298000079, 48.179205018000104 ], [ 7.581976474333016, 48.121353059320732 ], [ 7.543285963176629, 48.122901997828933 ], [ 7.51443586392395, 48.151477437833478 ], [ 7.470073069116836, 48.160156637518753 ], [ 7.466096018816188, 48.207277001032764 ], [ 7.303454410992288, 48.259956446432852 ], [ 7.291567202764156, 48.293508693271576 ], [ 7.208730285774038, 48.303407375449979 ], [ 7.188537413970494, 48.331005032955886 ], [ 7.109875301903628, 48.342266019860915 ], [ 7.127717099464576, 48.484099520676295 ], [ 7.14885479541249, 48.499886875478921 ], [ 7.088649715212171, 48.523441563277515 ], [ 7.193019836496262, 48.533527013061189 ], [ 7.262892885897941, 48.57579141883889 ], [ 7.300422183936632, 48.655640055044501 ], [ 7.264914370301938, 48.684885661743863 ], [ 7.317670719428122, 48.755890302895125 ], [ 7.216332825199686, 48.829839280358499 ], [ 7.204401672499159, 48.854173997831708 ], [ 7.183879210856901, 48.82462077442915 ], [ 7.103217586622293, 48.792529708279403 ], [ 7.074938777202817, 48.824543869803733 ], [ 7.096384089853871, 48.858030199034431 ], [ 6.9995505903874, 48.889363208645136 ], [ 6.977072561949171, 48.917532155084871 ], [ 7.042858697171141, 48.97734172693913 ], [ 7.086430476185512, 49.064551203475219 ], [ 7.119191708130813, 49.056388361233871 ], [ 7.145427060910094, 49.00990520516109 ], [ 7.284448062428112, 48.977473563054446 ], [ 7.301806461798776, 48.954742849402976 ], [ 7.341708806316319, 48.943371999518149 ], [ 7.490683421502695, 48.958851736718259 ], [ 7.564072096150312, 48.939647634430742 ], [ 7.644932350047895, 49.036295448176361 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "FR-68", "NAME_1": "Haut-Rhin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.581976474333016, 48.121353059320732 ], [ 7.575743856000145, 48.053708802000088 ], [ 7.618945353000072, 48.00265248700002 ], [ 7.621115763000063, 47.971439922000044 ], [ 7.584942261000037, 47.940408224000109 ], [ 7.55900069100008, 47.882711488000027 ], [ 7.561997925000099, 47.839225769000038 ], [ 7.542877645000118, 47.829433086000066 ], [ 7.525927775000099, 47.783156840000075 ], [ 7.537813355000139, 47.731816304000048 ], [ 7.511871785000096, 47.707321676000092 ], [ 7.517866251000015, 47.675023906000021 ], [ 7.590316609000098, 47.607947896000084 ], [ 7.586028488000125, 47.584618544000065 ], [ 7.482726278000058, 47.542267151000047 ], [ 7.505463908000138, 47.523017681000013 ], [ 7.476938517000093, 47.514878643000102 ], [ 7.485826864000103, 47.495784200000102 ], [ 7.467430053000101, 47.481909078000044 ], [ 7.414306681000085, 47.490177307000081 ], [ 7.429292847000056, 47.465114238000083 ], [ 7.406348511000118, 47.438242493000061 ], [ 7.2380900470001, 47.416796773000058 ], [ 7.168326863000061, 47.44356516500001 ], [ 7.180832560000056, 47.48826528000005 ], [ 7.142169389000088, 47.48765096800004 ], [ 7.142900205180297, 47.540253049138869 ], [ 7.079750788667923, 47.590921997152407 ], [ 7.023434868924028, 47.60598425287094 ], [ 7.057887995434612, 47.666442019183819 ], [ 7.050307428245219, 47.71558386710177 ], [ 6.870153612699028, 47.802255012159037 ], [ 6.86892314408783, 47.818998177224103 ], [ 6.923854786868901, 47.843179086345742 ], [ 6.91495586032471, 47.875687632178483 ], [ 6.951760061077948, 47.956964490718633 ], [ 7.081157038766321, 48.104609760432083 ], [ 7.083156550934063, 48.164507223929206 ], [ 7.208730285774038, 48.303407375449979 ], [ 7.291567202764156, 48.293508693271576 ], [ 7.303454410992288, 48.259956446432852 ], [ 7.466096018816188, 48.207277001032764 ], [ 7.470073069116836, 48.160156637518753 ], [ 7.51443586392395, 48.151477437833478 ], [ 7.525927563806022, 48.127395405573509 ], [ 7.581976474333016, 48.121353059320732 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "FR-68", "NAME_1": "Haute-Rhin" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.581976474333016, 48.121353059320732 ], [ 7.575743856000145, 48.053708802000088 ], [ 7.618945353000072, 48.00265248700002 ], [ 7.621115763000063, 47.971439922000044 ], [ 7.584942261000037, 47.940408224000109 ], [ 7.55900069100008, 47.882711488000027 ], [ 7.561997925000099, 47.839225769000038 ], [ 7.542877645000118, 47.829433086000066 ], [ 7.525927775000099, 47.783156840000075 ], [ 7.537813355000139, 47.731816304000048 ], [ 7.511871785000096, 47.707321676000092 ], [ 7.517866251000015, 47.675023906000021 ], [ 7.590316609000098, 47.607947896000084 ], [ 7.586028488000125, 47.584618544000065 ], [ 7.482726278000058, 47.542267151000047 ], [ 7.505463908000138, 47.523017681000013 ], [ 7.476938517000093, 47.514878643000102 ], [ 7.485826864000103, 47.495784200000102 ], [ 7.467430053000101, 47.481909078000044 ], [ 7.414306681000085, 47.490177307000081 ], [ 7.429292847000056, 47.465114238000083 ], [ 7.406348511000118, 47.438242493000061 ], [ 7.2380900470001, 47.416796773000058 ], [ 7.168326863000061, 47.44356516500001 ], [ 7.180832560000056, 47.48826528000005 ], [ 7.142169389000088, 47.48765096800004 ], [ 7.142900205180297, 47.540253049138869 ], [ 7.079750788667923, 47.590921997152407 ], [ 7.023434868924028, 47.60598425287094 ], [ 7.057887995434612, 47.666442019183819 ], [ 7.050307428245219, 47.71558386710177 ], [ 6.870153612699028, 47.802255012159037 ], [ 6.86892314408783, 47.818998177224103 ], [ 6.923854786868901, 47.843179086345742 ], [ 6.91495586032471, 47.875687632178483 ], [ 6.951760061077948, 47.956964490718633 ], [ 7.081157038766321, 48.104609760432083 ], [ 7.083156550934063, 48.164507223929206 ], [ 7.208730285774038, 48.303407375449979 ], [ 7.291567202764156, 48.293508693271576 ], [ 7.303454410992288, 48.259956446432852 ], [ 7.466096018816188, 48.207277001032764 ], [ 7.470073069116836, 48.160156637518753 ], [ 7.51443586392395, 48.151477437833478 ], [ 7.525927563806022, 48.127395405573509 ], [ 7.581976474333016, 48.121353059320732 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "FR-90", "NAME_1": "Territoire de Belfort" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.053915242000073, 47.490384013000053 ], [ 6.973300008000137, 47.48909210300009 ], [ 6.990973348000068, 47.452220968000077 ], [ 6.939169949951677, 47.426844260931965 ], [ 6.914428516762598, 47.487002314804954 ], [ 6.919152638383537, 47.53415563757261 ], [ 6.89375224676877, 47.551755735139068 ], [ 6.824845993747601, 47.547613889469403 ], [ 6.807070114694, 47.56286291369247 ], [ 6.759081831661206, 47.722790898181358 ], [ 6.784767867742914, 47.779974738343469 ], [ 6.836011674099495, 47.824165475756104 ], [ 6.86892314408783, 47.818998177224103 ], [ 6.882721972840784, 47.791037971525157 ], [ 7.050307428245219, 47.71558386710177 ], [ 7.057887995434612, 47.666442019183819 ], [ 7.023434868924028, 47.60598425287094 ], [ 7.079750788667923, 47.590921997152407 ], [ 7.151491514122085, 47.519060421701056 ], [ 7.142169389000088, 47.48765096800004 ], [ 7.053915242000073, 47.490384013000053 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "FR-25", "NAME_1": "Doubs" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.939169949951677, 47.426844260931965 ], [ 6.866639852000077, 47.354164937000021 ], [ 7.003995809000088, 47.368143413000027 ], [ 7.044303426000056, 47.34049652100002 ], [ 7.036551961000043, 47.329515279000034 ], [ 6.958623901000067, 47.290551250000036 ], [ 6.956246785000104, 47.245231018000126 ], [ 6.689699747000105, 47.078290304000078 ], [ 6.676263875000132, 47.062399801000041 ], [ 6.688252807000111, 47.043847961000026 ], [ 6.665411824000103, 47.021291199000089 ], [ 6.598697550000082, 46.986538798000041 ], [ 6.442634725000062, 46.944164124000039 ], [ 6.427751913000122, 46.909075827 ], [ 6.4467688390001, 46.857709453000027 ], [ 6.417106568000122, 46.802157288000032 ], [ 6.432609497000044, 46.785982565000054 ], [ 6.429198853000116, 46.76081614200011 ], [ 6.131852661000039, 46.595606588000024 ], [ 6.118416789000065, 46.583462626000127 ], [ 6.137978215924945, 46.557587778130546 ], [ 6.085246356134405, 46.579861167159095 ], [ 6.053781511307704, 46.616346764191803 ], [ 6.095617450385021, 46.648723474808492 ], [ 6.08335670784578, 46.691009852822447 ], [ 6.206645286950447, 46.766398039637807 ], [ 6.082016376254728, 46.846664155526355 ], [ 6.024755631467201, 46.858188814662014 ], [ 5.993510513499359, 46.895575290467264 ], [ 5.984216079508428, 46.949287450755207 ], [ 5.949740979862327, 46.984806250508029 ], [ 5.83735083946965, 47.008965187393471 ], [ 5.80397437321875, 47.031421242696183 ], [ 5.766928473370342, 47.014029884971194 ], [ 5.747878179434394, 47.024939308901935 ], [ 5.81524634624185, 47.143591657129264 ], [ 5.781584235524065, 47.189844100225002 ], [ 5.725180425036569, 47.217804306823268 ], [ 5.69883520927749, 47.265001574063376 ], [ 5.731574468087217, 47.264364367521523 ], [ 5.927087170836273, 47.343015493470205 ], [ 5.997399673056464, 47.336467641168667 ], [ 6.074523699808879, 47.355473989732843 ], [ 6.123083271775556, 47.393926139679593 ], [ 6.17357643830195, 47.397276969556458 ], [ 6.206403587855277, 47.431202752504987 ], [ 6.260917750054091, 47.428511102305492 ], [ 6.321100858018156, 47.501196651903911 ], [ 6.424548127394132, 47.517687130856359 ], [ 6.475810336577752, 47.495340938533445 ], [ 6.500463657771604, 47.510161495156865 ], [ 6.553835241203387, 47.490419063189165 ], [ 6.595934852511448, 47.538363400850244 ], [ 6.63388163113234, 47.532903195825781 ], [ 6.703425090695362, 47.557710325371204 ], [ 6.779758101655034, 47.542768918750596 ], [ 6.807070114694, 47.56286291369247 ], [ 6.824845993747601, 47.547613889469403 ], [ 6.89375224676877, 47.551755735139068 ], [ 6.919152638383537, 47.53415563757261 ], [ 6.914428516762598, 47.487002314804954 ], [ 6.939169949951677, 47.426844260931965 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "FR-01", "NAME_1": "Ain" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.118607036585445, 46.331771084867626 ], [ 6.089684692000077, 46.246377259000027 ], [ 5.958529907000127, 46.211960754000089 ], [ 5.982921183000144, 46.170826314000109 ], [ 5.958839966000113, 46.13046702100003 ], [ 5.913727794901774, 46.128246159232845 ], [ 5.871584239121319, 46.093331607667551 ], [ 5.845942148411382, 46.111030582994999 ], [ 5.825199959910208, 46.095287174463522 ], [ 5.840580819349327, 45.932931211106506 ], [ 5.772426560537326, 45.741530021693109 ], [ 5.640871339440764, 45.645770555566685 ], [ 5.600485595833561, 45.655581347001544 ], [ 5.547026120758858, 45.719554737660985 ], [ 5.450192621292445, 45.792987357680374 ], [ 5.430175530975987, 45.844260552982121 ], [ 5.36904759886761, 45.87995513422203 ], [ 5.333495839861087, 45.867991023167178 ], [ 5.272851305942993, 45.799820854448853 ], [ 5.239167222988954, 45.785659476603541 ], [ 5.118405499614084, 45.826605523026444 ], [ 4.91689426126112, 45.81134551268525 ], [ 4.909093968112131, 45.87416533935891 ], [ 4.845944551599757, 45.909673152993605 ], [ 4.820060760895387, 45.906564022211853 ], [ 4.784421111145377, 45.944774473063433 ], [ 4.748539762300197, 45.956903379487358 ], [ 4.749023160490481, 46.059438783972666 ], [ 4.79457247943634, 46.1514382988384 ], [ 4.815182831822199, 46.250556954939498 ], [ 4.872751193312922, 46.337590649988499 ], [ 4.946601293015249, 46.507186603678804 ], [ 5.041435281213239, 46.490904864567824 ], [ 5.155319563347177, 46.511218586368614 ], [ 5.240375718464634, 46.4687124814958 ], [ 5.310973866051086, 46.455353105561358 ], [ 5.320268300042017, 46.408386551298292 ], [ 5.36388402442816, 46.391401687138114 ], [ 5.391789298637207, 46.346918043233075 ], [ 5.46911107911302, 46.320298169125181 ], [ 5.469880121770188, 46.276869212344252 ], [ 5.509870357930652, 46.260686350094943 ], [ 5.595409912137711, 46.300017406578036 ], [ 5.647858644560813, 46.344039624529046 ], [ 5.697824466625832, 46.312113353748259 ], [ 5.721686772026885, 46.273606272311611 ], [ 5.871913828960032, 46.2719033916282 ], [ 6.059013168023284, 46.417385842182853 ], [ 6.135056600000098, 46.370400696000033 ], [ 6.118607036585445, 46.331771084867626 ] ] ] } },
@ -96,7 +96,7 @@
{ "type": "Feature", "properties": { "ISO": "FR-86", "NAME_1": "Vienne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.796361877498612, 46.13289337622831 ], [ 0.707768123999699, 46.136694645941134 ], [ 0.646794000242892, 46.091035464914739 ], [ 0.599926322841497, 46.082773745811721 ], [ 0.553278372299019, 46.090661929704254 ], [ 0.487887744523789, 46.133662419784798 ], [ 0.44365678583199, 46.096385806959404 ], [ 0.470793017383812, 46.081092837364508 ], [ 0.457345750705827, 46.058515932064608 ], [ 0.286706096009539, 46.062207338797634 ], [ 0.197365272089598, 46.095539859676762 ], [ 0.198903358303312, 46.151174627507032 ], [ 0.108727574118234, 46.188835761661039 ], [ 0.111584018787426, 46.217048653472546 ], [ 0.176271521513513, 46.308949291476608 ], [ 0.150387731708463, 46.344512037500522 ], [ 0.112177280856827, 46.337799390729288 ], [ 0.08275589267032, 46.310838939765233 ], [ 0.045094758516257, 46.317870190257054 ], [ 0.019639435411591, 46.352224439905967 ], [ 0.020287628970891, 46.37864656029052 ], [ -0.014604950358205, 46.411737381175158 ], [ -0.014637909611849, 46.466932696186973 ], [ -0.033655244294096, 46.484521807635304 ], [ -0.033962860997235, 46.510867024293702 ], [ 0.019639435411591, 46.596527427598687 ], [ -0.026656953055976, 46.633441491331723 ], [ -0.024800263121676, 46.666719080720952 ], [ 0.013926544274568, 46.736108731932404 ], [ -0.015670624499705, 46.771572600195327 ], [ -0.019131318255745, 46.811727630825487 ], [ -0.016241913433589, 46.828415864400597 ], [ 0.013882599802116, 46.827646820844109 ], [ 0.027846223024767, 46.850443453002924 ], [ -0.013198700259807, 46.889137302044844 ], [ -0.045531465504723, 46.98701450341656 ], [ -0.081709444934972, 47.004768410233908 ], [ -0.109043431109455, 47.069609721311565 ], [ -0.100320286052352, 47.079870951683063 ], [ -0.053068086423082, 47.096251567655713 ], [ -0.004047088502318, 47.156555524717646 ], [ 0.066759798925546, 47.153688093031064 ], [ 0.100114292040928, 47.118575787742373 ], [ 0.135534214932079, 47.127046246686916 ], [ 0.147157750929466, 47.09883335487541 ], [ 0.191850135575294, 47.102294048631393 ], [ 0.20006790930654, 47.055503274956152 ], [ 0.257943888399723, 47.063435404220513 ], [ 0.306986858556684, 47.042583352739484 ], [ 0.303581097189863, 46.965920751941098 ], [ 0.326674359034428, 46.938531835176036 ], [ 0.433922899022548, 46.93274204031286 ], [ 0.572746145917904, 46.954989354874783 ], [ 0.583666556866092, 46.965041846304132 ], [ 0.572438529214764, 47.003900489815749 ], [ 0.671776911275401, 46.965975683430997 ], [ 0.713371151257604, 46.900079685229286 ], [ 0.831452210551049, 46.779416838716088 ], [ 0.902357974840641, 46.729813565743427 ], [ 0.916925847150139, 46.699480312666253 ], [ 0.906994205718036, 46.644186120792824 ], [ 0.92411090599353, 46.605733970846074 ], [ 1.014088936455266, 46.564392416976432 ], [ 1.026789131812961, 46.538299886430593 ], [ 1.136806226626049, 46.518403645212004 ], [ 1.149418531240201, 46.50047395690757 ], [ 1.14238728074838, 46.464504717318846 ], [ 1.194682204819912, 46.427920243424467 ], [ 1.177016188746109, 46.387018142373336 ], [ 1.057990305308351, 46.35970612933437 ], [ 0.987106513254957, 46.283526927625587 ], [ 0.901720768298787, 46.277484446649851 ], [ 0.794801819048701, 46.22627716895613 ], [ 0.827585023230199, 46.139869695230232 ], [ 0.796361877498612, 46.13289337622831 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "FR-89", "NAME_1": "Yonne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.254860506407226, 47.490869503025124 ], [ 3.211552398724223, 47.515962277037431 ], [ 3.1451290569604, 47.525355587890033 ], [ 3.109467434074816, 47.577255003615505 ], [ 2.969259909317373, 47.567587035313409 ], [ 2.92500697838932, 47.619003052848598 ], [ 2.934323384616505, 47.6486441669947 ], [ 2.914635884138704, 47.677450319976288 ], [ 2.832721818157381, 47.722098759250287 ], [ 2.850871233320731, 47.759441290583084 ], [ 2.992353172061257, 47.792378303116152 ], [ 3.012106591046347, 47.847233041271807 ], [ 2.994572410188596, 47.907262340884301 ], [ 3.085011866604361, 47.948757704004834 ], [ 3.117926906901232, 48.00084388733552 ], [ 3.107995266368448, 48.03236366365212 ], [ 3.045109522086761, 48.076396868620577 ], [ 3.02265346588473, 48.131844868845576 ], [ 2.925644184931173, 48.155926901105602 ], [ 2.940563619315583, 48.199542625491745 ], [ 3.002328757965813, 48.229304589635092 ], [ 3.027904931067724, 48.262043848444819 ], [ 3.013183251305975, 48.31415200491108 ], [ 3.042340967261794, 48.361755766615317 ], [ 3.346354649947102, 48.371467681188506 ], [ 3.395375648767185, 48.411743560916591 ], [ 3.421281410808433, 48.369808744977547 ], [ 3.50974332819203, 48.347440580418436 ], [ 3.599875167904656, 48.267240382137913 ], [ 3.613234542939779, 48.217208641565549 ], [ 3.581571944389736, 48.18096474362801 ], [ 3.665793139241998, 48.14388588542522 ], [ 3.733183278285651, 48.157212301206698 ], [ 3.858713068653174, 48.015257950394073 ], [ 3.83168670008115, 47.9938126368437 ], [ 3.898439632582949, 47.986352919651495 ], [ 3.916281430143897, 47.933772352012397 ], [ 4.037614442452536, 47.922654187340868 ], [ 4.067892764039811, 47.938210828267074 ], [ 4.127482609934475, 47.933146130689352 ], [ 4.161737981822398, 47.954097059032051 ], [ 4.203024605101405, 47.939144666293316 ], [ 4.218229683952757, 47.972422255682545 ], [ 4.255495309760704, 47.934541394669623 ], [ 4.288410350057575, 47.924258191162551 ], [ 4.262702341739669, 47.843904184530459 ], [ 4.307966015319323, 47.845112680006139 ], [ 4.337629102600999, 47.791971808652022 ], [ 4.33029023450672, 47.76032019622005 ], [ 4.258637399796157, 47.733865117481173 ], [ 4.244530954340064, 47.655796266584389 ], [ 4.126208195951449, 47.517214718784203 ], [ 4.117155461055688, 47.455647332958051 ], [ 4.068178408506753, 47.424534051105525 ], [ 4.106125187127645, 47.339247182111762 ], [ 4.048029482074924, 47.339466908970621 ], [ 4.018212586441678, 47.313044788586126 ], [ 3.977035827041789, 47.32685460345715 ], [ 3.950690611282653, 47.393080192396951 ], [ 3.868908381416645, 47.374018912342933 ], [ 3.877214045891492, 47.417052360777802 ], [ 3.865920099732818, 47.431367546974684 ], [ 3.838586114457598, 47.424226433503065 ], [ 3.804484550921302, 47.385928092807205 ], [ 3.715890797422333, 47.411537224263441 ], [ 3.644699388665856, 47.456723993217679 ], [ 3.587328780898531, 47.465249384551441 ], [ 3.492011394510257, 47.55995153663406 ], [ 3.488210124797433, 47.493780880083534 ], [ 3.415436684455415, 47.508821163565813 ], [ 3.345871251756876, 47.48053136712889 ], [ 3.290873691367779, 47.501306514883709 ], [ 3.254860506407226, 47.490869503025124 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "FR-91", "NAME_1": "Essonne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.001715926848533, 48.558454992603799 ], [ 2.036256944102661, 48.597478431484376 ], [ 2.028061142607612, 48.65257486963452 ], [ 2.045793077188762, 48.686797282268742 ], [ 2.090221789603902, 48.69771769321693 ], [ 2.123642201226573, 48.755989179756796 ], [ 2.208698357243406, 48.775555831136671 ], [ 2.267519159581525, 48.755198163964053 ], [ 2.290041133391583, 48.73118205021143 ], [ 2.320758907797369, 48.748705244051735 ], [ 2.388742308910423, 48.721558026381786 ], [ 2.508361454417582, 48.730445965908586 ], [ 2.541166631734654, 48.693883464250462 ], [ 2.571730597788871, 48.691960856708135 ], [ 2.575993292556404, 48.673306071118247 ], [ 2.52404993145916, 48.629712319867622 ], [ 2.496452273953253, 48.516509190546685 ], [ 2.502780399395931, 48.441121003731325 ], [ 2.526203251978473, 48.420708405068808 ], [ 2.390660743598403, 48.313601981346324 ], [ 2.315968868568405, 48.328005765153932 ], [ 2.255917596719712, 48.30560464134112 ], [ 2.197712028687135, 48.338706449243205 ], [ 2.133507924151388, 48.299067776056972 ], [ 1.972272566425772, 48.284236232416163 ], [ 1.998683700692197, 48.325522854795906 ], [ 1.923053814781724, 48.413061920271389 ], [ 1.920351177564783, 48.461357820906699 ], [ 1.94891563235052, 48.548863928027856 ], [ 2.001715926848533, 48.558454992603799 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "FR-77", "NAME_1": "Seine-et-Marne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.390660743598403, 48.313601981346324 ], [ 2.526203251978473, 48.420708405068808 ], [ 2.502780399395931, 48.441121003731325 ], [ 2.496452273953253, 48.516509190546685 ], [ 2.52404993145916, 48.629712319867622 ], [ 2.575993292556404, 48.673306071118247 ], [ 2.571181281091242, 48.70521036966278 ], [ 2.598976692320491, 48.748287763469477 ], [ 2.571071417212124, 48.858041186051878 ], [ 2.592297004802901, 48.933583180319488 ], [ 2.570280402318701, 48.970552176441743 ], [ 2.574323371126638, 49.000665702660001 ], [ 2.553119756671435, 49.009784355163845 ], [ 2.583332160650684, 49.084546321555479 ], [ 2.626486459082798, 49.097828792864448 ], [ 2.755729627520282, 49.06780315649047 ], [ 2.794709121928406, 49.086666682821146 ], [ 2.98661830868798, 49.0788663896721 ], [ 3.07973842918517, 49.106200374947321 ], [ 3.140866361293547, 49.093148616615338 ], [ 3.174089019192877, 49.055663263948475 ], [ 3.175956694345984, 49.004346123274956 ], [ 3.319943516579997, 48.919905201563779 ], [ 3.363229651127483, 48.920476490497606 ], [ 3.383092933092371, 48.870763354545147 ], [ 3.435212075676759, 48.848384202968589 ], [ 3.477904948154844, 48.85009806977007 ], [ 3.463952311050321, 48.817172043355072 ], [ 3.409328285871709, 48.813140060665262 ], [ 3.425610024083312, 48.790486251639152 ], [ 3.395529457118755, 48.753868818491128 ], [ 3.451252115692569, 48.724359539561078 ], [ 3.459294107936728, 48.642401529107246 ], [ 3.508205242877636, 48.641709390176175 ], [ 3.537802411651967, 48.613419594638572 ], [ 3.493571452960168, 48.587733558556863 ], [ 3.461315592340725, 48.539800207013911 ], [ 3.405922523605568, 48.524715977260541 ], [ 3.42064420426658, 48.49849161149865 ], [ 3.391047034592987, 48.474453524610453 ], [ 3.395375648767185, 48.411743560916591 ], [ 3.346354649947102, 48.371467681188506 ], [ 3.042340967261794, 48.361755766615317 ], [ 3.013183251305975, 48.31415200491108 ], [ 3.027904931067724, 48.262043848444819 ], [ 3.002328757965813, 48.229304589635092 ], [ 2.940563619315583, 48.199542625491745 ], [ 2.925644184931173, 48.155926901105602 ], [ 2.825119278731734, 48.131482319753218 ], [ 2.795456191450057, 48.133240132825847 ], [ 2.803234512362849, 48.151433492461706 ], [ 2.788337051114013, 48.159958883795412 ], [ 2.68482386323069, 48.122594380226417 ], [ 2.46681115980715, 48.124319234045402 ], [ 2.450837038298687, 48.146621480996544 ], [ 2.507482547881295, 48.157212301206698 ], [ 2.500187626058107, 48.181195456604996 ], [ 2.513678837208545, 48.206617821355337 ], [ 2.436884401194163, 48.24981606515928 ], [ 2.414494263499478, 48.300979396581852 ], [ 2.390660743598403, 48.313601981346324 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "FR-77", "NAME_1": "Seien-et-Marne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.390660743598403, 48.313601981346324 ], [ 2.526203251978473, 48.420708405068808 ], [ 2.502780399395931, 48.441121003731325 ], [ 2.496452273953253, 48.516509190546685 ], [ 2.52404993145916, 48.629712319867622 ], [ 2.575993292556404, 48.673306071118247 ], [ 2.571181281091242, 48.70521036966278 ], [ 2.598976692320491, 48.748287763469477 ], [ 2.571071417212124, 48.858041186051878 ], [ 2.592297004802901, 48.933583180319488 ], [ 2.570280402318701, 48.970552176441743 ], [ 2.574323371126638, 49.000665702660001 ], [ 2.553119756671435, 49.009784355163845 ], [ 2.583332160650684, 49.084546321555479 ], [ 2.626486459082798, 49.097828792864448 ], [ 2.755729627520282, 49.06780315649047 ], [ 2.794709121928406, 49.086666682821146 ], [ 2.98661830868798, 49.0788663896721 ], [ 3.07973842918517, 49.106200374947321 ], [ 3.140866361293547, 49.093148616615338 ], [ 3.174089019192877, 49.055663263948475 ], [ 3.175956694345984, 49.004346123274956 ], [ 3.319943516579997, 48.919905201563779 ], [ 3.363229651127483, 48.920476490497606 ], [ 3.383092933092371, 48.870763354545147 ], [ 3.435212075676759, 48.848384202968589 ], [ 3.477904948154844, 48.85009806977007 ], [ 3.463952311050321, 48.817172043355072 ], [ 3.409328285871709, 48.813140060665262 ], [ 3.425610024083312, 48.790486251639152 ], [ 3.395529457118755, 48.753868818491128 ], [ 3.451252115692569, 48.724359539561078 ], [ 3.459294107936728, 48.642401529107246 ], [ 3.508205242877636, 48.641709390176175 ], [ 3.537802411651967, 48.613419594638572 ], [ 3.493571452960168, 48.587733558556863 ], [ 3.461315592340725, 48.539800207013911 ], [ 3.405922523605568, 48.524715977260541 ], [ 3.42064420426658, 48.49849161149865 ], [ 3.391047034592987, 48.474453524610453 ], [ 3.395375648767185, 48.411743560916591 ], [ 3.346354649947102, 48.371467681188506 ], [ 3.042340967261794, 48.361755766615317 ], [ 3.013183251305975, 48.31415200491108 ], [ 3.027904931067724, 48.262043848444819 ], [ 3.002328757965813, 48.229304589635092 ], [ 2.940563619315583, 48.199542625491745 ], [ 2.925644184931173, 48.155926901105602 ], [ 2.825119278731734, 48.131482319753218 ], [ 2.795456191450057, 48.133240132825847 ], [ 2.803234512362849, 48.151433492461706 ], [ 2.788337051114013, 48.159958883795412 ], [ 2.68482386323069, 48.122594380226417 ], [ 2.46681115980715, 48.124319234045402 ], [ 2.450837038298687, 48.146621480996544 ], [ 2.507482547881295, 48.157212301206698 ], [ 2.500187626058107, 48.181195456604996 ], [ 2.513678837208545, 48.206617821355337 ], [ 2.436884401194163, 48.24981606515928 ], [ 2.414494263499478, 48.300979396581852 ], [ 2.390660743598403, 48.313601981346324 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "FR-94", "NAME_1": "Val-de-Marne" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.473420416019394, 48.859200672972634 ], [ 2.592384894647182, 48.807471115799331 ], [ 2.598976692320491, 48.748287763469477 ], [ 2.571730597788871, 48.691960856708135 ], [ 2.541166631734654, 48.693883464250462 ], [ 2.494628543272654, 48.733763837431127 ], [ 2.388742308910423, 48.721558026381786 ], [ 2.320758907797369, 48.748705244051735 ], [ 2.331964963212499, 48.817117111865173 ], [ 2.443366334988355, 48.815831711764076 ], [ 2.473420416019394, 48.859200672972634 ] ] ] } }
]
}

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -19,7 +19,7 @@
{ "type": "Feature", "properties": { "ISO": "PT-06", "NAME_1": "Coimbra" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.902476147221691, 40.047409913287481 ], [ -8.853260870999918, 40.139227606000077 ], [ -8.825062628999945, 40.120062567000048 ], [ -8.784982876999948, 40.118719794000071 ], [ -8.816151495999918, 40.146551825000074 ], [ -8.896473761999914, 40.164740302000041 ], [ -8.90843665299991, 40.200669664000088 ], [ -8.865386522999927, 40.275458075000074 ], [ -8.78790289051096, 40.52295838274182 ], [ -8.675382249291374, 40.434689846359277 ], [ -8.642076789012606, 40.431692612823781 ], [ -8.608874680622023, 40.483989162869534 ], [ -8.570479091736729, 40.463783678074265 ], [ -8.565595668705157, 40.404407457138404 ], [ -8.504927536576531, 40.420065415686338 ], [ -8.486479050967432, 40.376424669462892 ], [ -8.522445847997517, 40.296765449365978 ], [ -8.457204352099154, 40.285655016166061 ], [ -8.350208298574103, 40.372006334424782 ], [ -8.235409104646465, 40.320639960365838 ], [ -8.216676398197251, 40.339708564498608 ], [ -8.11621741410238, 40.338907578821704 ], [ -7.924652879027178, 40.430116481690277 ], [ -7.845200365404537, 40.493730170510958 ], [ -7.824633145403368, 40.497838447186552 ], [ -7.802231410950867, 40.464145413280164 ], [ -7.837603928778321, 40.42378611873437 ], [ -7.799027471840361, 40.402107856492364 ], [ -7.791741095375244, 40.356942654180102 ], [ -7.767298142695154, 40.334101671055237 ], [ -7.824633145403368, 40.261470445004989 ], [ -7.782129278943103, 40.232040717405141 ], [ -7.801662970169957, 40.172845364521947 ], [ -7.741899175606477, 40.128300278934717 ], [ -7.73556881265057, 40.105510973552555 ], [ -7.768745082619489, 40.077502346556003 ], [ -7.800965339079141, 40.083264268731 ], [ -7.807192349247543, 40.040708727225933 ], [ -7.871374477949814, 40.056159980198913 ], [ -7.907031215718064, 40.036677964916123 ], [ -7.907703009286479, 40.009522000439972 ], [ -8.025731980746343, 39.975415554484243 ], [ -8.126345993572727, 39.921232814942414 ], [ -8.128387213599012, 39.944022122123215 ], [ -8.107975023228732, 39.96531281253624 ], [ -8.149419521593643, 40.017040920901763 ], [ -8.145466273649618, 40.062386990367315 ], [ -8.174560106263925, 40.08633901573296 ], [ -8.205204229791377, 40.055100613002878 ], [ -8.235073207862285, 40.06398895902322 ], [ -8.277654587789016, 40.034533393001652 ], [ -8.293054164817875, 40.015955715284008 ], [ -8.270988328048929, 39.98476898939731 ], [ -8.279101527713351, 39.971617337070427 ], [ -8.313983120025, 39.975105496121728 ], [ -8.389947476394923, 39.932549953717341 ], [ -8.404830287687616, 39.934306952004192 ], [ -8.385348273304203, 39.956605332769868 ], [ -8.419868130409895, 40.014973863353077 ], [ -8.450873989143304, 40.012131659448528 ], [ -8.535468309115174, 39.955959378522493 ], [ -8.567300991047887, 40.028048001314176 ], [ -8.629002651051508, 39.996318671269648 ], [ -8.698016526841229, 40.032337145143117 ], [ -8.768942429649428, 40.037298082540474 ], [ -8.8154253806768, 40.021071682312254 ], [ -8.902476147221691, 40.047409913287481 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "PT-01", "NAME_1": "Aveiro" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.78790289051096, 40.52295838274182 ], [ -8.750355597999942, 40.643947658000059 ], [ -8.744618292999917, 40.619045315000051 ], [ -8.710275844999956, 40.653469143000052 ], [ -8.690012173999946, 40.646918036000045 ], [ -8.696156378999945, 40.673651434000078 ], [ -8.662098761999914, 40.669867255000042 ], [ -8.641590949999909, 40.694159247000073 ], [ -8.663644985999952, 40.72406647300005 ], [ -8.572661912999934, 40.755560614000046 ], [ -8.668446417999917, 40.747463283000059 ], [ -8.683705206999946, 40.783107815000051 ], [ -8.645578579999949, 40.82367584800005 ], [ -8.655262824999909, 40.844916083000044 ], [ -8.663197394999941, 40.814927476000037 ], [ -8.675689256999931, 40.824448960000041 ], [ -8.689808722999942, 40.804103908000059 ], [ -8.714263475999928, 40.709051825000074 ], [ -8.750803188999953, 40.653143622000073 ], [ -8.65520139824288, 41.016651963915109 ], [ -8.526089035780387, 41.032224432911221 ], [ -8.484308640631241, 41.017289943875767 ], [ -8.448135138026203, 41.055478827186107 ], [ -8.389611578711424, 41.011863919384325 ], [ -8.392272914563364, 41.039665839007228 ], [ -8.346177537163612, 41.043954982836169 ], [ -8.290186123390868, 41.083384101395154 ], [ -8.229569668105682, 41.053825181686761 ], [ -8.224376186711652, 41.009409288208076 ], [ -8.149264491962754, 40.982046617257538 ], [ -8.087743700011742, 41.006696275512695 ], [ -8.128929815958259, 40.935977078279507 ], [ -8.115390590903075, 40.853475654277986 ], [ -8.249645961691783, 40.855361842874743 ], [ -8.239646571631965, 40.818852444384788 ], [ -8.324990200437412, 40.727178453522811 ], [ -8.288299932995528, 40.637571520209463 ], [ -8.248638272238509, 40.618968004070098 ], [ -8.301994187681601, 40.593904933765657 ], [ -8.253237474429909, 40.514529934508857 ], [ -8.331346400915663, 40.48435089807549 ], [ -8.321631231696017, 40.44502513320333 ], [ -8.35423906088397, 40.402883001948965 ], [ -8.350208298574103, 40.372006334424782 ], [ -8.370465461112133, 40.34423025232428 ], [ -8.399197556721845, 40.343739325909155 ], [ -8.457204352099154, 40.285655016166061 ], [ -8.515469529894915, 40.290357571144966 ], [ -8.520818040020515, 40.322396959552009 ], [ -8.486479050967432, 40.376424669462892 ], [ -8.504927536576531, 40.420065415686338 ], [ -8.565595668705157, 40.404407457138404 ], [ -8.570479091736729, 40.463783678074265 ], [ -8.608874680622023, 40.483989162869534 ], [ -8.642076789012606, 40.431692612823781 ], [ -8.675382249291374, 40.434689846359277 ], [ -8.78790289051096, 40.52295838274182 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "PT-13", "NAME_1": "Porto" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.65520139824288, 41.016651963915109 ], [ -8.666127081999946, 41.132757880000042 ], [ -8.648345506999931, 41.152777411000045 ], [ -8.68578040299991, 41.159491278000075 ], [ -8.737172003999945, 41.249660549000055 ], [ -8.74445553299995, 41.328111070000034 ], [ -8.783802863999938, 41.393866278000075 ], [ -8.775097442947354, 41.46756333867858 ], [ -8.666984828786838, 41.444137275514834 ], [ -8.609882370974674, 41.411064358333419 ], [ -8.596446498706939, 41.398145250003267 ], [ -8.622543096886432, 41.380781969112547 ], [ -8.604223801587182, 41.34941437427392 ], [ -8.53464148591587, 41.351223049404211 ], [ -8.467720506096498, 41.375924384502696 ], [ -8.31568844236773, 41.366881007952145 ], [ -8.219286058105126, 41.414578354907121 ], [ -8.169754197598138, 41.400780748332863 ], [ -8.111824916586613, 41.349672756692371 ], [ -8.036144781956125, 41.325023098437214 ], [ -7.989248419778733, 41.347373155146954 ], [ -7.975502489148539, 41.370084947062651 ], [ -7.951214565200019, 41.32825287507012 ], [ -7.909356654785825, 41.306755479082085 ], [ -7.909356654785825, 41.278901881716422 ], [ -7.875456916203746, 41.246784979842914 ], [ -7.896049973727315, 41.159115911969764 ], [ -7.940155808843485, 41.138006090508668 ], [ -8.062060512982271, 41.10586334931412 ], [ -8.223032598675502, 41.103486233402919 ], [ -8.290186123390868, 41.083384101395154 ], [ -8.346177537163612, 41.043954982836169 ], [ -8.392272914563364, 41.039665839007228 ], [ -8.389611578711424, 41.011863919384325 ], [ -8.448135138026203, 41.055478827186107 ], [ -8.484308640631241, 41.017289943875767 ], [ -8.526089035780387, 41.032224432911221 ], [ -8.65520139824288, 41.016651963915109 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "PT-30", "NAME_1": "Madeira" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -10.339955206999946, 35.057196356000077 ], [ -10.398345506999931, 35.03978099200009 ], [ -10.341297980999911, 35.105943101000037 ], [ -10.289133266999954, 35.108710028000075 ], [ -10.275380011999914, 35.060248114000046 ], [ -10.339955206999946, 35.057196356000077 ] ] ], [ [ [ -10.788685675999943, 34.686672268000052 ], [ -10.847808397999927, 34.644029039000088 ], [ -10.97679602799991, 34.64720286700009 ], [ -11.180653449999909, 34.725978908000059 ], [ -11.252105272999927, 34.814520575000074 ], [ -11.184885219999956, 34.874172268000052 ], [ -11.067982550999943, 34.814154364000046 ], [ -10.919748501999948, 34.841213283000059 ], [ -10.797474738999938, 34.774562893000052 ], [ -10.672678188999953, 34.758612372000073 ], [ -10.749989386999914, 34.730617580000057 ], [ -10.788685675999943, 34.686672268000052 ] ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "PT-30", "NAME_1": "Madeira" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -10.788685675999943, 34.686672268000052 ], [ -10.847808397999927, 34.644029039000088 ], [ -10.97679602799991, 34.64720286700009 ], [ -11.180653449999909, 34.725978908000059 ], [ -11.252105272999927, 34.814520575000074 ], [ -11.184885219999956, 34.874172268000052 ], [ -11.067982550999943, 34.814154364000046 ], [ -10.919748501999948, 34.841213283000059 ], [ -10.797474738999938, 34.774562893000052 ], [ -10.672678188999953, 34.758612372000073 ], [ -10.749989386999914, 34.730617580000057 ], [ -10.788685675999943, 34.686672268000052 ] ] ], [ [ [ -10.339955206999946, 35.057196356000077 ], [ -10.398345506999931, 35.03978099200009 ], [ -10.341297980999911, 35.105943101000037 ], [ -10.289133266999954, 35.108710028000075 ], [ -10.275380011999914, 35.060248114000046 ], [ -10.339955206999946, 35.057196356000077 ] ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "PT-20", "NAME_1": "Azores" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -14.066802537999934, 37.021470445000034 ], [ -14.016916469999956, 36.970445054000038 ], [ -14.012196417999917, 36.949204820000034 ], [ -14.027088995999918, 36.93431224200009 ], [ -14.119007941999939, 36.952622789000088 ], [ -14.169097459999932, 36.945990302000041 ], [ -14.201649542999917, 36.990423895000049 ], [ -14.170318162999934, 37.015529690000051 ], [ -14.066802537999934, 37.021470445000034 ] ] ], [ [ [ -14.197824673999946, 37.864406643000052 ], [ -14.159169074999909, 37.852036851000037 ], [ -14.135161912999934, 37.822333075000074 ], [ -14.132313605999911, 37.786200262000079 ], [ -14.156849738999938, 37.75454336100006 ], [ -14.505686001999948, 37.706732489000046 ], [ -14.61554928299995, 37.740912177000041 ], [ -14.704253709999932, 37.744045315000051 ], [ -14.825062628999945, 37.815415757000039 ], [ -14.859486456999946, 37.853908596000053 ], [ -14.841460740999935, 37.905991929000038 ], [ -14.764556443999936, 37.91156647300005 ], [ -14.704213019999941, 37.882635809000078 ], [ -14.688832160999937, 37.845851955000057 ], [ -14.553781704999949, 37.829657294000071 ], [ -14.498890753999945, 37.850775458000044 ], [ -14.458485480999911, 37.829657294000071 ], [ -14.339751756999931, 37.861802476000037 ], [ -14.197824673999946, 37.864406643000052 ] ] ], [ [ [ -17.109486456999946, 38.446600653000075 ], [ -17.063832160999937, 38.442775783000059 ], [ -17.040598110999952, 38.409084377000056 ], [ -17.054188605999911, 38.398504950000074 ], [ -17.185210740999935, 38.405951239000046 ], [ -17.241851365999935, 38.37759023600006 ], [ -17.296783006999931, 38.411322333000044 ], [ -17.459543423999946, 38.405666408000059 ], [ -17.548898891999954, 38.484442450000074 ], [ -17.548898891999954, 38.528550523000035 ], [ -17.485259568999936, 38.557806708000044 ], [ -17.374501105999911, 38.550482489000046 ], [ -17.206288214999915, 38.470851955000057 ], [ -17.109486456999946, 38.446600653000075 ] ] ], [ [ [ -17.609730597999942, 38.597398179000038 ], [ -17.596058722999942, 38.552720445000034 ], [ -17.643950975999928, 38.535345770000049 ], [ -17.623402472999942, 38.522365627000056 ], [ -17.727040167999917, 38.514878648000035 ], [ -17.842396613999938, 38.599432684000078 ], [ -17.766346808999913, 38.606756903000075 ], [ -17.719593878999945, 38.645209052000041 ], [ -17.609730597999942, 38.597398179000038 ] ] ], [ [ [ -16.890980597999942, 38.60423411700009 ], [ -16.760609503999945, 38.549017645000049 ], [ -16.835764126999948, 38.542792059000078 ], [ -16.97687740799995, 38.593085028000075 ], [ -17.034535285999937, 38.590073960000041 ], [ -17.074370897999927, 38.617621161000045 ], [ -17.177886522999927, 38.645086981000077 ], [ -17.312123175999943, 38.735256252000056 ], [ -17.315541144999941, 38.755072333000044 ], [ -17.034331834999932, 38.66632721600007 ], [ -16.890980597999942, 38.60423411700009 ] ] ], [ [ [ -16.020130988999938, 38.69367096600007 ], [ -16.054351365999935, 38.679388739000046 ], [ -16.054351365999935, 38.645209052000041 ], [ -16.089100714999915, 38.631008205000057 ], [ -16.204497850999928, 38.65265534100007 ], [ -16.228382941999939, 38.641099351000037 ], [ -16.352691209999932, 38.684393622000073 ], [ -16.391713019999941, 38.758856512000079 ], [ -16.368763800999943, 38.78266022300005 ], [ -16.298207160999937, 38.803534247000073 ], [ -16.144276495999918, 38.796087958000044 ], [ -16.042551235999952, 38.74445221600007 ], [ -16.040882941999939, 38.714422919000071 ], [ -16.020130988999938, 38.69367096600007 ] ] ], [ [ [ -16.983469204999949, 39.015122789000088 ], [ -17.061634894999941, 39.036281643000052 ], [ -17.071522589999915, 39.067613023000035 ], [ -17.054839647999927, 39.097723700000074 ], [ -17.007069464999915, 39.104559637000079 ], [ -16.942209438999953, 39.05304596600007 ], [ -16.947173631999931, 39.024237372000073 ], [ -16.983469204999949, 39.015122789000088 ] ] ], [ [ [ -20.207915818999936, 39.508612372000073 ], [ -20.159535285999937, 39.501776434000078 ], [ -20.140736456999946, 39.48273346600007 ], [ -20.131581183999913, 39.423000393000052 ], [ -20.177235480999911, 39.355617580000057 ], [ -20.254750128999945, 39.358099677000041 ], [ -20.284657355999911, 39.39789459800005 ], [ -20.280913865999935, 39.443101304000038 ], [ -20.255767381999931, 39.507473049000055 ], [ -20.200510219999956, 39.52220286700009 ], [ -20.207915818999936, 39.508612372000073 ] ] ], [ [ [ -20.117298956999946, 39.728338934000078 ], [ -20.08267167899993, 39.722723700000074 ], [ -20.080230272999927, 39.693304755000042 ], [ -20.099964972999942, 39.664007880000042 ], [ -20.131581183999913, 39.65884023600006 ], [ -20.152699347999942, 39.701076565000051 ], [ -20.117298956999946, 39.728338934000078 ] ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "PT-18", "NAME_1": "Viseu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.596765915614526, 41.177848619318297 ], [ -7.417422857778661, 41.215727444266122 ], [ -7.359674444819802, 41.166066393449285 ], [ -7.300659959089842, 41.159348455966438 ], [ -7.334998949042244, 41.065349026036699 ], [ -7.333526169796926, 41.019822089417858 ], [ -7.373549566659165, 41.009564316939645 ], [ -7.334068773055435, 40.973442491177991 ], [ -7.341484340729721, 40.937759914988078 ], [ -7.372981125878255, 40.915642402275012 ], [ -7.423391486427988, 40.917296047774357 ], [ -7.412513597224745, 40.870580552750312 ], [ -7.445508999140998, 40.819550076374924 ], [ -7.522971971379377, 40.867169908064795 ], [ -7.557905238735771, 40.871562405580505 ], [ -7.61859920928606, 40.795443020479013 ], [ -7.57565609415343, 40.752344875715437 ], [ -7.589479539149409, 40.728832099022156 ], [ -7.579247605992236, 40.714104316461032 ], [ -7.539896002698356, 40.685372219052624 ], [ -7.581728074690886, 40.592768053103157 ], [ -7.577697313280396, 40.572304185889436 ], [ -7.686682909088972, 40.551530260313257 ], [ -7.845200365404537, 40.493730170510958 ], [ -7.924652879027178, 40.430116481690277 ], [ -8.11621741410238, 40.338907578821704 ], [ -8.216676398197251, 40.339708564498608 ], [ -8.235409104646465, 40.320639960365838 ], [ -8.350208298574103, 40.372006334424782 ], [ -8.35423906088397, 40.402883001948965 ], [ -8.321631231696017, 40.44502513320333 ], [ -8.331346400915663, 40.48435089807549 ], [ -8.253237474429909, 40.514529934508857 ], [ -8.301994187681601, 40.593904933765657 ], [ -8.248638272238509, 40.618968004070098 ], [ -8.288299932995528, 40.637571520209463 ], [ -8.324990200437412, 40.727178453522811 ], [ -8.239646571631965, 40.818852444384788 ], [ -8.249645961691783, 40.855361842874743 ], [ -8.115390590903075, 40.853475654277986 ], [ -8.128929815958259, 40.935977078279507 ], [ -8.087201096753233, 40.999900825462703 ], [ -8.098130661900541, 41.010572008191616 ], [ -8.123891364195117, 40.983751938701005 ], [ -8.149264491962754, 40.982046617257538 ], [ -8.224376186711652, 41.009409288208076 ], [ -8.229569668105682, 41.053825181686761 ], [ -8.290186123390868, 41.083384101395154 ], [ -8.190218064811859, 41.109144801891091 ], [ -8.062060512982271, 41.10586334931412 ], [ -7.940155808843485, 41.138006090508668 ], [ -7.843288336587477, 41.184437363793279 ], [ -7.737868415095306, 41.152578844338166 ], [ -7.658570929304972, 41.180122382441994 ], [ -7.596765915614526, 41.177848619318297 ] ] ] } }
]

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -22,7 +22,7 @@
{ "type": "Feature", "properties": { "ISO": "TH-76", "NAME_1": "Phetchaburi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.404747115686803, 12.566940858733631 ], [ 99.39375695800004, 12.589775289000016 ], [ 99.276864869000065, 12.6655846150001 ], [ 99.266736288000118, 12.702843323000124 ], [ 99.214129680000099, 12.734650167000069 ], [ 99.210719035000068, 12.792269389000126 ], [ 99.17526900200005, 12.833429667000104 ], [ 99.153151490000027, 12.913553975000085 ], [ 99.164830364000125, 12.975514018000112 ], [ 99.093206828000064, 13.038326722000079 ], [ 99.088349243000039, 13.058351339000112 ], [ 99.11408410700011, 13.188085022000067 ], [ 99.186479717000111, 13.211558644000107 ], [ 99.254748162797455, 13.176689561573994 ], [ 99.278467645065746, 13.143151557298495 ], [ 99.320377232323381, 13.166276760364212 ], [ 99.324563023364817, 13.206377672491556 ], [ 99.350659620644933, 13.228133449998722 ], [ 99.458043246898285, 13.180229397468679 ], [ 99.504138625197356, 13.179454251112759 ], [ 99.529976840958398, 13.198264471927814 ], [ 99.636171909705809, 13.199633897486365 ], [ 99.664697299740567, 13.216222032021165 ], [ 99.668573033318808, 13.272394313846519 ], [ 99.695909864948248, 13.305105495821977 ], [ 99.765259636622886, 13.332984930709983 ], [ 99.858690626671034, 13.328411566940247 ], [ 99.858380568308519, 13.269345405266222 ], [ 99.891711867009008, 13.238262030368389 ], [ 99.903390740989892, 13.273996283401743 ], [ 99.960866733000046, 13.291571356000077 ], [ 99.998545769000032, 13.218085028000075 ], [ 100.073985222000033, 13.152777411000045 ], [ 100.104340040000068, 13.057318427000041 ], [ 100.052989129000082, 12.966131903000075 ], [ 100.023936394000032, 12.847072658000059 ], [ 99.98764082100007, 12.79047272300005 ], [ 99.960785352000073, 12.63617584800005 ], [ 99.825462680758051, 12.627420762757993 ], [ 99.758748407413009, 12.58049856215888 ], [ 99.674050733754314, 12.57610606554249 ], [ 99.624648065355871, 12.545255235540651 ], [ 99.516230910328204, 12.585950425971362 ], [ 99.404747115686803, 12.566940858733631 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "TH-70", "NAME_1": "Ratchaburi" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.186479717000111, 13.211558644000107 ], [ 99.172788534000063, 13.300920512000033 ], [ 99.186947876000033, 13.329135844000092 ], [ 99.187878052000087, 13.427140198000117 ], [ 99.152014608000115, 13.581962790000091 ], [ 99.146779342000116, 13.723674124000055 ], [ 99.203536818369457, 13.730712592212342 ], [ 99.251182489380312, 13.766756904507531 ], [ 99.29743289641101, 13.768513901895062 ], [ 99.342081332987107, 13.749703681080007 ], [ 99.473081088721244, 13.798563748018523 ], [ 99.536849807172814, 13.755413927310883 ], [ 99.580619744605485, 13.790450548354102 ], [ 99.673533969816788, 13.819802760688845 ], [ 99.797040642611535, 13.815306912184212 ], [ 99.869491000609173, 13.938710232191454 ], [ 99.942148065081085, 13.925610255808635 ], [ 99.961371697945481, 13.844219875846591 ], [ 99.949434442445522, 13.741254583732029 ], [ 99.976926303705909, 13.713426824788144 ], [ 100.029687940845747, 13.738076483942564 ], [ 100.039919874902239, 13.697071235149394 ], [ 100.078677198993489, 13.683687038825781 ], [ 100.076506788657355, 13.637901719788545 ], [ 100.049221632971921, 13.598575954916384 ], [ 100.037904494196994, 13.504499009721485 ], [ 99.974600864638148, 13.491631578234717 ], [ 99.916103142845714, 13.506901964054407 ], [ 99.858690626671034, 13.328411566940247 ], [ 99.765259636622886, 13.332984930709983 ], [ 99.70366133030609, 13.311668402774558 ], [ 99.668573033318808, 13.272394313846519 ], [ 99.664697299740567, 13.216222032021165 ], [ 99.636171909705809, 13.199633897486365 ], [ 99.529976840958398, 13.198264471927814 ], [ 99.504138625197356, 13.179454251112759 ], [ 99.458043246898285, 13.180229397468679 ], [ 99.350659620644933, 13.228133449998722 ], [ 99.324563023364817, 13.206377672491556 ], [ 99.320377232323381, 13.166276760364212 ], [ 99.278467645065746, 13.143151557298495 ], [ 99.254748162797455, 13.176689561573994 ], [ 99.186479717000111, 13.211558644000107 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "TH-86", "NAME_1": "Chumphon" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 99.055069621000086, 10.94525034600008 ], [ 99.07687707600013, 10.996513367000105 ], [ 99.140946117000112, 11.039409961000047 ], [ 99.154185825915079, 11.004548245405203 ], [ 99.265755243209867, 10.958401191162011 ], [ 99.411327752773559, 10.956230779926557 ], [ 99.46083377485877, 10.989200344320409 ], [ 99.503427480893492, 10.997053639014212 ], [ 99.496104363000029, 10.944240627000056 ], [ 99.51531009200005, 10.881537177000041 ], [ 99.511566602000073, 10.866359768000052 ], [ 99.494151238000029, 10.878119208000044 ], [ 99.443207227000073, 10.870347398000092 ], [ 99.435069207000026, 10.801825262000079 ], [ 99.375010613000029, 10.711981512000079 ], [ 99.37435957100007, 10.681382554000038 ], [ 99.327159050000034, 10.663275458000044 ], [ 99.30241946700005, 10.631048895000049 ], [ 99.278168165000068, 10.546047268000052 ], [ 99.244639519000032, 10.535142320000091 ], [ 99.242686394000032, 10.514471747000073 ], [ 99.268321160000028, 10.508205471000053 ], [ 99.240407748000052, 10.456976630000042 ], [ 99.28874759200005, 10.412014065000051 ], [ 99.285004102000073, 10.364488023000092 ], [ 99.234141472000033, 10.343695380000042 ], [ 99.200043165000068, 10.378485419000071 ], [ 99.15162194100003, 10.357367255000042 ], [ 99.168955925000034, 10.28774648600006 ], [ 99.224619988000029, 10.232367255000042 ], [ 99.254649285000028, 10.234442450000074 ], [ 99.241709832000026, 10.214504299000055 ], [ 99.201345248000052, 10.210638739000046 ], [ 99.15162194100003, 10.103461005000042 ], [ 99.178884311000047, 10.025295315000051 ], [ 99.158457879000082, 9.99054596600007 ], [ 99.172129754000082, 9.85024648600006 ], [ 99.144948036622566, 9.79123236757971 ], [ 99.102354363862787, 9.786767279486355 ], [ 99.024943067568472, 9.73036245456359 ], [ 98.902004835554692, 9.729664822573511 ], [ 98.790332066371718, 9.68700592738162 ], [ 98.749817743094354, 9.601171373060424 ], [ 98.662639601636272, 9.658428860503477 ], [ 98.635457797839081, 9.769920763432481 ], [ 98.720827264166871, 9.857383123932038 ], [ 98.733384637291124, 9.897949124052843 ], [ 98.770901727033049, 9.938437608009167 ], [ 98.822733189085341, 9.948075262863085 ], [ 98.852240431950349, 9.990579128424031 ], [ 98.903296746747401, 10.017270005806097 ], [ 98.929961785707803, 10.06879140949593 ], [ 98.938281690947235, 10.125583808046315 ], [ 98.893633254371139, 10.207671820897815 ], [ 98.917094354221035, 10.256325182261321 ], [ 98.914458855891439, 10.291697699189456 ], [ 98.952751092888604, 10.352830919311486 ], [ 98.943759393181438, 10.383630072469828 ], [ 98.905157097821757, 10.416987210491357 ], [ 98.903451776378347, 10.455951239258297 ], [ 98.913683710434839, 10.485587673332418 ], [ 98.966910434668762, 10.536488959397957 ], [ 98.955231560687935, 10.565117703119483 ], [ 98.975747104745039, 10.602660631283072 ], [ 98.940193718864975, 10.669219875896545 ], [ 98.905622185815162, 10.693352769314856 ], [ 98.924018996379516, 10.74719961207245 ], [ 98.879191487696971, 10.788202778935101 ], [ 98.905414674000042, 10.814405619000127 ], [ 98.934043416000122, 10.807713521000011 ], [ 98.981895793000035, 10.832414856000113 ], [ 98.98024214700007, 10.918016867000077 ], [ 99.001532837000127, 10.957626851000043 ], [ 99.055069621000086, 10.94525034600008 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "TH-85", "NAME_1": "Ranong" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.74740644600007, 10.350531317000048 ], [ 98.791313111000136, 10.520418396000053 ], [ 98.777257121000105, 10.583231100000106 ], [ 98.747904908000123, 10.623125305000059 ], [ 98.756793254000058, 10.66606842000003 ], [ 98.810950155000057, 10.746631979000114 ], [ 98.879191487696971, 10.788202778935101 ], [ 98.924018996379516, 10.74719961207245 ], [ 98.905622185815162, 10.693352769314856 ], [ 98.940193718864975, 10.669219875896545 ], [ 98.975747104745039, 10.602660631283072 ], [ 98.955231560687935, 10.565117703119483 ], [ 98.966910434668762, 10.536488959397957 ], [ 98.913683710434839, 10.485587673332418 ], [ 98.903451776378347, 10.455951239258297 ], [ 98.905157097821757, 10.416987210491357 ], [ 98.943759393181438, 10.383630072469828 ], [ 98.952751092888604, 10.352830919311486 ], [ 98.914458855891439, 10.291697699189456 ], [ 98.917094354221035, 10.256325182261321 ], [ 98.893633254371139, 10.207671820897815 ], [ 98.938281690947235, 10.125583808046315 ], [ 98.929961785707803, 10.06879140949593 ], [ 98.903296746747401, 10.017270005806097 ], [ 98.852240431950349, 9.990579128424031 ], [ 98.817617222057095, 9.943889471821649 ], [ 98.770901727033049, 9.938437608009167 ], [ 98.733384637291124, 9.897949124052843 ], [ 98.720827264166871, 9.857383123932038 ], [ 98.641038852860731, 9.786069648395539 ], [ 98.660572544087586, 9.661787828345609 ], [ 98.727441847962893, 9.626001899368134 ], [ 98.775294223649439, 9.5467044135778 ], [ 98.678607619446041, 9.461748359299349 ], [ 98.679796176951982, 9.423430283880464 ], [ 98.656696812307985, 9.423120225518005 ], [ 98.672974887580949, 9.357491155992022 ], [ 98.549003126792854, 9.351729233817082 ], [ 98.511020949057524, 9.306434841194971 ], [ 98.47562259280835, 9.316046658526432 ], [ 98.430147333032949, 9.357026068897937 ], [ 98.389615276728563, 9.344922551367102 ], [ 98.397146030000044, 9.378810940000051 ], [ 98.457204623000052, 9.548529364000046 ], [ 98.486827019000032, 9.52806224200009 ], [ 98.531097852000073, 9.566107489000046 ], [ 98.463389519000032, 9.604437567000048 ], [ 98.514170769000032, 9.654730536000045 ], [ 98.493662957000026, 9.685736395000049 ], [ 98.513194207000026, 9.694891669000071 ], [ 98.493662957000026, 9.713690497000073 ], [ 98.543955925000034, 9.70648834800005 ], [ 98.56576582100007, 9.742621161000045 ], [ 98.521006707000026, 9.75462474200009 ], [ 98.507985873000052, 9.740383205000057 ], [ 98.507985873000052, 9.774562893000052 ], [ 98.555430535000028, 9.798041083000044 ], [ 98.583018425000034, 9.842840887000079 ], [ 98.549001498000052, 9.809271552000041 ], [ 98.512705925000034, 9.836859442000048 ], [ 98.549001498000052, 9.883734442000048 ], [ 98.576182488000029, 9.87759023600006 ], [ 98.589854363000029, 9.905462958000044 ], [ 98.57162519600007, 9.91547272300005 ], [ 98.591970248000052, 9.942694403000075 ], [ 98.630869988000029, 9.952704169000071 ], [ 98.599619988000029, 9.973863023000092 ], [ 98.603526238000029, 9.99359772300005 ], [ 98.662282748000052, 10.085272528000075 ], [ 98.712901238000029, 10.205511786000045 ], [ 98.74740644600007, 10.350531317000048 ] ] ], [ [ [ 98.411631707000026, 9.76829661700009 ], [ 98.416677280000044, 9.733465887000079 ], [ 98.39812259200005, 9.706244208000044 ], [ 98.384938998000052, 9.727932033000059 ], [ 98.411631707000026, 9.76829661700009 ] ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "TH-85", "NAME_1": "Ranong" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.74740644600007, 10.350531317000019 ], [ 98.791313111000136, 10.520418396000053 ], [ 98.777257121000105, 10.583231100000106 ], [ 98.747904908000123, 10.623125305000059 ], [ 98.756793254000058, 10.66606842000003 ], [ 98.810950155000057, 10.746631979000114 ], [ 98.879191487696971, 10.788202778935101 ], [ 98.924018996379516, 10.74719961207245 ], [ 98.905622185815162, 10.693352769314856 ], [ 98.940193718864975, 10.669219875896545 ], [ 98.975747104745039, 10.602660631283072 ], [ 98.955231560687935, 10.565117703119483 ], [ 98.966910434668762, 10.536488959397957 ], [ 98.913683710434839, 10.485587673332418 ], [ 98.903451776378347, 10.455951239258297 ], [ 98.905157097821757, 10.416987210491357 ], [ 98.943759393181438, 10.383630072469828 ], [ 98.952751092888604, 10.352830919311486 ], [ 98.914458855891439, 10.291697699189456 ], [ 98.917094354221035, 10.256325182261321 ], [ 98.893633254371139, 10.207671820897815 ], [ 98.938281690947235, 10.125583808046315 ], [ 98.929961785707803, 10.06879140949593 ], [ 98.903296746747401, 10.017270005806097 ], [ 98.852240431950349, 9.990579128424031 ], [ 98.817617222057095, 9.943889471821649 ], [ 98.770901727033049, 9.938437608009167 ], [ 98.733384637291124, 9.897949124052843 ], [ 98.720827264166871, 9.857383123932038 ], [ 98.641038852860731, 9.786069648395539 ], [ 98.660572544087586, 9.661787828345609 ], [ 98.727441847962893, 9.626001899368134 ], [ 98.775294223649439, 9.5467044135778 ], [ 98.678607619446041, 9.461748359299349 ], [ 98.679796176951982, 9.423430283880464 ], [ 98.656696812307985, 9.423120225518005 ], [ 98.672974887580949, 9.357491155992022 ], [ 98.549003126792854, 9.351729233817082 ], [ 98.511020949057524, 9.306434841194971 ], [ 98.47562259280835, 9.316046658526432 ], [ 98.430147333032949, 9.357026068897937 ], [ 98.389615276728563, 9.344922551367102 ], [ 98.397146030000044, 9.378810940000051 ], [ 98.457204623000052, 9.548529364000046 ], [ 98.486827019000032, 9.52806224200009 ], [ 98.531097852000073, 9.566107489000046 ], [ 98.463389519000032, 9.604437567000048 ], [ 98.514170769000032, 9.654730536000045 ], [ 98.493662957000026, 9.685736395000049 ], [ 98.513194207000026, 9.694891669000071 ], [ 98.493662957000026, 9.713690497000073 ], [ 98.543955925000034, 9.70648834800005 ], [ 98.56576582100007, 9.742621161000045 ], [ 98.521006707000026, 9.75462474200009 ], [ 98.507985873000052, 9.740383205000057 ], [ 98.507985873000052, 9.774562893000052 ], [ 98.555430535000028, 9.798041083000044 ], [ 98.583018425000034, 9.842840887000079 ], [ 98.549001498000052, 9.809271552000041 ], [ 98.512705925000034, 9.836859442000048 ], [ 98.549001498000052, 9.883734442000048 ], [ 98.576182488000029, 9.87759023600006 ], [ 98.589854363000029, 9.905462958000044 ], [ 98.57162519600007, 9.91547272300005 ], [ 98.591970248000052, 9.942694403000075 ], [ 98.630869988000029, 9.952704169000071 ], [ 98.599619988000029, 9.973863023000092 ], [ 98.603526238000029, 9.99359772300005 ], [ 98.662282748000052, 10.085272528000075 ], [ 98.712901238000029, 10.205511786000045 ], [ 98.74740644600007, 10.350531317000019 ] ] ], [ [ [ 98.411631707000026, 9.76829661700009 ], [ 98.416677280000044, 9.733465887000079 ], [ 98.39812259200005, 9.706244208000044 ], [ 98.384938998000052, 9.727932033000059 ], [ 98.411631707000026, 9.76829661700009 ] ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "TH-56", "NAME_1": "Phayao" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.390048157996034, 19.724387049322843 ], [ 100.418862346000026, 19.634358215000063 ], [ 100.455552613000123, 19.584671326000077 ], [ 100.461960490000138, 19.537103170000037 ], [ 100.549293660000103, 19.494547628000092 ], [ 100.574757877873708, 19.508347404509095 ], [ 100.589860468186032, 19.485916855778271 ], [ 100.514412875753578, 19.398454495278713 ], [ 100.513689406241042, 19.374166572229512 ], [ 100.535703566166603, 19.343444933436899 ], [ 100.570740188109141, 19.349103501925072 ], [ 100.604898309109615, 19.329776516273171 ], [ 100.595441522308363, 19.250091457754536 ], [ 100.630994908188427, 19.130072944011147 ], [ 100.563143752382246, 19.090514635142256 ], [ 100.551981643238207, 19.061265773796435 ], [ 100.570636835321636, 19.028528754298577 ], [ 100.478446079622813, 19.050672105433307 ], [ 100.459945917170273, 19.000313421727014 ], [ 100.495189243788502, 18.990417385354021 ], [ 100.49999515155497, 18.969333401415327 ], [ 100.419638300367239, 18.935924587449733 ], [ 100.352562290017602, 18.815079251406303 ], [ 100.162806430971955, 18.830840561842422 ], [ 100.120948520557761, 18.811746121086628 ], [ 100.076196731194159, 18.823063258962236 ], [ 100.06038374211596, 18.878770452794129 ], [ 99.964472284268481, 18.939567776131923 ], [ 99.941527948356111, 18.98003042256596 ], [ 99.843032668123101, 19.000752672198075 ], [ 99.822672153696885, 19.050852973485917 ], [ 99.781382684063601, 19.066175035249671 ], [ 99.709397414059367, 19.229084988181626 ], [ 99.710482618777803, 19.323084418111364 ], [ 99.687383254133806, 19.429796250796301 ], [ 99.746191034288756, 19.455789496188288 ], [ 99.909281854374058, 19.4826354032013 ], [ 99.922304314592395, 19.46276581519021 ], [ 99.912072382334543, 19.398790392062949 ], [ 99.933311395004807, 19.385871282833421 ], [ 100.016975538989868, 19.433387763534427 ], [ 100.081157667692196, 19.429796250796301 ], [ 100.087100457919746, 19.452146308405418 ], [ 100.13846683107937, 19.475969143461214 ], [ 100.183787063022521, 19.612420763007776 ], [ 100.337369418563753, 19.670039984757466 ], [ 100.390048157996034, 19.724387049322843 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "TH-55", "NAME_1": "Nan" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 100.87981612100009, 19.61358429000002 ], [ 101.002547649000121, 19.610612895000102 ], [ 101.124659057000031, 19.565111796000068 ], [ 101.207961467000132, 19.589554749000101 ], [ 101.251059611000073, 19.560305888000059 ], [ 101.251731405000044, 19.494444275000049 ], [ 101.238243856000054, 19.472300924000038 ], [ 101.192871948000061, 19.45279307100013 ], [ 101.172356405000073, 19.376389465000088 ], [ 101.17845422400012, 19.346623841000095 ], [ 101.211268758000131, 19.326366679000088 ], [ 101.235711711000079, 19.128110047000021 ], [ 101.317877238000108, 19.050130311000132 ], [ 101.326403850000133, 19.020545553000076 ], [ 101.283925823000061, 18.981478170000074 ], [ 101.224911337000037, 18.874766337000082 ], [ 101.228632040000036, 18.795623881000083 ], [ 101.205842733000054, 18.730072327000059 ], [ 101.240104207000059, 18.673641663000026 ], [ 101.221914103000131, 18.642041525000039 ], [ 101.160884237000062, 18.599796041000062 ], [ 101.155354859000056, 18.556723734000073 ], [ 101.073809448000077, 18.50577077200002 ], [ 101.030297892000078, 18.42779103600013 ], [ 101.074088765983731, 18.371613107558858 ], [ 100.919452753042094, 18.249945787568038 ], [ 100.910254347759917, 18.203540350906451 ], [ 100.880953811369238, 18.177469591148679 ], [ 100.893201125231712, 18.156049710425805 ], [ 100.842609898428009, 18.086544908220901 ], [ 100.76054772309891, 18.026057644144942 ], [ 100.576579623750604, 18.051172390393504 ], [ 100.515239698952882, 18.017918606058799 ], [ 100.430955438242847, 18.011665758368054 ], [ 100.405478956788386, 18.131167507274597 ], [ 100.457362094784799, 18.163542792465876 ], [ 100.50325076660954, 18.276042384848154 ], [ 100.496739537399662, 18.339346015306319 ], [ 100.537253858878444, 18.406654567853991 ], [ 100.541284621188254, 18.448667506999811 ], [ 100.533068067837007, 18.473472194885858 ], [ 100.488988072041877, 18.493031725433752 ], [ 100.409819776561392, 18.493858546834474 ], [ 100.386255323924047, 18.580261541936579 ], [ 100.405685663262716, 18.632945664710633 ], [ 100.378503858566205, 18.643229274711246 ], [ 100.366721632697136, 18.672814031941982 ], [ 100.397417433967348, 18.73950246776468 ], [ 100.374008010061573, 18.750251165758698 ], [ 100.348531528607111, 18.804175522882076 ], [ 100.419638300367239, 18.935924587449733 ], [ 100.49999515155497, 18.969333401415327 ], [ 100.495189243788502, 18.990417385354021 ], [ 100.459945917170273, 19.000313421727014 ], [ 100.478446079622813, 19.050672105433307 ], [ 100.570636835321636, 19.028528754298577 ], [ 100.551981643238207, 19.061265773796435 ], [ 100.563143752382246, 19.090514635142256 ], [ 100.632545200900267, 19.135266425405177 ], [ 100.595441522308363, 19.250091457754536 ], [ 100.604898309109615, 19.329776516273171 ], [ 100.570740188109141, 19.349103501925072 ], [ 100.529967483312646, 19.347165636484931 ], [ 100.512862583041738, 19.394139513028108 ], [ 100.590325555280117, 19.476201687457888 ], [ 100.574757877873708, 19.508347404509095 ], [ 100.60701623600005, 19.540927226000079 ], [ 100.714761597000063, 19.51245351200005 ], [ 100.753002157000026, 19.482429504 ], [ 100.87981612100009, 19.61358429000002 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "TH-53", "NAME_1": "Uttaradit" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 101.074088765983731, 18.371613107558858 ], [ 101.155406535000054, 18.322887879000049 ], [ 101.130136760000028, 18.291158550000105 ], [ 101.128379761000133, 18.245734965000068 ], [ 101.162796265000054, 18.195298768000058 ], [ 101.141608928000039, 18.123959453000069 ], [ 101.165173381000045, 18.05342112300012 ], [ 101.112308391000056, 18.011304830000071 ], [ 101.06616133700004, 17.933996887000077 ], [ 101.000842326000054, 17.884800924 ], [ 101.000273886000116, 17.830488994000049 ], [ 100.967045940000105, 17.803823955 ], [ 100.975520874000097, 17.779794413000062 ], [ 100.958571005000067, 17.764136455000099 ], [ 100.954024286091908, 17.705172838155931 ], [ 100.910461053334927, 17.687861233209333 ], [ 100.871962110762752, 17.704190986225001 ], [ 100.748713820386456, 17.557869167827789 ], [ 100.609084100151051, 17.458340358820465 ], [ 100.581178826841324, 17.420849107500317 ], [ 100.508211704906216, 17.402013048263541 ], [ 100.489298130404336, 17.416714993302264 ], [ 100.44640669121577, 17.416120714099634 ], [ 100.336129185113748, 17.369482734340693 ], [ 100.294271274699554, 17.366743883223592 ], [ 100.247400750943882, 17.311450100541663 ], [ 100.257632684101054, 17.238844712913135 ], [ 100.20549116368619, 17.197090156185766 ], [ 99.982817417090075, 17.165645046081977 ], [ 99.971190219952632, 17.255045273820315 ], [ 100.016148715790564, 17.326358751155453 ], [ 100.000335727611684, 17.410229599816148 ], [ 100.035268995867398, 17.4382382268127 ], [ 100.019766066051091, 17.473739935849324 ], [ 99.930365839212072, 17.569832261749468 ], [ 99.967469516904657, 17.612413642575518 ], [ 99.977081333336798, 17.675639756869259 ], [ 99.896569451618859, 17.803693955911342 ], [ 99.955377231773809, 17.782842515969321 ], [ 100.001265903598551, 17.830617377290139 ], [ 100.137381626360934, 17.861339016082695 ], [ 100.240527784729466, 17.950920111873643 ], [ 100.273135613917418, 17.959110825903849 ], [ 100.293444452399513, 17.954770006130843 ], [ 100.336594273107153, 17.895109565254245 ], [ 100.369822219020136, 17.983863836946512 ], [ 100.42211876816657, 18.015954902196938 ], [ 100.515239698952882, 18.017918606058799 ], [ 100.576579623750604, 18.051172390393504 ], [ 100.76054772309891, 18.026057644144942 ], [ 100.842609898428009, 18.086544908220901 ], [ 100.891495802888926, 18.152535712053464 ], [ 100.880953811369238, 18.177469591148679 ], [ 100.910254347759917, 18.203540350906451 ], [ 100.919452753042094, 18.249945787568038 ], [ 101.074088765983731, 18.371613107558858 ] ] ] } },

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@ -35,8 +35,8 @@
{ "type": "Feature", "properties": { "ISO": "VN-59", "NAME_1": "Cà Mau" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.426036004000025, 9.008002020000049 ], [ 105.408213738000029, 9.000555731000077 ], [ 105.315126031000034, 8.812237350000089 ], [ 105.258819849000076, 8.760465236000073 ], [ 105.184030841000038, 8.740881653000088 ], [ 105.101472290000061, 8.634275390000084 ], [ 104.856211785000028, 8.565578518000052 ], [ 104.722911004000082, 8.602687893000052 ], [ 104.720225457000026, 8.613755601000037 ], [ 104.759301294000068, 8.615620453000076 ], [ 104.835134311000047, 8.66046784100007 ], [ 104.819509311000047, 8.69086334800005 ], [ 104.832774285000028, 8.698879299000055 ], [ 104.911631707000026, 8.685207424000055 ], [ 104.963145379000082, 8.71938711100006 ], [ 104.90748131600003, 8.699611721000053 ], [ 104.853282097000033, 8.712551174000055 ], [ 104.85279381600003, 8.729193427000041 ], [ 104.92896569100003, 8.747300523000092 ], [ 104.92156009200005, 8.80931224200009 ], [ 104.816661004000082, 8.771307684000078 ], [ 104.774594540000066, 8.817867266000064 ], [ 104.811717017000035, 8.937049451000064 ], [ 104.834136223875049, 9.534433881757723 ], [ 104.877867465910754, 9.506138414356315 ], [ 105.02390506436717, 9.528255927069381 ], [ 105.279910108764454, 9.405808621470669 ], [ 105.304766472594565, 9.372218940351786 ], [ 105.287248162972276, 9.330722765143491 ], [ 105.31685875862479, 9.297210598390393 ], [ 105.281046991225594, 9.236206570376908 ], [ 105.28332075434929, 9.205174872322459 ], [ 105.316703728993843, 9.191067206486366 ], [ 105.34057824089308, 9.085466416941586 ], [ 105.413855422090023, 9.04394440421089 ], [ 105.426036004000025, 9.008002020000049 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "VN-55", "NAME_1": "Bạc Liêu" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.868256056000064, 9.254706122000073 ], [ 105.53874759200005, 9.129339911000045 ], [ 105.426036004000025, 9.008002020000049 ], [ 105.413855422090023, 9.04394440421089 ], [ 105.34057824089308, 9.085466416941586 ], [ 105.316703728993843, 9.191067206486366 ], [ 105.28332075434929, 9.205174872322459 ], [ 105.281046991225594, 9.236206570376908 ], [ 105.31685875862479, 9.297210598390393 ], [ 105.287248162972276, 9.330722765143491 ], [ 105.304766472594565, 9.372218940351786 ], [ 105.279910108764454, 9.405808621470669 ], [ 105.298823684165654, 9.425058091857466 ], [ 105.278359816951934, 9.459500433698054 ], [ 105.310192498884646, 9.515517685892462 ], [ 105.296033156205169, 9.600318712338662 ], [ 105.462586297819371, 9.587451279952575 ], [ 105.569298129604931, 9.610421454286666 ], [ 105.577566358900299, 9.459267889701323 ], [ 105.599735549356069, 9.418004259389022 ], [ 105.692391392148977, 9.383949490276734 ], [ 105.785925734085311, 9.394103909068122 ], [ 105.823029412677215, 9.378032538470848 ], [ 105.868256056000064, 9.254706122000073 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "VN-73", "NAME_1": "Hau Giang" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.838510089810569, 10.004751968856691 ], [ 105.819021030000044, 10.007961330000057 ], [ 105.902104592352998, 9.916698971580274 ], [ 105.826285027731785, 9.723696193924184 ], [ 105.674097935271448, 9.640910549082548 ], [ 105.533796420568308, 9.599388536351853 ], [ 105.392254673314483, 9.5868311632276 ], [ 105.393184849301292, 9.642615872324654 ], [ 105.36155887294359, 9.683491929908598 ], [ 105.367605015059382, 9.701888739573633 ], [ 105.50397912024016, 9.834257920866321 ], [ 105.528525424808493, 9.9078709988475 ], [ 105.518913609275614, 9.95218353953868 ], [ 105.422782761814972, 10.043628432606056 ], [ 105.692236363417408, 10.123180853713393 ], [ 105.838510089810569, 10.004751968856691 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "VN-49", "NAME_1": "Vĩnh Long" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.996567502348185, 9.888559491461713 ], [ 105.93287194100003, 9.95538971600007 ], [ 105.838510089810569, 10.004751968856691 ], [ 105.692236363417408, 10.123180853713393 ], [ 105.707894321965341, 10.174547226873017 ], [ 105.727531365979701, 10.185631822550533 ], [ 105.818998651266725, 10.143127956989588 ], [ 105.867884555727642, 10.140725001757403 ], [ 105.900957472908999, 10.160103665152008 ], [ 105.914600050751687, 10.213950507010281 ], [ 105.882922397550544, 10.238936062049618 ], [ 105.849022658069146, 10.301438706830822 ], [ 105.984569940050676, 10.284178778727664 ], [ 106.100738560436184, 10.249090480841005 ], [ 106.15788821700005, 10.195379950000074 ], [ 106.182139519000032, 10.133042710000041 ], [ 106.246429884000065, 10.077460028000075 ], [ 106.134018182293232, 9.993679713847712 ], [ 106.132571242368897, 9.945827338161109 ], [ 105.996567502348185, 9.888559491461713 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "VN-51", "NAME_1": "Trà Vinh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.246429884000065, 10.077460028000075 ], [ 106.500987175000034, 9.834051825000074 ], [ 106.537852410000028, 9.751166083000044 ], [ 106.574961785000028, 9.739081122000073 ], [ 106.563161655000044, 9.614325262000079 ], [ 106.497243686000047, 9.549994208000044 ], [ 106.398203972000033, 9.542059637000079 ], [ 106.250336134000065, 9.63117096600007 ], [ 106.064707879000025, 9.804266669000071 ], [ 105.996567502348185, 9.888559491461713 ], [ 106.132571242368897, 9.945827338161109 ], [ 106.134018182293232, 9.993679713847712 ], [ 106.246429884000065, 10.077460028000075 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "VN-49", "NAME_1": "Vĩnh Long" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 105.996567502348185, 9.888559491461711 ], [ 105.93287194100003, 9.95538971600007 ], [ 105.838510089810569, 10.004751968856691 ], [ 105.692236363417408, 10.123180853713393 ], [ 105.707894321965341, 10.174547226873017 ], [ 105.727531365979701, 10.185631822550533 ], [ 105.818998651266725, 10.143127956989588 ], [ 105.867884555727642, 10.140725001757403 ], [ 105.900957472908999, 10.160103665152008 ], [ 105.914600050751687, 10.213950507010281 ], [ 105.882922397550544, 10.238936062049618 ], [ 105.849022658069146, 10.301438706830822 ], [ 105.984569940050676, 10.284178778727664 ], [ 106.100738560436184, 10.249090480841005 ], [ 106.15788821700005, 10.195379950000074 ], [ 106.182139519000032, 10.133042710000041 ], [ 106.246429884000065, 10.077460028000075 ], [ 106.134018182293232, 9.993679713847712 ], [ 106.132571242368897, 9.945827338161109 ], [ 105.996567502348185, 9.888559491461711 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "VN-51", "NAME_1": "Trà Vinh" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.246429884000065, 10.077460028000075 ], [ 106.500987175000034, 9.834051825000074 ], [ 106.537852410000028, 9.751166083000044 ], [ 106.574961785000028, 9.739081122000073 ], [ 106.563161655000044, 9.614325262000079 ], [ 106.497243686000047, 9.549994208000044 ], [ 106.398203972000033, 9.542059637000079 ], [ 106.250336134000065, 9.63117096600007 ], [ 106.064707879000025, 9.804266669000071 ], [ 105.996567502348185, 9.888559491461711 ], [ 106.132571242368897, 9.945827338161109 ], [ 106.134018182293232, 9.993679713847712 ], [ 106.246429884000065, 10.077460028000075 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "VN-50", "NAME_1": "Bến Tre" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.422373893840074, 10.316961981110524 ], [ 106.480316602000073, 10.280829169000071 ], [ 106.720876498000052, 10.199693101000037 ], [ 106.797618035000028, 10.157212632000039 ], [ 106.791270379000025, 10.110174872000073 ], [ 106.737071160000028, 10.05414459800005 ], [ 106.704112175000034, 10.048895575000074 ], [ 106.69662519600007, 10.083644924000055 ], [ 106.668711785000028, 10.032416083000044 ], [ 106.684092644000032, 10.01203034100007 ], [ 106.664235873000052, 10.006089585000041 ], [ 106.648936394000032, 9.974351304000038 ], [ 106.607432488000029, 9.974839585000041 ], [ 106.468923373000052, 10.058986721000053 ], [ 106.359873894000032, 10.220689195000091 ], [ 106.292002800000034, 10.261704820000091 ], [ 106.349375847000033, 10.214829820000091 ], [ 106.36850019600007, 10.155910549000055 ], [ 106.461680535000028, 10.035711981000077 ], [ 106.696299675000034, 9.896551825000074 ], [ 106.668711785000028, 9.842840887000079 ], [ 106.676442905000044, 9.866766669000071 ], [ 106.662608269000032, 9.883734442000048 ], [ 106.637868686000047, 9.825995184000078 ], [ 106.586761915000068, 9.822943427000041 ], [ 106.504405144000032, 9.905462958000044 ], [ 106.395030144000032, 9.974351304000038 ], [ 106.136485222000033, 10.234564520000049 ], [ 105.954907667554778, 10.28851959939999 ], [ 105.973155143894758, 10.31334056231708 ], [ 106.003428581263961, 10.321071681412946 ], [ 106.10718834706455, 10.296250718495855 ], [ 106.354340039860915, 10.338975327149626 ], [ 106.422373893840074, 10.316961981110524 ] ] ], [ [ [ 106.498057488000029, 9.891180731000077 ], [ 106.544118686000047, 9.838039455000057 ], [ 106.535655144000032, 9.829169012000079 ], [ 106.422373894000032, 9.939032294000071 ], [ 106.498057488000029, 9.891180731000077 ] ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "VN-39", "NAME_1": "Đông Nam Bộ" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 106.997813347000033, 10.624904690000051 ], [ 106.984141472000033, 10.566880601000037 ], [ 106.964128881242857, 10.605376922007338 ], [ 106.892500259879057, 10.670073740810494 ], [ 106.836468193152541, 10.66083133799583 ], [ 106.757029250299638, 10.705393378501583 ], [ 106.751138136915415, 10.772495225474245 ], [ 106.793822869629707, 10.752625637463211 ], [ 106.828962844359751, 10.77086741839662 ], [ 106.877745396033163, 10.760790513971017 ], [ 106.885341830860739, 10.788179023343218 ], [ 106.832270136257762, 10.917344265525401 ], [ 106.787518345095521, 10.980673733505967 ], [ 106.787518345095521, 11.034675604995186 ], [ 106.827309197961085, 11.055527044937151 ], [ 106.902084995925804, 11.025968126128078 ], [ 106.954691604334016, 11.064001979807529 ], [ 106.974587029867507, 11.122422187234122 ], [ 106.933866001015076, 11.214742133242851 ], [ 106.964768507860299, 11.283626816924027 ], [ 107.080213657834008, 11.402740994001647 ], [ 107.104294875308199, 11.475423895996016 ], [ 107.308520136295215, 11.566219386815249 ], [ 107.382520787004694, 11.559501451131041 ], [ 107.398023715921681, 11.505964666735963 ], [ 107.458795200837812, 11.482529405307787 ], [ 107.443188918233943, 11.441214098152102 ], [ 107.456676467345062, 11.410414944094384 ], [ 107.52680138627494, 11.402508450004973 ], [ 107.609535354273135, 11.361684068365037 ], [ 107.548247105419534, 11.289156196001613 ], [ 107.430941604371526, 11.038086248781326 ], [ 107.459777052768743, 11.008837389234088 ], [ 107.531348911622956, 11.000129910367036 ], [ 107.557393832959008, 10.979666043153372 ], [ 107.588399692591679, 10.91176321050375 ], [ 107.5907768094022, 10.85086253527777 ], [ 107.516569452218391, 10.756062120570391 ], [ 107.482669711837673, 10.798410956500447 ], [ 107.457865024850946, 10.801511541924128 ], [ 107.342471551720678, 10.683740952882658 ], [ 107.300148553313022, 10.696401678794416 ], [ 107.288779737694711, 10.759007677262503 ], [ 107.266558873093459, 10.774433091813705 ], [ 107.151010370332301, 10.727665919946219 ], [ 107.133440382967251, 10.675214342068216 ], [ 107.040526157755949, 10.636792913861882 ], [ 107.025318916934452, 10.635272493031096 ], [ 107.013194207000026, 10.672674872000073 ], [ 106.984141472000033, 10.699367580000057 ], [ 106.97974694100003, 10.684759833000044 ], [ 107.01140384200005, 10.655259507000039 ], [ 106.997813347000033, 10.624904690000051 ] ] ] } },
{ "type": "Feature", "properties": { "ISO": "VN-40", "NAME_1": "Bình Thuận" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 108.905964763452928, 11.323376750700559 ], [ 108.838063998000052, 11.330755927000041 ], [ 108.787852410000028, 11.300685940000051 ], [ 108.729340040000068, 11.181545315000051 ], [ 108.656260613000029, 11.19281647300005 ], [ 108.57740319100003, 11.17914459800005 ], [ 108.531260613000029, 11.153265692000048 ], [ 108.500336134000065, 11.120835679000038 ], [ 108.47234134200005, 11.053168036000045 ], [ 108.36882571700005, 11.022772528000075 ], [ 108.34498131600003, 10.953802802000041 ], [ 108.315440300000034, 10.944322007000039 ], [ 108.30005944100003, 10.91282786700009 ], [ 108.285329623000052, 10.943345445000091 ], [ 108.258636915000068, 10.95180898600006 ], [ 108.106455925000034, 10.918158270000049 ], [ 108.06568444100003, 10.867987372000073 ], [ 107.998301629000025, 10.699367580000057 ], [ 107.882334832000026, 10.716986395000049 ], [ 107.768321160000028, 10.650213934000078 ], [ 107.586517774000072, 10.573513088000084 ], [ 107.516569452218391, 10.756062120570391 ], [ 107.5907768094022, 10.85086253527777 ], [ 107.588399692591679, 10.91176321050375 ], [ 107.544991490364964, 10.99214590101252 ], [ 107.476985304927837, 11.001447659082203 ], [ 107.430941604371526, 11.038086248781326 ], [ 107.511453485190145, 11.220865789724428 ], [ 107.597288038612021, 11.357575791689442 ], [ 107.756348098186152, 11.31491689739687 ], [ 108.010182733146564, 11.301481025129192 ], [ 108.045891147758198, 11.283704332189188 ], [ 108.0528674658608, 11.211021430194819 ], [ 108.066044955710083, 11.203399156046203 ], [ 108.131829054866955, 11.269364122356365 ], [ 108.250529819895235, 11.306519476892333 ], [ 108.324892205810613, 11.356258042974275 ], [ 108.338689813284191, 11.379305732573471 ], [ 108.314660271754121, 11.466897284282254 ], [ 108.341170281982897, 11.507928372396464 ], [ 108.386490513026729, 11.523844713362791 ], [ 108.513717888869451, 11.527720445142393 ], [ 108.580432164013132, 11.505215358801763 ], [ 108.620171340035256, 11.564023138956657 ], [ 108.666886835059358, 11.562834581450772 ], [ 108.704920688738753, 11.536712143950297 ], [ 108.721508824172872, 11.476638291923621 ], [ 108.762901645694342, 11.458603217464486 ], [ 108.771893345401509, 11.407779445764788 ], [ 108.867908156036549, 11.387987372119539 ], [ 108.905964763452928, 11.323376750700559 ] ] ], [ [ [ 108.942556186000047, 10.551947333000044 ], [ 108.958994988000029, 10.537543036000045 ], [ 108.960785352000073, 10.502875067000048 ], [ 108.930186394000032, 10.514553127000056 ], [ 108.929453972000033, 10.544826565000051 ], [ 108.942556186000047, 10.551947333000044 ] ] ] ] } },

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long