diff --git a/CHANGELOG.md b/CHANGELOG.md index 9ecf25a..0350e33 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.14.3 + +* Add --detect-shared-borders option for better polygon simplification + ## 1.14.2 * Enforce that string feature attributes must be encoded as UTF-8 diff --git a/README.md b/README.md index 26a75df..1197526 100644 --- a/README.md +++ b/README.md @@ -125,6 +125,7 @@ resolution is obtained than by using a smaller _maxzoom_ or _detail_. * -al or --drop-lines: Let "dot" dropping at lower zooms apply to lines too * -ap or --drop-polygons: Let "dot" dropping at lower zooms apply to polygons too * -ag or --calculate-feature-density: Add a new attribute, `tippecanoe_feature_density`, to each feature, to record how densely features are spaced in that area of the tile. You can use this attribute in the style to produce a glowing effect where points are densely packed. It can range from 0 in the sparsest areas to 255 in the densest. + * -ab or --detect-shared-borders: In the manner of [TopoJSON](https://github.com/mbostock/topojson/wiki/Introduction), detect borders that are shared between multiple polygons and simplify them identically in each polygon. This takes more time and memory than considering each polygon individually. ### Doing less @@ -253,12 +254,12 @@ lower resolutions before failing if it still doesn't fit. Development ----------- -Requires sqlite3 (should already be installed on MacOS). Rebuilding the manpage +Requires sqlite3 and zlib (should already be installed on MacOS). Rebuilding the manpage uses md2man (`gem install md2man`). Linux: - sudo apt-get install libsqlite3-dev + sudo apt-get install libsqlite3-dev zlib1g-dev Then build: diff --git a/geometry.cpp b/geometry.cpp index 8a95235..bd23f0f 100644 --- a/geometry.cpp +++ b/geometry.cpp @@ -1042,17 +1042,19 @@ drawvec impose_tile_boundaries(drawvec &geom, long long extent) { return out; } -drawvec simplify_lines(drawvec &geom, int z, int detail, bool mark_tile_bounds, double simplification) { +drawvec simplify_lines(drawvec &geom, int z, int detail, bool mark_tile_bounds, double simplification, bool already_marked) { int res = 1 << (32 - detail - z); long long area = 1LL << (32 - z); - for (size_t i = 0; i < geom.size(); i++) { - if (geom[i].op == VT_MOVETO) { - geom[i].necessary = 1; - } else if (geom[i].op == VT_LINETO) { - geom[i].necessary = 0; - } else { - geom[i].necessary = 1; + if (!already_marked) { + for (size_t i = 0; i < geom.size(); i++) { + if (geom[i].op == VT_MOVETO) { + geom[i].necessary = 1; + } else if (geom[i].op == VT_LINETO) { + geom[i].necessary = 0; + } else { + geom[i].necessary = 1; + } } } @@ -1073,7 +1075,19 @@ drawvec simplify_lines(drawvec &geom, int z, int detail, bool mark_tile_bounds, geom[j - 1].necessary = 1; if (j - i > 1) { - douglas_peucker(geom, i, j - i, res * simplification); + if (already_marked && geom[j - 1] < geom[i]) { + drawvec dv; + for (size_t k = j; k > i; k--) { + dv.push_back(geom[k - 1]); + } + douglas_peucker(dv, 0, j - i, res * simplification); + size_t l = 0; + for (size_t k = j; k > i; k--) { + geom[k - 1] = dv[l++]; + } + } else { + douglas_peucker(geom, i, j - i, res * simplification); + } } i = j - 1; } diff --git a/geometry.hpp b/geometry.hpp index fa4d53c..5ba9455 100644 --- a/geometry.hpp +++ b/geometry.hpp @@ -24,9 +24,30 @@ struct draw { this->op = nop; this->x = nx; this->y = ny; + this->necessary = 0; } draw() { + this->op = 0; + this->x = 0; + this->y = 0; + this->necessary = 0; + } + + bool operator<(draw const &s) const { + if (y < s.y || (y == s.y && x < s.x)) { + return true; + } else { + return false; + } + } + + bool operator==(draw const &s) const { + return y == s.y && x == s.x; + } + + bool operator!=(draw const &s) const { + return y != s.y || x != s.x; } }; @@ -43,7 +64,7 @@ drawvec reduce_tiny_poly(drawvec &geom, int z, int detail, bool *reduced, double drawvec clip_lines(drawvec &geom, int z, int detail, long long buffer); bool point_within_tile(long long x, long long y, int z, int detail, long long buffer); int quick_check(long long *bbox, int z, int detail, long long buffer); -drawvec simplify_lines(drawvec &geom, int z, int detail, bool mark_tile_bounds, double simplification); +drawvec simplify_lines(drawvec &geom, int z, int detail, bool mark_tile_bounds, double simplification, bool already_marked); drawvec reorder_lines(drawvec &geom); drawvec fix_polygon(drawvec &geom); std::vector chop_polygon(std::vector &geoms); diff --git a/main.cpp b/main.cpp index 8985dce..1ae662d 100644 --- a/main.cpp +++ b/main.cpp @@ -1801,6 +1801,7 @@ int main(int argc, char **argv) { {"drop-polygons", no_argument, &additional[A_POLYGON_DROP], 1}, {"prefer-radix-sort", no_argument, &additional[A_PREFER_RADIX_SORT], 1}, {"calculate-feature-density", no_argument, &additional[A_CALCULATE_FEATURE_DENSITY], 1}, + {"detect-shared-borders", no_argument, &additional[A_DETECT_SHARED_BORDERS], 1}, {"no-line-simplification", no_argument, &prevent[P_SIMPLIFY], 1}, {"simplify-only-low-zooms", no_argument, &prevent[P_SIMPLIFY_LOW], 1}, diff --git a/man/tippecanoe.1 b/man/tippecanoe.1 index 05c24ab..4f06927 100644 --- a/man/tippecanoe.1 +++ b/man/tippecanoe.1 @@ -148,6 +148,8 @@ which may not be what you want. \-ap or \-\-drop\-polygons: Let "dot" dropping at lower zooms apply to polygons too .IP \(bu 2 \-ag or \-\-calculate\-feature\-density: Add a new attribute, \fB\fCtippecanoe_feature_density\fR, to each feature, to record how densely features are spaced in that area of the tile. You can use this attribute in the style to produce a glowing effect where points are densely packed. It can range from 0 in the sparsest areas to 255 in the densest. +.IP \(bu 2 +\-ab or \-\-detect\-shared\-borders: In the manner of TopoJSON \[la]https://github.com/mbostock/topojson/wiki/Introduction\[ra], detect borders that are shared between multiple polygons and simplify them identically in each polygon. This takes more time and memory than considering each polygon individually. .RE .SS Doing less .RS @@ -289,14 +291,14 @@ If a tile is larger than 500K, it will try encoding that tile at progressively lower resolutions before failing if it still doesn't fit. .SH Development .PP -Requires sqlite3 (should already be installed on MacOS). Rebuilding the manpage +Requires sqlite3 and zlib (should already be installed on MacOS). Rebuilding the manpage uses md2man (\fB\fCgem install md2man\fR). .PP Linux: .PP .RS .nf -sudo apt\-get install libsqlite3\-dev +sudo apt\-get install libsqlite3\-dev zlib1g\-dev .fi .RE .PP diff --git a/options.hpp b/options.hpp index a3855fd..76c9545 100644 --- a/options.hpp +++ b/options.hpp @@ -4,6 +4,7 @@ #define A_LINE_DROP ((int) 'l') #define A_DEBUG_POLYGON ((int) 'd') #define A_POLYGON_DROP ((int) 'p') +#define A_DETECT_SHARED_BORDERS ((int) 'b') #define A_PREFER_RADIX_SORT ((int) 'R') #define A_CALCULATE_FEATURE_DENSITY ((int) 'g') diff --git a/tests/border/in.json b/tests/border/in.json new file mode 100644 index 0000000..6013f48 --- /dev/null +++ b/tests/border/in.json @@ -0,0 +1,8 @@ +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0.000000, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0.000000, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0.000000, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "brk_group": null, "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Albania", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 4.000000, "mapcolor9": 1.000000, "mapcolor13": 6.000000, "pop_est": 3639453.000000, "gdp_md_est": 21810.000000, "pop_year": -99.000000, "lastcensus": 2001.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99.000000, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.747765747000102, 42.578900859000044 ], [ 19.74600874900014, 42.579934387000037 ], [ 19.741357870000172, 42.574405009000117 ], [ 19.733916464000146, 42.562596945000024 ], [ 19.732159464000176, 42.555543111000105 ], [ 19.730299113000171, 42.540427755 ], [ 19.730919230000126, 42.533658143000054 ], [ 19.734329875000157, 42.524382223000032 ], [ 19.751589803000144, 42.493402202000112 ], [ 19.784456014000085, 42.474566143000089 ], [ 19.801405884000189, 42.468132426000039 ], [ 19.819595988000117, 42.466478780000017 ], [ 19.829062799000127, 42.468722537000019 ], [ 19.835512329000153, 42.470251160000117 ], [ 19.873339477000115, 42.486839295000038 ], [ 19.88253788300014, 42.493402202000112 ], [ 19.882744588000094, 42.493557231000068 ], [ 19.882744588000094, 42.493608907000066 ], [ 19.907549276000111, 42.506398824000058 ], [ 19.956331828000174, 42.505313620000067 ], [ 19.981756632000099, 42.510765483000029 ], [ 20.017723429000142, 42.546241353000084 ], [ 20.0392208250002, 42.557765199000102 ], [ 20.064955688000083, 42.546758118000014 ], [ 20.085626261000101, 42.530014954000052 ], [ 20.135545695000161, 42.509628601000117 ], [ 20.152392212000137, 42.49371226 ], [ 20.152598918000109, 42.49371226 ], [ 20.152598918000109, 42.493608907000066 ], [ 20.152702271000123, 42.493428040000111 ], [ 20.152702271000123, 42.493402202000112 ], [ 20.180814249000065, 42.443095195000041 ], [ 20.186291952000147, 42.437436625000117 ], [ 20.199727824000121, 42.427798971000101 ], [ 20.204688761000142, 42.420099182 ], [ 20.204378703000174, 42.411830953000049 ], [ 20.19404341600017, 42.400100403000067 ], [ 20.192803182000119, 42.393692526000024 ], [ 20.197454061000172, 42.387439677000117 ], [ 20.213060343000137, 42.377517802000028 ], [ 20.218848104000102, 42.371445822000169 ], [ 20.22122522000015, 42.363720194999985 ], [ 20.21946822100017, 42.350206808000024 ], [ 20.220915161000164, 42.343101298000079 ], [ 20.229596802000117, 42.326719869000044 ], [ 20.23776167800014, 42.319924419000074 ], [ 20.249647257000078, 42.318606669000019 ], [ 20.317963501000122, 42.319821065000042 ], [ 20.333363078000133, 42.31788320000004 ], [ 20.456973104000099, 42.250497132000106 ], [ 20.473664576000147, 42.237123002000033 ], [ 20.48167443900013, 42.230705058000041 ], [ 20.500794719000112, 42.211223043000047 ], [ 20.538621867000188, 42.150115662000047 ], [ 20.549370565000117, 42.123476461000024 ], [ 20.551954386000205, 42.105803122 ], [ 20.552161092000176, 42.073789572000095 ], [ 20.558258911000138, 42.055108541000038 ], [ 20.589678182000171, 41.993639425000026 ], [ 20.594329061000138, 41.973718160000033 ], [ 20.59928999800016, 41.960566509000046 ], [ 20.59928999800016, 41.947879944000078 ], [ 20.588748006000117, 41.929586488000041 ], [ 20.580583130000093, 41.921731669000081 ], [ 20.573348430000124, 41.917675070000087 ], [ 20.567250611000162, 41.91217153000008 ], [ 20.562496379000095, 41.90010508200001 ], [ 20.562703084000134, 41.892844544000042 ], [ 20.567767375000102, 41.88051971499999 ], [ 20.567147258000148, 41.873181662 ], [ 20.54172245200013, 41.86158030200005 ], [ 20.540786219000125, 41.844864632000053 ], [ 20.540482218000193, 41.839436951000039 ], [ 20.548440389000149, 41.814193013000079 ], [ 20.550136327000132, 41.800060201000093 ], [ 20.550920858000126, 41.79352244100005 ], [ 20.544409628000068, 41.784763286000072 ], [ 20.521155232000154, 41.76765838700004 ], [ 20.511336710000165, 41.75794321699999 ], [ 20.503275187000099, 41.744636536000058 ], [ 20.500381307000112, 41.734094544000101 ], [ 20.508339478000067, 41.661747539000061 ], [ 20.513403768000131, 41.640405172000044 ], [ 20.534591105000089, 41.594025574000057 ], [ 20.53467017400007, 41.587324468000077 ], [ 20.534694458000132, 41.585266419000078 ], [ 20.529320109000167, 41.574879456000048 ], [ 20.520845174000158, 41.568368225000086 ], [ 20.507409302000099, 41.562270406000039 ], [ 20.492939901000085, 41.557671204000059 ], [ 20.444157349000136, 41.549661356000087 ], [ 20.447878052000135, 41.535450338000032 ], [ 20.444984171000158, 41.508475241000014 ], [ 20.452012166000145, 41.493592427000067 ], [ 20.463174275000171, 41.489768372000015 ], [ 20.470822388000073, 41.483773905000078 ], [ 20.481596975000116, 41.468269012000093 ], [ 20.483534790000135, 41.46548044900004 ], [ 20.486842082000123, 41.457780660000026 ], [ 20.4889091390001, 41.441450908000093 ], [ 20.490872843000119, 41.436024883000016 ], [ 20.498004191000149, 41.431477356000073 ], [ 20.514644002000182, 41.429461976000027 ], [ 20.522188761000137, 41.425689596000012 ], [ 20.534074341000149, 41.412977194000064 ], [ 20.539048843000074, 41.402943875000091 ], [ 20.540172160000111, 41.400678202000023 ], [ 20.539965454000139, 41.387138977000035 ], [ 20.532937459000152, 41.37044749 ], [ 20.52342899500016, 41.356804912000086 ], [ 20.510406534000111, 41.344402568000021 ], [ 20.49604048700013, 41.337787985000034 ], [ 20.48167443900013, 41.341198629000047 ], [ 20.478108340000119, 41.321585090000013 ], [ 20.477747029000142, 41.319597881000078 ], [ 20.483121379000124, 41.289470520000094 ], [ 20.500071248000125, 41.235520325000039 ], [ 20.512680297000145, 41.21014719700014 ], [ 20.549680623000199, 41.170614726000025 ], [ 20.565493611000193, 41.147412008 ], [ 20.570557902000161, 41.124829407000078 ], [ 20.569937785000093, 41.107104390000046 ], [ 20.576965780000108, 41.09351348900006 ], [ 20.597419353000106, 41.086272625000021 ], [ 20.605284464000107, 41.083488261000127 ], [ 20.618927042000109, 41.082403056000032 ], [ 20.631536092000147, 41.082868144000059 ], [ 20.634128612000154, 41.082576194000069 ], [ 20.643008260000158, 41.081576233000106 ], [ 20.653860310000198, 41.075271708 ], [ 20.664092244000187, 41.059148662000013 ], [ 20.68341923000014, 40.993829652000073 ], [ 20.702746216000094, 40.936313782000042 ], [ 20.717215617000107, 40.913214417000063 ], [ 20.730572639000115, 40.904611095 ], [ 20.740883423000156, 40.897969870000026 ], [ 20.766101522000099, 40.893732402000069 ], [ 20.783671509000072, 40.899055074000017 ], [ 20.81695113100011, 40.920242411000089 ], [ 20.836544264000167, 40.923903755000055 ], [ 20.837414999000174, 40.924066468000035 ], [ 20.890228312000119, 40.918278707000042 ], [ 20.939941040000122, 40.907064921000085 ], [ 20.956684204000084, 40.894765931000052 ], [ 20.964849080000192, 40.875955709000038 ], [ 20.965262492000107, 40.849394023000031 ], [ 20.967019490000098, 40.802006734000145 ], [ 20.960921671000136, 40.780767721000075 ], [ 20.943661743000149, 40.765264791000078 ], [ 20.95348026500011, 40.759166972000031 ], [ 20.957200968000109, 40.751622213000076 ], [ 20.959164673000146, 40.743560689000162 ], [ 20.963505493000127, 40.736067607000052 ], [ 20.992030884000172, 40.715500387000048 ], [ 21.018592570000095, 40.69090240500006 ], [ 21.02882450300018, 40.676846416000046 ], [ 21.035335734000142, 40.659379781000098 ], [ 21.036679321000122, 40.639742737000063 ], [ 21.033165324000066, 40.621397603999981 ], [ 21.022519979000066, 40.586619365000047 ], [ 21.020762980000171, 40.575095521 ], [ 21.020349568000171, 40.566775614000051 ], [ 21.018799276000067, 40.558972473000011 ], [ 21.013528280000116, 40.54889557000007 ], [ 21.006706990000168, 40.543211162000034 ], [ 20.997508585000077, 40.539180399000031 ], [ 20.988310181000173, 40.533495993000088 ], [ 20.981488891000112, 40.523264058000024 ], [ 20.968569783000106, 40.520576884 ], [ 20.957924439000124, 40.514944153000044 ], [ 20.951929973000091, 40.506055807000052 ], [ 20.952653442000098, 40.493653463000072 ], [ 20.949759562000111, 40.487865702000107 ], [ 20.946452270000094, 40.482904765000058 ], [ 20.936840454000105, 40.472517802000027 ], [ 20.91193241300013, 40.459547018000109 ], [ 20.889608195000164, 40.463732809000135 ], [ 20.866767212000155, 40.472052714000085 ], [ 20.839998820000176, 40.471639303000075 ], [ 20.826666301000159, 40.464818014000031 ], [ 20.821291951000177, 40.456394756000037 ], [ 20.817364543000139, 40.446834615000057 ], [ 20.809199666000097, 40.436602682000057 ], [ 20.800311320000105, 40.432778626000044 ], [ 20.779537394000158, 40.429006246000114 ], [ 20.770649048000138, 40.421978251000013 ], [ 20.768995402000172, 40.412573140000035 ], [ 20.773336223000172, 40.385339661000046 ], [ 20.773852987000112, 40.374901022000103 ], [ 20.770442342000166, 40.362550354000064 ], [ 20.765998168000152, 40.354282125 ], [ 20.755042765000098, 40.338624166000045 ], [ 20.739552404000136, 40.30916637200005 ], [ 20.736645955000199, 40.303639221000054 ], [ 20.728791138000162, 40.298264873000079 ], [ 20.71783573400009, 40.293924052000108 ], [ 20.706983684000136, 40.28808461600002 ], [ 20.699128866000194, 40.278369446000085 ], [ 20.694581339000166, 40.255580139000074 ], [ 20.696648397000132, 40.235581360000054 ], [ 20.69644169100016, 40.215065816999982 ], [ 20.685279582000135, 40.191191305000075 ], [ 20.679801880000156, 40.187832337000089 ], [ 20.665022420000128, 40.184370016000031 ], [ 20.66037154100016, 40.178892314000052 ], [ 20.659854777000135, 40.172742818000074 ], [ 20.663162068000133, 40.161684062000063 ], [ 20.663472127000205, 40.156619772 ], [ 20.668226359000101, 40.138067933000059 ], [ 20.666779419000108, 40.133520406000116 ], [ 20.651793254000125, 40.101015931000177 ], [ 20.647555786000083, 40.094039612000103 ], [ 20.6402177330001, 40.090112203000018 ], [ 20.615361181000111, 40.081017339000084 ], [ 20.57779260200013, 40.067271220000038 ], [ 20.552884562000173, 40.065410869000033 ], [ 20.499864543000143, 40.071457011000064 ], [ 20.48167443900013, 40.067787985000052 ], [ 20.465964803000134, 40.060811666000063 ], [ 20.432788533000121, 40.06380889899998 ], [ 20.413771606000154, 40.057194316000079 ], [ 20.400439087000137, 40.04525706000004 ], [ 20.38907027200014, 40.029444072000047 ], [ 20.380698690000173, 40.011667379000102 ], [ 20.376461222000131, 39.99373565700003 ], [ 20.359924764000141, 39.991048482000025 ], [ 20.310005330000166, 39.989859925000076 ], [ 20.297913045000172, 39.986914367999987 ], [ 20.302977335000065, 39.979111227000061 ], [ 20.317963501000122, 39.918391419000159 ], [ 20.323131144000143, 39.912396952000051 ], [ 20.346902303000093, 39.894258525000026 ], [ 20.392997680000121, 39.835450745000031 ], [ 20.397028442000106, 39.818087463000012 ], [ 20.388966919000126, 39.798140361000094 ], [ 20.371603637000106, 39.784291077000034 ], [ 20.354550415000176, 39.785789693000055 ], [ 20.336877076000178, 39.794006246000066 ], [ 20.299576529000149, 39.805056407000166 ], [ 20.298326457000201, 39.805426737000062 ], [ 20.288404581000094, 39.806615296000103 ], [ 20.280032999000127, 39.803979797000068 ], [ 20.27300500500013, 39.796486715000043 ], [ 20.275485474000106, 39.792404277000031 ], [ 20.281376587000096, 39.788166809000074 ], [ 20.284683878000095, 39.780311992000065 ], [ 20.283133586000162, 39.77514434800014 ], [ 20.276829061000143, 39.763155416000075 ], [ 20.275692179000146, 39.760054830000058 ], [ 20.278172648000123, 39.756747538000042 ], [ 20.285510701000106, 39.749667868000017 ], [ 20.2872677000002, 39.746670634000026 ], [ 20.291091756000128, 39.737937317000046 ], [ 20.296466105000093, 39.733493144000022 ], [ 20.299463339000113, 39.728222148000015 ], [ 20.296466105000093, 39.717370097000043 ], [ 20.282720174000161, 39.704399312000021 ], [ 20.264116658000205, 39.69607940700007 ], [ 20.249027140000095, 39.684813944000012 ], [ 20.246029907000093, 39.662903137000058 ], [ 20.2372449140002, 39.667037252000085 ], [ 20.228563273000134, 39.66915598600005 ], [ 20.220088338000153, 39.66915598600005 ], [ 20.212026815000144, 39.667037252000085 ], [ 20.204171997000117, 39.660319316000141 ], [ 20.203035116000109, 39.65261952700007 ], [ 20.20344852700012, 39.645333151000074 ], [ 20.199934530000149, 39.640062154000049 ], [ 20.184121541000167, 39.63701324500002 ], [ 20.163761027000135, 39.644299622000091 ], [ 20.13523563600009, 39.664195048000096 ], [ 20.089346964000129, 39.682798564000052 ], [ 20.049556111000101, 39.692720438000066 ], [ 20.016069784000109, 39.70140208 ], [ 19.999909785591541, 39.69349825129126 ], [ 19.99984785200013, 39.693508205000029 ], [ 19.996836785000113, 39.692572333000044 ], [ 19.995860222000147, 39.686712958000015 ], [ 19.989024285000113, 39.686712958000015 ], [ 19.983571811000076, 39.701361395000021 ], [ 19.986989780000101, 39.717962958000072 ], [ 20.002696160000056, 39.748236395000077 ], [ 19.985606316000116, 39.753729559000107 ], [ 19.980642123000081, 39.75731028900006 ], [ 19.995860222000147, 39.782945054000038 ], [ 20.014170769000117, 39.832953192000076 ], [ 20.016286655000016, 39.845038153000075 ], [ 20.009776238000114, 39.865668036000102 ], [ 19.999278191000144, 39.87140534100007 ], [ 19.983734571000042, 39.872381903000047 ], [ 19.961680535000141, 39.878566799000112 ], [ 19.960215691000087, 39.881048895000049 ], [ 19.959971550000148, 39.885077216000099 ], [ 19.958832227000102, 39.889349677000013 ], [ 19.954844597000118, 39.892808335000012 ], [ 19.94117272200009, 39.898993231000077 ], [ 19.931162957000112, 39.9019229190001 ], [ 19.914073113000086, 39.902411200000103 ], [ 19.906423373000052, 39.906439520000049 ], [ 19.906423373000052, 39.912665106000105 ], [ 19.921234571000099, 39.926947333000015 ], [ 19.93100019600007, 39.934515692000076 ], [ 19.94117272200009, 39.940008856000077 ], [ 19.923838738000114, 39.952826239000018 ], [ 19.876800977000102, 40.022365627000028 ], [ 19.87045332100007, 40.034735419000071 ], [ 19.863454623000081, 40.045355536000017 ], [ 19.85523522200009, 40.049872137000079 ], [ 19.823252800000091, 40.050604559000107 ], [ 19.807383660000056, 40.052883205000057 ], [ 19.796560092000078, 40.057318427000041 ], [ 19.80453535200013, 40.063462632000039 ], [ 19.777354363000114, 40.077785549000112 ], [ 19.773122592000078, 40.071234442000019 ], [ 19.771657748000024, 40.068304755000099 ], [ 19.770518425000091, 40.063462632000039 ], [ 19.76726321700005, 40.072455145000049 ], [ 19.762461785000141, 40.076849677000041 ], [ 19.75635826900006, 40.079901434000107 ], [ 19.749359571000099, 40.084621486000032 ], [ 19.748057488000086, 40.08860911700009 ], [ 19.740896030000044, 40.100409247000073 ], [ 19.732676629000139, 40.110256252000084 ], [ 19.729014519000089, 40.108221747000073 ], [ 19.719086134000094, 40.116034247000044 ], [ 19.653168165000068, 40.132391669000071 ], [ 19.597829623000052, 40.157700914000117 ], [ 19.56576582100007, 40.179836330000086 ], [ 19.50928795700014, 40.194484768000109 ], [ 19.476247592000107, 40.213690497000044 ], [ 19.38111412900011, 40.29523346600007 ], [ 19.369965040000096, 40.309027411000102 ], [ 19.36508222700013, 40.317368882000068 ], [ 19.351573113000143, 40.362046617000118 ], [ 19.344248894000145, 40.374335028000075 ], [ 19.309255405000044, 40.400824286000045 ], [ 19.296885613000114, 40.413560289000088 ], [ 19.29517662900011, 40.417547919000071 ], [ 19.29517662900011, 40.418687242000118 ], [ 19.289561394000089, 40.420396226000037 ], [ 19.289561394000089, 40.427232164000117 ], [ 19.316172722000147, 40.437811591000099 ], [ 19.332530144000145, 40.43891022300005 ], [ 19.348155144000145, 40.430650132000039 ], [ 19.383799675000091, 40.397406317000048 ], [ 19.393239780000101, 40.3862979190001 ], [ 19.406504754000139, 40.362616278000075 ], [ 19.411957227000073, 40.348089911000045 ], [ 19.414235873000052, 40.334418036000017 ], [ 19.42359459700009, 40.330023505000042 ], [ 19.444590691000116, 40.33380768400005 ], [ 19.465586785000056, 40.341498114000075 ], [ 19.474945509000094, 40.34837474200009 ], [ 19.481618686000047, 40.439113674000083 ], [ 19.47877037900011, 40.453924872000073 ], [ 19.453135613000143, 40.465318101000037 ], [ 19.418793165000096, 40.491888739000075 ], [ 19.391368035000141, 40.521795966000042 ], [ 19.386403842000078, 40.54328034100007 ], [ 19.393239780000101, 40.537054755000014 ], [ 19.396006707000055, 40.529608466000042 ], [ 19.398610873000052, 40.52094147300005 ], [ 19.406748894000089, 40.522772528000132 ], [ 19.414235873000052, 40.522772528000132 ], [ 19.433604363000057, 40.505926825000131 ], [ 19.446055535000085, 40.511135158000116 ], [ 19.45264733200014, 40.529852606000077 ], [ 19.454600457000112, 40.553859768000024 ], [ 19.442149285000085, 40.573065497000073 ], [ 19.415700717000107, 40.583482164000088 ], [ 19.391612175000091, 40.578314520000077 ], [ 19.386403842000078, 40.550726630000071 ], [ 19.379242384000037, 40.566148179000095 ], [ 19.309825066000116, 40.644354559000078 ], [ 19.304372592000078, 40.653143622000044 ], [ 19.309336785000113, 40.665025132000011 ], [ 19.322927280000073, 40.674872137000108 ], [ 19.339040561000047, 40.684068101 ], [ 19.351573113000143, 40.694159247000073 ], [ 19.360524936000076, 40.709784247000044 ], [ 19.364512566000144, 40.726507880000071 ], [ 19.365570509000094, 40.785956122000101 ], [ 19.36882571700005, 40.802150783000059 ], [ 19.377777540000096, 40.812974351000065 ], [ 19.396250847000118, 40.817043361000032 ], [ 19.406748894000089, 40.820746161000073 ], [ 19.40406334700009, 40.829291083000101 ], [ 19.396739129000082, 40.838690497000101 ], [ 19.393239780000101, 40.844916083000072 ], [ 19.397634311000076, 40.852972723000107 ], [ 19.404795769000117, 40.861070054000038 ], [ 19.411387566000116, 40.867092190000051 ], [ 19.414235873000052, 40.868841864000046 ], [ 19.406260613000086, 40.880316473000079 ], [ 19.391123894000089, 40.895249742000033 ], [ 19.381195509000094, 40.908270575000103 ], [ 19.389821811000104, 40.913804429000038 ], [ 19.404958530000101, 40.918158270000021 ], [ 19.424571160000141, 40.939642645000049 ], [ 19.440928582000083, 40.948635158000059 ], [ 19.427012566000087, 40.936835028000104 ], [ 19.435394727000045, 40.913397528000132 ], [ 19.42725670700014, 40.893377997000073 ], [ 19.42725670700014, 40.872259833000044 ], [ 19.434743686000104, 40.872259833000044 ], [ 19.437836134000094, 40.886542059000135 ], [ 19.437673373000109, 40.88344961100006 ], [ 19.439138217000078, 40.880072333000044 ], [ 19.440928582000083, 40.872259833000044 ], [ 19.45411217500012, 40.885809637000108 ], [ 19.506602410000085, 40.905096747000044 ], [ 19.523448113000086, 40.920640367000061 ], [ 19.52515709700009, 40.945257880000042 ], [ 19.514659050000091, 40.964911200000103 ], [ 19.50147545700014, 40.982977606000105 ], [ 19.495453321000042, 41.00263092700007 ], [ 19.49203535200013, 40.976955471000025 ], [ 19.479665561000104, 40.953924872000044 ], [ 19.453868035000085, 40.923976955000086 ], [ 19.453461134000065, 40.92837148600006 ], [ 19.447764519000089, 40.93431224200009 ], [ 19.458506707000112, 40.942613023000064 ], [ 19.469981316000144, 40.956732489000103 ], [ 19.477224155000073, 40.975002346000082 ], [ 19.474945509000094, 40.995794989000046 ], [ 19.469981316000144, 41.000718492000033 ], [ 19.453786655000101, 41.005845445000034 ], [ 19.447764519000089, 41.009466864000103 ], [ 19.440603061000047, 41.020656643000109 ], [ 19.441254102000102, 41.02602773600006 ], [ 19.445485873000109, 41.030707098000079 ], [ 19.456390821000099, 41.106675523 ], [ 19.451182488000086, 41.122707424000083 ], [ 19.445485873000109, 41.129461981000105 ], [ 19.441172722000118, 41.137355861000088 ], [ 19.441905144000145, 41.143866278000075 ], [ 19.463715040000096, 41.151312567000076 ], [ 19.467133009000094, 41.162665106000134 ], [ 19.467133009000094, 41.17617422100011 ], [ 19.468760613000114, 41.187567450000074 ], [ 19.50953209700009, 41.237290757000068 ], [ 19.516612175000148, 41.256415106000048 ], [ 19.513356967000107, 41.276678778000047 ], [ 19.50294030000012, 41.294134833000015 ], [ 19.488047722000147, 41.30646393400005 ], [ 19.471934441000087, 41.311102606000077 ], [ 19.450043165000068, 41.311102606000077 ], [ 19.431651238000114, 41.313706773000092 ], [ 19.418955925000148, 41.322577216000127 ], [ 19.414235873000052, 41.341498114000046 ], [ 19.414235873000052, 41.38279857 ], [ 19.410817905000044, 41.391669012000136 ], [ 19.396006707000055, 41.402044989000046 ], [ 19.393239780000101, 41.413519598000079 ], [ 19.406423373000052, 41.400376695000034 ], [ 19.428721550000091, 41.401312567000019 ], [ 19.445160352000102, 41.415187893000109 ], [ 19.440928582000083, 41.44086334800005 ], [ 19.46461022200009, 41.450873114000046 ], [ 19.489268425000091, 41.466131903000104 ], [ 19.508636915000096, 41.486883856000105 ], [ 19.516612175000148, 41.513413804000066 ], [ 19.514170769000117, 41.529974677000041 ], [ 19.507172071000127, 41.536281643000081 ], [ 19.496348504000139, 41.538763739000103 ], [ 19.482432488000057, 41.543850002000028 ], [ 19.468028191000087, 41.5542666690001 ], [ 19.451996290000096, 41.574774481000077 ], [ 19.440928582000083, 41.585394598000107 ], [ 19.528086785000085, 41.576564846000053 ], [ 19.556407097000147, 41.583075262000051 ], [ 19.565196160000113, 41.585109768000081 ], [ 19.584808790000068, 41.619574286000102 ], [ 19.591644727000102, 41.619574286000102 ], [ 19.592295769000145, 41.608587958000044 ], [ 19.596039259000065, 41.602728583000101 ], [ 19.60303795700014, 41.601752020000021 ], [ 19.61296634200005, 41.605292059000107 ], [ 19.604991082000112, 41.632147528000075 ], [ 19.600108269000117, 41.639105536000073 ], [ 19.591644727000102, 41.632635809000078 ], [ 19.587087436000047, 41.640692450000103 ], [ 19.557627800000148, 41.660549221000025 ], [ 19.578135613000114, 41.687648830000057 ], [ 19.576345248000024, 41.718939520000106 ], [ 19.571136915000125, 41.752386786000073 ], [ 19.571299675000091, 41.770412502000084 ], [ 19.589528842000078, 41.765692450000074 ], [ 19.598968946000099, 41.778713283000059 ], [ 19.599782748000109, 41.799750067000105 ], [ 19.591644727000102, 41.818793036000102 ], [ 19.585215691000087, 41.818548895000049 ], [ 19.465505405000073, 41.85545482 ], [ 19.451182488000086, 41.862534898000064 ], [ 19.432953321000099, 41.868597723000079 ], [ 19.36512209956598, 41.852371910313195 ], [ 19.364223267000114, 41.862846375000089 ], [ 19.364946737000196, 41.888994650000086 ], [ 19.356988566000126, 41.899639993999983 ], [ 19.347686808000105, 41.906357931000031 ], [ 19.345309692000143, 41.910337016000085 ], [ 19.345929810000115, 41.91447113000001 ], [ 19.3454130450001, 41.921189067000057 ], [ 19.346653279000122, 41.926175843000095 ], [ 19.350477336000068, 41.931369324 ], [ 19.352854452000201, 41.93850067200006 ], [ 19.346446574000169, 41.961548361000013 ], [ 19.351614217000161, 41.965165711000083 ], [ 19.3597790930001, 41.965992534 ], [ 19.365773559000132, 41.969713237000121 ], [ 19.371044556000157, 41.986559754000012 ], [ 19.363706503000145, 41.993484395000081 ], [ 19.36339644300017, 41.993639425000026 ], [ 19.354198039000067, 42.008703105000023 ], [ 19.350580689000196, 42.027823385000033 ], [ 19.351717570000091, 42.047615458 ], [ 19.356575155000115, 42.064797872000071 ], [ 19.374868612000085, 42.094666850000067 ], [ 19.372491496000151, 42.104252828000085 ], [ 19.369997877000145, 42.106506676000038 ], [ 19.355024861000089, 42.120039979000069 ], [ 19.297767375000149, 42.151665955000055 ], [ 19.282057739000066, 42.164559225000062 ], [ 19.28195567700007, 42.164723366000061 ], [ 19.272032511000134, 42.180682271000052 ], [ 19.27492639200014, 42.191275941000043 ], [ 19.304588663000089, 42.215098776000019 ], [ 19.400396769000139, 42.325893047000108 ], [ 19.401326945000079, 42.331060690000101 ], [ 19.400706828000125, 42.344754944000044 ], [ 19.402670532000144, 42.352015483 ], [ 19.412075643000094, 42.368396912000065 ], [ 19.4172432860002, 42.374107158000101 ], [ 19.468402954000112, 42.418109640000068 ], [ 19.481735473000128, 42.434491069000018 ], [ 19.501475871000196, 42.444128724000024 ], [ 19.517805623000129, 42.458029684000024 ], [ 19.531654907000188, 42.474772848000043 ], [ 19.543747192000183, 42.493402202000112 ], [ 19.543747192000183, 42.493557231000068 ], [ 19.549328247000091, 42.508595072000048 ], [ 19.561317179000156, 42.516243185000036 ], [ 19.575683227000155, 42.522341004000168 ], [ 19.588085572000125, 42.532857158000041 ], [ 19.593666626000129, 42.544820252000079 ], [ 19.599247681000151, 42.571046041000017 ], [ 19.605035441000126, 42.584843649000049 ], [ 19.621778605000173, 42.604997457000053 ], [ 19.647926880000085, 42.627838441000051 ], [ 19.658037166000128, 42.634612704000034 ], [ 19.67603885900013, 42.646674500000074 ], [ 19.699293254000139, 42.65481353800007 ], [ 19.722134237000148, 42.646080221 ], [ 19.73753381400013, 42.624401957000117 ], [ 19.74600874900014, 42.598899639000081 ], [ 19.746884654000127, 42.588929772000199 ], [ 19.747765747000102, 42.578900859000044 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0.000000, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0.000000, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0.000000, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "brk_group": null, "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Bosnia and Herzegovina", "name_alt": null, "mapcolor7": 1.000000, "mapcolor8": 1.000000, "mapcolor9": 1.000000, "mapcolor13": 2.000000, "pop_est": 4613414.000000, "gdp_md_est": 29700.000000, "pop_year": -99.000000, "lastcensus": 1991.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99.000000, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16.000000, "long_len": 22.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.941528768000126, 45.241218974000034 ], [ 16.947316529000204, 45.235689596000029 ], [ 16.967987101000119, 45.237291566000081 ], [ 16.965299926000114, 45.244216207000065 ], [ 16.961165812000075, 45.250934143000066 ], [ 16.975945271000086, 45.247161764000069 ], [ 16.988140909000094, 45.236516419000068 ], [ 16.99868290200007, 45.231400452000074 ], [ 17.008294718000172, 45.244164531000123 ], [ 17.012015421000086, 45.236464742000052 ], [ 17.013565715000112, 45.230573629000062 ], [ 17.012532186000129, 45.224475810000101 ], [ 17.008294718000172, 45.216155905000036 ], [ 17.014392537000134, 45.219773255000192 ], [ 17.030205525000127, 45.226956279000078 ], [ 17.036303344000174, 45.230470276000105 ], [ 17.05573368300017, 45.200446269000068 ], [ 17.098418416000158, 45.177656962000057 ], [ 17.124628433000112, 45.169057755000082 ], [ 17.187095174000149, 45.148563131000074 ], [ 17.197843872000163, 45.152955628000072 ], [ 17.245489543000133, 45.155384420000118 ], [ 17.249727010000186, 45.159880269000055 ], [ 17.268950643000096, 45.189542542000098 ], [ 17.307811320000155, 45.171404115000072 ], [ 17.326518188000136, 45.165926412000076 ], [ 17.359384399000163, 45.150681865000124 ], [ 17.36858280400017, 45.14510081000013 ], [ 17.382432088000144, 45.139623109000027 ], [ 17.400828898000128, 45.141018372000119 ], [ 17.43410852000008, 45.148563131000074 ], [ 17.436175578000132, 45.151922099000089 ], [ 17.438759399000133, 45.158123271000065 ], [ 17.443306925000172, 45.162050680000036 ], [ 17.451161743000114, 45.158485006000049 ], [ 17.456949503000175, 45.151818746000046 ], [ 17.458086385000087, 45.146134339000113 ], [ 17.454985799000156, 45.14060496000009 ], [ 17.447751099000186, 45.134300436000089 ], [ 17.46036014800012, 45.131251526000071 ], [ 17.472349080000157, 45.132750142000063 ], [ 17.496223592000149, 45.141690165000099 ], [ 17.487025187000143, 45.12086456400003 ], [ 17.48185754400015, 45.114405009000095 ], [ 17.489298950000176, 45.116265361000089 ], [ 17.539528443000108, 45.120967916000055 ], [ 17.561439250000177, 45.119365947000048 ], [ 17.572394653000146, 45.120399476000031 ], [ 17.593065226000164, 45.12959788000019 ], [ 17.629962199000175, 45.157348125000041 ], [ 17.651562948000162, 45.165357971000034 ], [ 17.684739217000157, 45.163962708000057 ], [ 17.714504842000167, 45.152025452000103 ], [ 17.741376587000161, 45.133266907000106 ], [ 17.797497193000112, 45.081952210000068 ], [ 17.815583944000139, 45.070169983000071 ], [ 17.835737752000114, 45.064433899000093 ], [ 17.845659628000192, 45.065260723000037 ], [ 17.875218546000127, 45.073994039000112 ], [ 17.902607056000164, 45.077766419000042 ], [ 17.911185343000113, 45.081073711000116 ], [ 17.927721802000093, 45.092029114000113 ], [ 17.988493286000107, 45.143808900000082 ], [ 18.003479451000175, 45.149338278000087 ], [ 18.019085734000129, 45.149441631000101 ], [ 18.035002075000136, 45.143343812000055 ], [ 18.090295857000172, 45.107997131000033 ], [ 18.112413371000173, 45.100607402000051 ], [ 18.131843709000151, 45.097868551000076 ], [ 18.143698040000174, 45.097700005000078 ], [ 18.143704328000155, 45.097699916000082 ], [ 18.153651164000081, 45.097558493000108 ], [ 18.174941854000167, 45.100762431000064 ], [ 18.19251184100014, 45.108513896000076 ], [ 18.199333130000184, 45.119004212000121 ], [ 18.200056599000106, 45.131613262000073 ], [ 18.202330363000101, 45.144067281000034 ], [ 18.213285766000183, 45.153782450000094 ], [ 18.237883748000172, 45.157451477000066 ], [ 18.261964966000107, 45.150681865000124 ], [ 18.307440227000171, 45.127530823000129 ], [ 18.322323039000111, 45.122879944000076 ], [ 18.392913045000086, 45.118642476000034 ], [ 18.412033325000095, 45.112441305000047 ], [ 18.429293254000157, 45.102209372000075 ], [ 18.451829852000117, 45.084958745000037 ], [ 18.451841622000131, 45.084949736000098 ], [ 18.466086873000165, 45.0740457160001 ], [ 18.481708184000126, 45.066921352000136 ], [ 18.490788208000168, 45.062780253000071 ], [ 18.517039835000105, 45.055855612000087 ], [ 18.541121053000154, 45.055287171000103 ], [ 18.539260702000149, 45.069343160000031 ], [ 18.534403117000124, 45.081538799000057 ], [ 18.534802705000146, 45.088411718000103 ], [ 18.534919881000178, 45.090427145000078 ], [ 18.549595988000164, 45.094767965000059 ], [ 18.557657511000144, 45.094406230000047 ], [ 18.573780558000124, 45.091564026000086 ], [ 18.581842082000122, 45.091357321000018 ], [ 18.588560018000152, 45.093217672000023 ], [ 18.602512654000151, 45.099263815000072 ], [ 18.609127238000127, 45.100090637000093 ], [ 18.616671997000168, 45.097661845000047 ], [ 18.621116170000107, 45.093114319000179 ], [ 18.627937459000151, 45.080040182000133 ], [ 18.633621867000102, 45.071978658000049 ], [ 18.640546509000075, 45.065364075000062 ], [ 18.648711385000183, 45.062676900000028 ], [ 18.658116495000144, 45.066294250000098 ], [ 18.661217082000093, 45.071100159000125 ], [ 18.663284139000154, 45.07714630100007 ], [ 18.6660746660001, 45.082985739000051 ], [ 18.671345662000135, 45.086861470000102 ], [ 18.678166951000094, 45.087378235000031 ], [ 18.684058065000102, 45.084794414000029 ], [ 18.689019002000151, 45.080246888000019 ], [ 18.726329386000174, 45.026141663000018 ], [ 18.738318319000143, 45.015909729000029 ], [ 18.750100546000141, 45.012240703000131 ], [ 18.778005819000128, 45.010328674000093 ], [ 18.784930461000101, 45.008468323000088 ], [ 18.788961222000097, 45.005729472000056 ], [ 18.791751749000156, 45.00154368100003 ], [ 18.794645630000133, 44.995445862000068 ], [ 18.795162394000101, 44.993327129000093 ], [ 18.795162394000101, 44.988004456000127 ], [ 18.795782512000159, 44.985058899000123 ], [ 18.797952921000132, 44.982216695000076 ], [ 18.803017212000128, 44.977307435000043 ], [ 18.804567505000136, 44.973845113000081 ], [ 18.801570271000116, 44.963974915000094 ], [ 18.779866170000133, 44.952244364000123 ], [ 18.772631469000146, 44.942477519000064 ], [ 18.783380167000189, 44.913745423000066 ], [ 18.817796672000128, 44.887545472000042 ], [ 18.84212947600011, 44.876239320000096 ], [ 18.842144042000172, 44.876232552000076 ], [ 18.858724406000164, 44.868528545000075 ], [ 18.889626912000153, 44.861190491000073 ], [ 19.004968709000195, 44.863309225000066 ], [ 19.015820760000139, 44.865634664000098 ], [ 19.047756795000112, 44.872714336000101 ], [ 19.06842736800013, 44.874833069000076 ], [ 19.084550415000109, 44.878967184000103 ], [ 19.174260701000094, 44.925424297000049 ], [ 19.186869751000103, 44.927543030000024 ], [ 19.193174276000121, 44.921548564000076 ], [ 19.196894979000149, 44.913176982000024 ], [ 19.201855916000085, 44.908371073000112 ], [ 19.211881144000102, 44.908371073000112 ], [ 19.229554484000118, 44.913745423000066 ], [ 19.239476359000122, 44.915140687000033 ], [ 19.28381473800016, 44.908371073000112 ], [ 19.293013143000138, 44.909404602000095 ], [ 19.301281372000091, 44.91235015900007 ], [ 19.310169718000111, 44.91235015900007 ], [ 19.330220174000146, 44.898707581000068 ], [ 19.34014204900015, 44.896227112000091 ], [ 19.350270629000107, 44.897002259000104 ], [ 19.352957805000131, 44.898087463000095 ], [ 19.353164510000113, 44.899017639000064 ], [ 19.356982304000155, 44.895877196000114 ], [ 19.356992726000129, 44.895868623000112 ], [ 19.36277632700012, 44.891111145000096 ], [ 19.36866744000011, 44.887132060000042 ], [ 19.372801554000119, 44.88144765300008 ], [ 19.375695434000107, 44.873127747000112 ], [ 19.376625610000161, 44.86299916600008 ], [ 19.373111613000106, 44.860260315000048 ], [ 19.367840617000184, 44.859278463000052 ], [ 19.363706503000145, 44.854627584000085 ], [ 19.328359822000152, 44.733963115 ], [ 19.318024536000138, 44.715462952000095 ], [ 19.308412720000149, 44.705127665000091 ], [ 19.288258911000156, 44.693035380000097 ], [ 19.277613566000156, 44.684870504000074 ], [ 19.270068807000115, 44.675620422000051 ], [ 19.255702759000116, 44.64564809200003 ], [ 19.208677205000129, 44.588390605000072 ], [ 19.204129679000118, 44.585134990000071 ], [ 19.193277628000146, 44.580587464000033 ], [ 19.188316691000097, 44.57603993700009 ], [ 19.186249633000131, 44.569322002000163 ], [ 19.187283162000114, 44.553302307000124 ], [ 19.185319458000095, 44.546222636000024 ], [ 19.179635051000133, 44.53826446500004 ], [ 19.173123820000171, 44.531443177000099 ], [ 19.165269002000144, 44.526688945000089 ], [ 19.12992232300013, 44.518317363000037 ], [ 19.12733850000015, 44.502556051000127 ], [ 19.143358195000189, 44.458217672000174 ], [ 19.141394490000152, 44.430829163000041 ], [ 19.129612264000144, 44.416153056000056 ], [ 19.115762980000085, 44.403595683000063 ], [ 19.107184693000164, 44.382718404000073 ], [ 19.108941691000126, 44.363649801000108 ], [ 19.116693156000139, 44.343702698000087 ], [ 19.13891402200008, 44.309337871000125 ], [ 19.157000773000107, 44.293576559000073 ], [ 19.177154582000156, 44.286961976000057 ], [ 19.220046020000126, 44.280244039000124 ], [ 19.240716594000133, 44.272699280000168 ], [ 19.24950158700014, 44.270735576000064 ], [ 19.263660930000185, 44.270167135000108 ], [ 19.295907023000126, 44.275799866000042 ], [ 19.307379191000166, 44.27419789599999 ], [ 19.324329061000157, 44.263965963000103 ], [ 19.341588989000144, 44.245827535000089 ], [ 19.353991333000124, 44.224330140000049 ], [ 19.356058390000101, 44.204021301000111 ], [ 19.362362915000091, 44.191205547000052 ], [ 19.3811731360002, 44.177097880000119 ], [ 19.424891398000085, 44.153791810000072 ], [ 19.435536743000171, 44.146092021000086 ], [ 19.442564738000101, 44.14319814 ], [ 19.448455851000091, 44.144438375000036 ], [ 19.459721313000159, 44.152706604000073 ], [ 19.465715779000078, 44.152809957000031 ], [ 19.474190714000173, 44.144903463000063 ], [ 19.476361125000068, 44.127023417000103 ], [ 19.482665649000182, 44.120667217000076 ], [ 19.498168579000094, 44.110228577000058 ], [ 19.516189487000162, 44.091193506000096 ], [ 19.522043091000086, 44.085010478000086 ], [ 19.554599243000126, 44.071264547000069 ], [ 19.570928995000173, 44.056898499000042 ], [ 19.580230753000194, 44.051524150000077 ], [ 19.583848104000168, 44.05431467800004 ], [ 19.58994592300013, 44.060309144000072 ], [ 19.598937622000079, 44.062582906000088 ], [ 19.611443319000074, 44.054521383000107 ], [ 19.6188847250001, 44.035711161000094 ], [ 19.610409790000091, 44.019278057000022 ], [ 19.593356567000143, 44.005583802 ], [ 19.552222127000078, 43.98341461200009 ], [ 19.528554321000144, 43.977213441000103 ], [ 19.504059692000112, 43.975663147000162 ], [ 19.447112264000111, 43.979797262000019 ], [ 19.393988892000095, 43.977058411000073 ], [ 19.379106079000138, 43.973854472000099 ], [ 19.364636678000124, 43.973286031000029 ], [ 19.351717570000119, 43.979125468000106 ], [ 19.32587935400008, 43.99659210200015 ], [ 19.300557902000094, 44.00951121000007 ], [ 19.287328735000102, 44.01302520800003 ], [ 19.272755981000159, 44.012405090000058 ], [ 19.252085409000131, 44.007495830000025 ], [ 19.243507121000107, 44.002018128000216 ], [ 19.238029419000128, 43.992509664000053 ], [ 19.238132771000153, 43.985378316000109 ], [ 19.242887003000135, 43.97282094400002 ], [ 19.240716594000133, 43.965741272000074 ], [ 19.229347778000147, 43.957679748000103 ], [ 19.24102665200013, 43.952357077000059 ], [ 19.27544315600008, 43.933262634000144 ], [ 19.305932251000172, 43.904737244 ], [ 19.359469035000103, 43.842208761000037 ], [ 19.461685018000168, 43.762136129000069 ], [ 19.481735473000128, 43.729218242000101 ], [ 19.505713338000135, 43.673640239000107 ], [ 19.5073669840001, 43.647181905000124 ], [ 19.481735473000128, 43.628914287000057 ], [ 19.477498006000161, 43.616977030000029 ], [ 19.475637654000167, 43.602559306000089 ], [ 19.476877889000122, 43.58868418400003 ], [ 19.481735473000128, 43.578116353000055 ], [ 19.488970174000201, 43.573181255000108 ], [ 19.491760702000164, 43.568607890000081 ], [ 19.489590291000155, 43.564447937000054 ], [ 19.481735473000128, 43.560830587000069 ], [ 19.443908325000137, 43.571863506000071 ], [ 19.431816040000172, 43.571140035000056 ], [ 19.419310344000166, 43.549255067000033 ], [ 19.410732056000143, 43.54075429300012 ], [ 19.402877238000201, 43.549642639000112 ], [ 19.394609009000163, 43.566463318000089 ], [ 19.380449666000118, 43.585583598000099 ], [ 19.36339644300017, 43.601577454000036 ], [ 19.346549926000193, 43.608837992000119 ], [ 19.335801228000093, 43.606512553000087 ], [ 19.312650187000173, 43.593154195000054 ], [ 19.30086796000009, 43.588296611000047 ], [ 19.289189087000125, 43.58793487500013 ], [ 19.263660930000185, 43.590957947000064 ], [ 19.252705525000096, 43.588632507000014 ], [ 19.238856242000139, 43.572121887000051 ], [ 19.229451131000189, 43.549745992000069 ], [ 19.217462199000124, 43.53279612200005 ], [ 19.195344686000112, 43.53279612200005 ], [ 19.147699015000171, 43.538144633000101 ], [ 19.1227909750001, 43.535948385000026 ], [ 19.096022583000121, 43.512900696000131 ], [ 19.076385538000096, 43.507242127000026 ], [ 19.054991495000166, 43.506699524000069 ], [ 19.038144979000094, 43.511014507000127 ], [ 19.025019165000145, 43.52302927699999 ], [ 19.014270467000131, 43.537782898000088 ], [ 19.0002144770001, 43.547885641000065 ], [ 18.977476847000133, 43.546231995000099 ], [ 18.962697388000095, 43.538299662000057 ], [ 18.938926229000145, 43.518946839000094 ], [ 18.920529419000133, 43.512203064000047 ], [ 18.911020955000168, 43.507267965000025 ], [ 18.90512984200015, 43.499051413000089 ], [ 18.905646607000108, 43.490628154000078 ], [ 18.915258423000125, 43.48538299600007 ], [ 18.93065799900009, 43.482282410000025 ], [ 18.937892700000162, 43.478949280000037 ], [ 18.951225219000094, 43.463808085000025 ], [ 18.950708455000154, 43.457296855000052 ], [ 18.946367635000172, 43.449080303000088 ], [ 18.946264282000129, 43.443938497000019 ], [ 18.968278443000116, 43.448098450000131 ], [ 18.975306437000143, 43.44427439400009 ], [ 19.009929647000149, 43.410994772000052 ], [ 19.039591919000202, 43.350714213000074 ], [ 19.06966760300017, 43.308830465000099 ], [ 19.06253625500014, 43.304386292000075 ], [ 19.0362846270001, 43.303326925000093 ], [ 19.024709106000159, 43.298727723000056 ], [ 19.022535153000121, 43.296546325000051 ], [ 19.017164347000119, 43.291157125000083 ], [ 19.010859823000175, 43.282320455000175 ], [ 19.002901652000133, 43.273948873000037 ], [ 18.99246301300019, 43.267101746000051 ], [ 18.989505697000197, 43.272016109000063 ], [ 18.988949015000145, 43.272941183000043 ], [ 18.968588501000113, 43.292216492000094 ], [ 18.959493449000121, 43.303456116000049 ], [ 18.957116333000101, 43.311827698000101 ], [ 18.957943156000113, 43.318984884000045 ], [ 18.957323038000141, 43.32585785000002 ], [ 18.950295044000143, 43.333066712000075 ], [ 18.92342329900012, 43.34683848100012 ], [ 18.899135376000146, 43.351902771000098 ], [ 18.839604126000154, 43.347820333000087 ], [ 18.821207316000169, 43.341386617000055 ], [ 18.824617960000182, 43.337407532000057 ], [ 18.830302368000133, 43.328157450000063 ], [ 18.833506307000107, 43.324152527000066 ], [ 18.807151326000138, 43.31802887 ], [ 18.679510539000148, 43.249480082000062 ], [ 18.66431766700012, 43.233176168000128 ], [ 18.688398885000169, 43.22446869000008 ], [ 18.64530074100017, 43.180181986000051 ], [ 18.629074341000148, 43.154886373000082 ], [ 18.621127821000186, 43.124578152000211 ], [ 18.620599406000139, 43.122562765000097 ], [ 18.621116170000107, 43.096440328000099 ], [ 18.638996215000162, 43.020243429000075 ], [ 18.598378540000112, 43.024455058000044 ], [ 18.538950643000163, 43.023886617000088 ], [ 18.483036743000184, 43.014636536000054 ], [ 18.452754354000149, 42.99339752200008 ], [ 18.433530721000125, 42.954200949000054 ], [ 18.434047486000168, 42.936889344000051 ], [ 18.443969360000068, 42.916864726000099 ], [ 18.467637166000173, 42.881698914000125 ], [ 18.473321574000124, 42.862552795000127 ], [ 18.465983520000151, 42.852811788000096 ], [ 18.453477824000146, 42.845654603000057 ], [ 18.443659302000185, 42.834466655000099 ], [ 18.444589477000136, 42.81707753600007 ], [ 18.453891235000157, 42.793151347000091 ], [ 18.467430460000145, 42.769199321000158 ], [ 18.502157023000166, 42.727444763000037 ], [ 18.522517537000112, 42.711890157000099 ], [ 18.53967411300016, 42.695457052000037 ], [ 18.550009400000164, 42.668068543000103 ], [ 18.549595988000164, 42.638923035000076 ], [ 18.542832323000169, 42.626429044000062 ], [ 18.53843387800012, 42.618304139000159 ], [ 18.51724654200018, 42.602982077000021 ], [ 18.506797873000096, 42.598490208000058 ], [ 18.486654093000169, 42.589830424000056 ], [ 18.493682088000156, 42.579831034000037 ], [ 18.495852498000147, 42.570865174000076 ], [ 18.492131795000148, 42.564767355000114 ], [ 18.481796509000134, 42.56368214900003 ], [ 18.470531047000179, 42.569056499000098 ], [ 18.458955525000135, 42.569728292000079 ], [ 18.44769006400017, 42.566214295000108 ], [ 18.437354777000166, 42.55921213800012 ], [ 18.42102502500012, 42.563630473000032 ], [ 18.385264933000201, 42.56652435300002 ], [ 18.370485474000191, 42.57362986300005 ], [ 18.369790593000147, 42.574384084000101 ], [ 18.369782537000106, 42.574392828000029 ], [ 18.349608195000116, 42.596289979000105 ], [ 18.338652791000158, 42.60251698900008 ], [ 18.311574341000096, 42.601225078000212 ], [ 18.257107381000196, 42.614893494000043 ], [ 18.224137817000127, 42.628070985000207 ], [ 18.049368124000154, 42.714758200000077 ], [ 17.995314575000151, 42.740441387000075 ], [ 17.971853475000103, 42.754962464000116 ], [ 17.928858684000204, 42.790800069000042 ], [ 17.904467407000169, 42.804546 ], [ 17.869430786000152, 42.811806539000131 ], [ 17.85847538200008, 42.816974182000067 ], [ 17.827159464000175, 42.853121847000082 ], [ 17.825092408000103, 42.864542339000067 ], [ 17.826229288000121, 42.888649394000126 ], [ 17.823335408000133, 42.898364563000072 ], [ 17.811759887000079, 42.909862570000101 ], [ 17.802664836000105, 42.909630026000045 ], [ 17.794706665000149, 42.904591573000076 ], [ 17.786748495000097, 42.901387635000091 ], [ 17.765457804000107, 42.904126486000123 ], [ 17.723599894000131, 42.916244609000117 ], [ 17.701585734000162, 42.919500225000021 ], [ 17.67946822100015, 42.915676168000076 ], [ 17.665928996000162, 42.905160014000032 ], [ 17.653349062064194, 42.890928336140732 ], [ 17.653330925000148, 42.890936591000084 ], [ 17.652842644000089, 42.891180731000148 ], [ 17.556488477000073, 42.934759833000058 ], [ 17.573985222000118, 42.934271552000084 ], [ 17.60108483200014, 42.925238348000065 ], [ 17.617930535000141, 42.921779690000065 ], [ 17.603037957000112, 42.932562567000062 ], [ 17.580678729091829, 42.942075402215451 ], [ 17.634509724000139, 42.950402731000096 ], [ 17.662725057000102, 42.965698955000065 ], [ 17.659314412000157, 42.99339752200008 ], [ 17.659211060000132, 42.993449198000107 ], [ 17.659107707000203, 42.993630066000051 ], [ 17.659004354000075, 42.993655905000068 ], [ 17.628411905000178, 43.046572571000056 ], [ 17.598025500000148, 43.07290235300006 ], [ 17.587380818000128, 43.082125957000088 ], [ 17.450913270000171, 43.14815159700008 ], [ 17.44206669100015, 43.152431743000093 ], [ 17.426770467000097, 43.165712585000094 ], [ 17.415194947000145, 43.18496205700005 ], [ 17.406823365000065, 43.205425924000181 ], [ 17.400208781000174, 43.216045431000097 ], [ 17.389666788000113, 43.223099264 ], [ 17.369409628000199, 43.23255605100006 ], [ 17.328688599000145, 43.260357971000204 ], [ 17.2899312750001, 43.303430278000022 ], [ 17.267607055000127, 43.353323873000093 ], [ 17.28641727700014, 43.43737559000003 ], [ 17.270500936000133, 43.463213807000059 ], [ 17.2394950770001, 43.478406677000081 ], [ 17.142756795000111, 43.489336243000125 ], [ 17.084569132000098, 43.51323659300003 ], [ 17.062314068000177, 43.527747065000099 ], [ 17.030515585000131, 43.54847991900003 ], [ 16.981939738000108, 43.589691875000099 ], [ 16.82380985500015, 43.707307434000072 ], [ 16.712602173000136, 43.77151540100003 ], [ 16.698236125000136, 43.788077698000095 ], [ 16.689761190000127, 43.809316712000069 ], [ 16.686143839000152, 43.826137390000056 ], [ 16.678599081000101, 43.840684306000114 ], [ 16.637361288000193, 43.868408712000118 ], [ 16.604805135000134, 43.901068217000031 ], [ 16.555815877000128, 43.937474264000102 ], [ 16.527446673000128, 43.967859174000083 ], [ 16.516541788000069, 43.97953888000005 ], [ 16.501038859000147, 43.992716370000025 ], [ 16.483468872000174, 44.002534892000071 ], [ 16.439647258000093, 44.014007060000083 ], [ 16.431482381000166, 44.025789287000109 ], [ 16.426934855000127, 44.040517070000092 ], [ 16.414015747000121, 44.055813293000071 ], [ 16.403990519000104, 44.058758850000046 ], [ 16.377945597000121, 44.057363587000069 ], [ 16.367196899000191, 44.058138733000092 ], [ 16.357378377000117, 44.062169495000077 ], [ 16.346112915000163, 44.068474019000107 ], [ 16.326889282000138, 44.082374980000068 ], [ 16.312213175000153, 44.099996644000058 ], [ 16.289992309000127, 44.139115702000097 ], [ 16.27552290800017, 44.157357483000041 ], [ 16.232114705000185, 44.190998840000091 ], [ 16.215784953000139, 44.208155416000054 ], [ 16.197078084000168, 44.251150208000112 ], [ 16.187569620000176, 44.282414450000019 ], [ 16.186639445000139, 44.297607320000068 ], [ 16.189533325000127, 44.308511048000113 ], [ 16.199661906000159, 44.324685771000119 ], [ 16.20317590300013, 44.333057353000086 ], [ 16.205863078000164, 44.349800517000048 ], [ 16.205643642000126, 44.350530708000051 ], [ 16.202865844000144, 44.35977406800005 ], [ 16.192117146000129, 44.367422181000038 ], [ 16.171343221000171, 44.377085673000053 ], [ 16.15315311700013, 44.380444642000057 ], [ 16.141991008000105, 44.380754700000054 ], [ 16.138270305000106, 44.377602438000096 ], [ 16.138787069000131, 44.385405579000107 ], [ 16.145401652000118, 44.389591370000133 ], [ 16.153876587000127, 44.39357045500013 ], [ 16.15987105300016, 44.400701803000075 ], [ 16.159664347000103, 44.416101380000057 ], [ 16.152946411000158, 44.435066630000094 ], [ 16.128348429000198, 44.484314271000088 ], [ 16.123077433000162, 44.503899638000107 ], [ 16.116462850000147, 44.52146962500008 ], [ 16.104887329000121, 44.532373353000125 ], [ 16.083699991000145, 44.534905497000111 ], [ 16.047319783000177, 44.523329977000074 ], [ 16.026649210000159, 44.525190328000079 ], [ 16.006081990000069, 44.541003316000072 ], [ 16.013936809000199, 44.557023011000055 ], [ 16.030473266000115, 44.572215882000151 ], [ 16.0349174400001, 44.585393372000041 ], [ 16.043185669000138, 44.588442282000088 ], [ 16.044735962000175, 44.589372457000124 ], [ 16.041118612000105, 44.602808330000087 ], [ 16.036157674000151, 44.615314026000064 ], [ 16.028302856000124, 44.624719137000042 ], [ 16.016003865000158, 44.628956604000095 ], [ 15.991612589000141, 44.631437073000072 ], [ 15.979106893000136, 44.634382630000047 ], [ 15.968978312000104, 44.639240214000083 ], [ 15.95564579200007, 44.653192851000071 ], [ 15.948101034000132, 44.678100891000028 ], [ 15.937352336000089, 44.688952942000085 ], [ 15.929807577000133, 44.689469707000043 ], [ 15.921539347000191, 44.686110739000114 ], [ 15.913064412000097, 44.68450876900009 ], [ 15.905416301000116, 44.690141500000024 ], [ 15.902005656000199, 44.698823141000062 ], [ 15.899318481000165, 44.709210103000075 ], [ 15.895597778000138, 44.718563537000207 ], [ 15.888776489000094, 44.724247945000073 ], [ 15.876270792000099, 44.724816386000029 ], [ 15.869242798000187, 44.718563537000207 ], [ 15.863868449000137, 44.709985250000088 ], [ 15.85642704300011, 44.703577372000055 ], [ 15.847848755000172, 44.701510315000107 ], [ 15.829968709000127, 44.700528463000111 ], [ 15.82035689300011, 44.698254700000192 ], [ 15.805680786000124, 44.696652730000082 ], [ 15.796999146000161, 44.703267314000087 ], [ 15.790487915000199, 44.713395895000204 ], [ 15.782839803000115, 44.722594300000125 ], [ 15.759275350000109, 44.734169820000076 ], [ 15.753694295000088, 44.739285787000071 ], [ 15.728476196000145, 44.769103088000051 ], [ 15.717314087000204, 44.78646637000007 ], [ 15.716073852000164, 44.803209534000118 ], [ 15.730646607000125, 44.817007142000065 ], [ 15.751213827000129, 44.821554667000029 ], [ 15.76868046000007, 44.82734242800008 ], [ 15.773434692000166, 44.845015768000096 ], [ 15.764029581000102, 44.864032695000063 ], [ 15.748009888000155, 44.882016094000036 ], [ 15.73426395700011, 44.902118226000098 ], [ 15.730853312000193, 44.927232972000112 ], [ 15.734108149000093, 44.934440112000019 ], [ 15.738811482000159, 44.944854635000112 ], [ 15.763616170000176, 44.975550436000063 ], [ 15.767440226000133, 44.99322377600005 ], [ 15.75555464700011, 45.023557841000084 ], [ 15.755968059000111, 45.042213033000067 ], [ 15.77942915800017, 45.085362855000099 ], [ 15.783769979000169, 45.100917460000105 ], [ 15.780049276000142, 45.160293681000056 ], [ 15.780979451000121, 45.167993470000042 ], [ 15.792348267000193, 45.189800924000068 ], [ 15.802568519000175, 45.196473382000065 ], [ 15.824801066000106, 45.210988261000111 ], [ 15.878854614000204, 45.217241109000113 ], [ 15.974559367000097, 45.215380758000109 ], [ 15.997503703000149, 45.218533021000084 ], [ 16.008459106000117, 45.218171285000082 ], [ 16.020448039000172, 45.213933818000115 ], [ 16.029233032000064, 45.205045472000094 ], [ 16.028716268000125, 45.196260478000042 ], [ 16.024995565000125, 45.18892242500003 ], [ 16.024375447000153, 45.184323222000089 ], [ 16.033057088000191, 45.179724020000023 ], [ 16.054967896000164, 45.17641672800012 ], [ 16.067473592000141, 45.169595439000162 ], [ 16.082769816000109, 45.151612041000092 ], [ 16.10406050600011, 45.11254465800009 ], [ 16.121527140000126, 45.096163229000112 ], [ 16.212994426000193, 45.031464335000052 ], [ 16.241209757000149, 45.018958639000047 ], [ 16.279346965000116, 45.007176412000049 ], [ 16.316243937000138, 45.001233623000118 ], [ 16.34063521300007, 45.005936178000113 ], [ 16.346019392000159, 45.0200100120001 ], [ 16.346023380000133, 45.020020435000063 ], [ 16.356964966000106, 45.0486209110001 ], [ 16.377325480000138, 45.075596009000051 ], [ 16.381976359000106, 45.083709208000059 ], [ 16.384043416000168, 45.09543975900003 ], [ 16.381976359000106, 45.101950989000088 ], [ 16.381769654000152, 45.107583720000022 ], [ 16.389211060000065, 45.116833801000055 ], [ 16.398512817000096, 45.121433004000082 ], [ 16.424764445000136, 45.127272441000073 ], [ 16.435513143000151, 45.132853496000095 ], [ 16.449155721000153, 45.148098043000047 ], [ 16.481918579000165, 45.199516093000099 ], [ 16.528944133000124, 45.222253724000169 ], [ 16.587028443000122, 45.22085846 ], [ 16.786292765000155, 45.178845521000099 ], [ 16.81171757000007, 45.181222637000118 ], [ 16.82422326600016, 45.189077454000156 ], [ 16.825773560000187, 45.196363831000056 ], [ 16.825050089000086, 45.205045472000094 ], [ 16.830734497000122, 45.216982727000058 ], [ 16.840759725000169, 45.224010722000074 ], [ 16.851921834000109, 45.227421367000076 ], [ 16.861740357000144, 45.232227274000095 ], [ 16.867321411000177, 45.243389385000043 ], [ 16.875382935000175, 45.246955058000097 ], [ 16.885821574000204, 45.255223287000049 ], [ 16.893986450000114, 45.263543192 ], [ 16.896983683000144, 45.268142396000044 ], [ 16.924372193000181, 45.284523825000107 ], [ 16.932640421000116, 45.27878774100013 ], [ 16.940701945000114, 45.257755433000042 ], [ 16.942148885000108, 45.249848939000074 ], [ 16.941528768000126, 45.241218974000034 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0.000000, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0.000000, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0.000000, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "brk_group": null, "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Croatia", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 4.000000, "mapcolor9": 5.000000, "mapcolor13": 1.000000, "pop_est": 4489409.000000, "gdp_md_est": 82390.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99.000000, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7.000000, "long_len": 7.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 16.933929884000065, 42.770941473000065 ], [ 16.936371290000096, 42.755519924000126 ], [ 16.924652540000096, 42.741400458000115 ], [ 16.905446811000047, 42.731756903000118 ], [ 16.884938998000081, 42.72939687700007 ], [ 16.882172071000127, 42.73639557500006 ], [ 16.87403405000012, 42.73761627800009 ], [ 16.858164910000085, 42.742987372000144 ], [ 16.847666863000114, 42.733587958000115 ], [ 16.834320509000094, 42.730943101000022 ], [ 16.820811394000117, 42.736070054000052 ], [ 16.809825066000087, 42.749823309000149 ], [ 16.822276238000086, 42.75511302300005 ], [ 16.824066602000073, 42.764064846000068 ], [ 16.818858269000089, 42.769354559000121 ], [ 16.809825066000087, 42.763495184000092 ], [ 16.802989129000139, 42.763495184000092 ], [ 16.810231967000078, 42.775336005000057 ], [ 16.828135613000143, 42.780951239000061 ], [ 16.858164910000085, 42.784002997000144 ], [ 16.921071811000047, 42.777167059000121 ], [ 16.933929884000065, 42.770941473000065 ] ] ], [ [ [ 17.382009311000047, 42.797837632000054 ], [ 17.371592644000145, 42.790838934000149 ], [ 17.382660352000102, 42.791652736000074 ], [ 17.393321160000141, 42.7911644550001 ], [ 17.403493686000076, 42.788763739000061 ], [ 17.412445509000122, 42.784002997000144 ], [ 17.419932488000086, 42.790838934000149 ], [ 17.43685957100007, 42.782619533000073 ], [ 17.486013217000078, 42.782171942000062 ], [ 17.523692254000082, 42.764837958000086 ], [ 17.57447350400011, 42.757513739000089 ], [ 17.597504102000073, 42.749823309000149 ], [ 17.594411655000101, 42.747748114000032 ], [ 17.593516472000118, 42.747219143000066 ], [ 17.590668165000068, 42.742987372000144 ], [ 17.648203972000147, 42.738511460000083 ], [ 17.658946160000056, 42.742987372000144 ], [ 17.67937259200005, 42.729885158000073 ], [ 17.730479363000114, 42.713446356000063 ], [ 17.748871290000068, 42.69456614800005 ], [ 17.385915561000047, 42.770941473000065 ], [ 17.373789910000141, 42.759995835000112 ], [ 17.353770379000082, 42.76666901200015 ], [ 17.334483269000145, 42.780340887000094 ], [ 17.32374108200014, 42.790838934000149 ], [ 17.341563347000118, 42.793402411000059 ], [ 17.373789910000141, 42.802639065000122 ], [ 17.392344597000147, 42.801703192000062 ], [ 17.387380405000101, 42.800238348000093 ], [ 17.382009311000047, 42.797837632000054 ] ] ], [ [ [ 16.76856530000012, 42.972235419000086 ], [ 16.824066602000073, 42.96210358300003 ], [ 16.878672722000147, 42.96210358300003 ], [ 16.892588738000114, 42.965318101000079 ], [ 16.915537957000112, 42.974514065000065 ], [ 17.032074415000125, 42.982611395000092 ], [ 17.111094597000147, 42.964300848000121 ], [ 17.131846550000148, 42.969549872000115 ], [ 17.148692254000139, 42.952582098000121 ], [ 17.164317254000139, 42.941473700000088 ], [ 17.20020592500012, 42.921779690000065 ], [ 17.193369988000114, 42.914292710000083 ], [ 17.174327019000117, 42.9220238300001 ], [ 17.153086785000141, 42.921128648000106 ], [ 17.107432488000086, 42.914292710000083 ], [ 17.015310092000107, 42.92861562700007 ], [ 16.972911004000139, 42.926703192000119 ], [ 16.89869225400011, 42.905829169000143 ], [ 16.85141035200013, 42.900702216000141 ], [ 16.739756707000083, 42.917181708000115 ], [ 16.691416863000086, 42.928208726000079 ], [ 16.672862175000148, 42.92674388200011 ], [ 16.672618035000113, 42.921779690000065 ], [ 16.655446811000104, 42.926255601000022 ], [ 16.638438347000118, 42.934759833000058 ], [ 16.706797722000118, 42.96210358300003 ], [ 16.706797722000118, 42.969549872000115 ], [ 16.68775475400011, 42.97394440300009 ], [ 16.648285352000073, 42.977769273000106 ], [ 16.631683790000096, 42.982611395000092 ], [ 16.652679884000122, 42.99237702000012 ], [ 16.67481530000012, 42.992905992000104 ], [ 16.697520379000053, 42.990179755000028 ], [ 16.720469597000147, 42.990057684000149 ], [ 16.741384311000104, 42.980617580000043 ], [ 16.76856530000012, 42.972235419000086 ] ] ], [ [ [ 17.055674675000091, 43.028957424000069 ], [ 17.07325280000012, 43.024155992000075 ], [ 17.158702019000117, 43.030991929000081 ], [ 17.240244988000143, 43.02277252800009 ], [ 17.390472852000102, 42.977728583000115 ], [ 17.425791863000114, 42.960882880000113 ], [ 17.454112175000148, 42.942287502000099 ], [ 17.455739780000101, 42.938421942000119 ], [ 17.455902540000068, 42.93292877800009 ], [ 17.456797722000147, 42.92698802300005 ], [ 17.460215691000144, 42.921779690000065 ], [ 17.464854363000086, 42.920721747000115 ], [ 17.476573113000086, 42.922430731000119 ], [ 17.481455925000148, 42.921779690000065 ], [ 17.499278191000116, 42.911851304000052 ], [ 17.507660352000073, 42.909084377000099 ], [ 17.51889082100007, 42.908148505000113 ], [ 17.522634311000104, 42.910223700000117 ], [ 17.522146030000044, 42.919623114000061 ], [ 17.526133660000113, 42.921779690000065 ], [ 17.532074415000125, 42.920599677000027 ], [ 17.541514519000145, 42.915472723000121 ], [ 17.546560092000078, 42.914292710000083 ], [ 17.558929884000122, 42.912827867000047 ], [ 17.56812584700009, 42.909084377000099 ], [ 17.583750847000147, 42.900702216000141 ], [ 17.622894727000102, 42.891302802000112 ], [ 17.641612175000091, 42.884466864000089 ], [ 17.652679884000122, 42.873358466000056 ], [ 17.658946160000056, 42.873358466000056 ], [ 17.673675977000073, 42.87506745000006 ], [ 17.715993686000076, 42.844183661000116 ], [ 17.741465691000059, 42.839260158000073 ], [ 17.710948113000114, 42.85663483300003 ], [ 17.701914910000113, 42.86847565300009 ], [ 17.713633660000113, 42.880804755000057 ], [ 17.707367384000065, 42.887030341000113 ], [ 17.678721550000091, 42.879380601000079 ], [ 17.653349062064194, 42.890928336140732 ], [ 17.665928996000162, 42.905160014000032 ], [ 17.67946822100015, 42.915676168000076 ], [ 17.701585734000162, 42.919500225000021 ], [ 17.723599894000131, 42.916244609000117 ], [ 17.765457804000107, 42.904126486000123 ], [ 17.786748495000097, 42.901387635000091 ], [ 17.794706665000149, 42.904591573000076 ], [ 17.802664836000105, 42.909630026000045 ], [ 17.811759887000079, 42.909862570000101 ], [ 17.823335408000133, 42.898364563000072 ], [ 17.826229288000121, 42.888649394000126 ], [ 17.825092408000103, 42.864542339000067 ], [ 17.827159464000175, 42.853121847000082 ], [ 17.85847538200008, 42.816974182000067 ], [ 17.869430786000152, 42.811806539000131 ], [ 17.904467407000169, 42.804546 ], [ 17.928858684000204, 42.790800069000042 ], [ 17.971853475000103, 42.754962464000116 ], [ 17.995314575000151, 42.740441387000075 ], [ 18.049368124000154, 42.714758200000077 ], [ 18.224137817000127, 42.628070985000207 ], [ 18.257107381000196, 42.614893494000043 ], [ 18.311574341000096, 42.601225078000212 ], [ 18.338652791000158, 42.60251698900008 ], [ 18.349608195000116, 42.596289979000105 ], [ 18.369782537000106, 42.574392828000029 ], [ 18.369790593000147, 42.574384084000101 ], [ 18.370485474000191, 42.57362986300005 ], [ 18.385264933000201, 42.56652435300002 ], [ 18.42102502500012, 42.563630473000032 ], [ 18.437354777000166, 42.55921213800012 ], [ 18.442005656000134, 42.543011577000115 ], [ 18.436424602000102, 42.510765483000071 ], [ 18.437148071000109, 42.493402202000127 ], [ 18.444279419000139, 42.477925110000044 ], [ 18.45492476400014, 42.464721782000126 ], [ 18.467740519000131, 42.453378805000071 ], [ 18.475491984000115, 42.449813131000084 ], [ 18.492855265000145, 42.442371724000068 ], [ 18.497816202000195, 42.431157939000045 ], [ 18.49642988400015, 42.416327216000141 ], [ 18.47445722700013, 42.441351630000057 ], [ 18.460948113000143, 42.447943427000112 ], [ 18.427582227000073, 42.45526764500012 ], [ 18.41309655000012, 42.46185944200009 ], [ 18.411875847000118, 42.476019598000121 ], [ 18.238942905000044, 42.559068101000108 ], [ 18.220550977000102, 42.57916901200015 ], [ 18.220876498000109, 42.588324286000031 ], [ 18.223155144000089, 42.602118231000119 ], [ 18.223480665000125, 42.614691473000121 ], [ 18.217539910000085, 42.620103257000082 ], [ 18.166026238000114, 42.626939195000105 ], [ 18.12484785200013, 42.644598700000117 ], [ 18.108653191000087, 42.647406317000062 ], [ 18.09164472700013, 42.648260809000149 ], [ 18.07601972700013, 42.651312567000062 ], [ 18.06397545700014, 42.657619533000101 ], [ 18.057383660000141, 42.667914130000113 ], [ 18.077321811000047, 42.667914130000113 ], [ 18.055918816000087, 42.683010158000101 ], [ 18.047862175000148, 42.690619208000058 ], [ 18.043223504000139, 42.702053127000099 ], [ 18.028330925000091, 42.691310940000093 ], [ 18.00326582100007, 42.700669664000131 ], [ 17.96119225400011, 42.72939687700007 ], [ 17.901621941000116, 42.751898505000085 ], [ 17.88070722700013, 42.768744208000086 ], [ 17.892832879000139, 42.790838934000149 ], [ 17.865082227000073, 42.78994375200007 ], [ 17.83497155000012, 42.807196356000091 ], [ 17.806651238000086, 42.811916408000073 ], [ 17.800059441000116, 42.810980536000088 ], [ 17.792328321000099, 42.808539130000057 ], [ 17.785655144000145, 42.805161851000051 ], [ 17.780121290000125, 42.796942450000145 ], [ 17.773773634000094, 42.798570054000081 ], [ 17.767751498000081, 42.802313544000114 ], [ 17.765391472000118, 42.804429429000109 ], [ 17.758799675000148, 42.807603257000082 ], [ 17.735118035000141, 42.821966864000061 ], [ 17.72095787900011, 42.82623932500006 ], [ 17.739593946000099, 42.813055731000119 ], [ 17.748708530000101, 42.803412177000055 ], [ 17.761892123000052, 42.778713283000073 ], [ 17.761892123000052, 42.774318752000099 ], [ 17.755137566000116, 42.770941473000065 ], [ 17.748708530000101, 42.772040106000119 ], [ 17.748708530000101, 42.778143622000087 ], [ 17.750254754000139, 42.785711981000148 ], [ 17.748871290000068, 42.790838934000149 ], [ 17.72877037900011, 42.800767320000077 ], [ 17.678558790000125, 42.816229559000092 ], [ 17.633474155000073, 42.822943427000027 ], [ 17.580088738000114, 42.841253973000093 ], [ 17.525238477000102, 42.848618882000082 ], [ 17.44044030000012, 42.873358466000056 ], [ 17.442718946000099, 42.89862702000012 ], [ 17.417246941000087, 42.911200262000094 ], [ 17.350922071000042, 42.921779690000065 ], [ 17.271332227000073, 42.963364976000051 ], [ 17.237478061000104, 42.971380927000084 ], [ 17.221527540000096, 42.979803778000118 ], [ 17.213877800000148, 42.982611395000092 ], [ 17.201914910000141, 42.984320380000085 ], [ 17.095388217000078, 42.984442450000145 ], [ 17.062510613000086, 42.990057684000149 ], [ 17.046153191000087, 42.99506256700009 ], [ 17.027517123000081, 43.003566799000126 ], [ 17.017914259000122, 43.013820705000072 ], [ 17.028168165000125, 43.024155992000075 ], [ 17.028168165000125, 43.030991929000081 ], [ 17.018809441000116, 43.03408437700007 ], [ 17.012950066000144, 43.039211330000072 ], [ 17.008067254000082, 43.045314846000068 ], [ 17.001638217000078, 43.051499742000047 ], [ 17.023122592000107, 43.048651434000092 ], [ 17.055674675000091, 43.028957424000069 ] ] ], [ [ [ 16.194672071000127, 43.074408270000035 ], [ 16.19288170700014, 43.071966864000089 ], [ 16.21583092500012, 43.079169012000122 ], [ 16.228200717000078, 43.078680731000148 ], [ 16.241221550000148, 43.071966864000089 ], [ 16.24545332100007, 43.076361395000092 ], [ 16.249847852000073, 43.07941315300009 ], [ 16.25342858200014, 43.077866929000052 ], [ 16.254893425000091, 43.068548895000092 ], [ 16.252126498000052, 43.062404690000122 ], [ 16.24545332100007, 43.057766018000095 ], [ 16.233734571000099, 43.051499742000047 ], [ 16.221934441000116, 43.04026927300005 ], [ 16.210297071000127, 43.033270575000145 ], [ 16.12134850400011, 43.013373114000061 ], [ 16.087168816000116, 43.011460679000109 ], [ 16.063161655000073, 43.017401434000121 ], [ 16.084483269000117, 43.025946356000148 ], [ 16.087087436000047, 43.041408596000068 ], [ 16.079112175000091, 43.053290106000119 ], [ 16.06934655000012, 43.051499742000047 ], [ 16.063161655000073, 43.051499742000047 ], [ 16.048838738000086, 43.065171617000075 ], [ 16.05298912900011, 43.068304755000057 ], [ 16.057302280000044, 43.070217190000093 ], [ 16.06226647200009, 43.071275132000054 ], [ 16.06934655000012, 43.071966864000089 ], [ 16.092539910000085, 43.082749742000104 ], [ 16.130218946000042, 43.088446356000091 ], [ 16.17017662900011, 43.087713934000149 ], [ 16.199717644000145, 43.07941315300009 ], [ 16.194672071000127, 43.074408270000035 ] ] ], [ [ [ 16.562754754000139, 43.228989976000079 ], [ 16.583262566000116, 43.215969143000066 ], [ 16.587087436000104, 43.216253973000121 ], [ 16.596934441000144, 43.221747137000122 ], [ 16.603770379000139, 43.223456122000144 ], [ 16.616384311000047, 43.223537502000127 ], [ 16.646006707000083, 43.219916083000058 ], [ 16.65951582100007, 43.215969143000066 ], [ 16.666270379000082, 43.210842190000065 ], [ 16.672536655000044, 43.203029690000065 ], [ 16.680674675000148, 43.194769598000093 ], [ 16.69312584700009, 43.188666083000086 ], [ 16.693614129000082, 43.184027411000059 ], [ 16.692230665000096, 43.182806708000058 ], [ 16.689463738000114, 43.182806708000058 ], [ 16.686289910000141, 43.181830145000092 ], [ 16.705821160000141, 43.170803127000127 ], [ 16.727712436000076, 43.164618231000148 ], [ 16.751231316000116, 43.161932684000092 ], [ 16.848155144000089, 43.162339585000083 ], [ 16.864431186000047, 43.16885000200007 ], [ 16.878428582000083, 43.158840236000103 ], [ 16.896739129000139, 43.154771226000051 ], [ 16.958750847000118, 43.152411200000088 ], [ 17.018565300000148, 43.140855210000055 ], [ 17.109873894000117, 43.143784898000078 ], [ 17.15528405000012, 43.140326239000089 ], [ 17.193369988000114, 43.127264716000113 ], [ 16.943247917500145, 43.127264716000113 ], [ 16.69312584700009, 43.127264716000113 ], [ 16.670176629000082, 43.125474351000022 ], [ 16.559825066000116, 43.142971096000068 ], [ 16.475352410000085, 43.166489976000022 ], [ 16.445160352000073, 43.170803127000127 ], [ 16.427256707000112, 43.17987702000012 ], [ 16.416026238000114, 43.181830145000092 ], [ 16.371592644000089, 43.19550202000012 ], [ 16.375824415000096, 43.199937242000075 ], [ 16.38038170700014, 43.201971747000115 ], [ 16.391449415000096, 43.20233795800003 ], [ 16.403981967000107, 43.197170315000122 ], [ 16.415293816000087, 43.198472398000021 ], [ 16.439789259000094, 43.209784247000115 ], [ 16.446055535000141, 43.20233795800003 ], [ 16.449066602000073, 43.206488348000065 ], [ 16.46029707100007, 43.215969143000066 ], [ 16.46029707100007, 43.209784247000115 ], [ 16.496429884000094, 43.21808502800009 ], [ 16.527028842000107, 43.204291083000086 ], [ 16.554942254000139, 43.187933661000059 ], [ 16.583262566000116, 43.188666083000086 ], [ 16.555918816000116, 43.209784247000115 ], [ 16.529307488000086, 43.221625067000062 ], [ 16.52051842500012, 43.228989976000079 ], [ 16.535004102000073, 43.227728583000058 ], [ 16.562754754000139, 43.228989976000079 ] ] ], [ [ [ 16.806813998000081, 43.342474677000112 ], [ 16.816254102000073, 43.340236721000124 ], [ 16.824229363000143, 43.341009833000058 ], [ 16.83033287900011, 43.346380927000084 ], [ 16.83936608200014, 43.340887762000065 ], [ 16.858164910000085, 43.32518138200011 ], [ 16.868988477000073, 43.322577216000113 ], [ 16.877696160000056, 43.323431708000115 ], [ 16.885101759000065, 43.321966864000061 ], [ 16.89234459700009, 43.312201239000117 ], [ 16.879567905000044, 43.293931382000054 ], [ 16.872325066000116, 43.287990627000099 ], [ 16.864431186000047, 43.291693427000055 ], [ 16.846202019000145, 43.273382880000085 ], [ 16.813161655000101, 43.267767645000092 ], [ 16.628265821000099, 43.263739325000117 ], [ 16.563975457000083, 43.270086981000148 ], [ 16.500743035000113, 43.284247137000065 ], [ 16.421885613000143, 43.317572333000058 ], [ 16.405772332000083, 43.332709052000055 ], [ 16.413828972000118, 43.328843492000047 ], [ 16.419444207000112, 43.32518138200011 ], [ 16.426280144000117, 43.32518138200011 ], [ 16.42676842500012, 43.331488348000036 ], [ 16.429698113000143, 43.332464911000116 ], [ 16.434336785000085, 43.331732489000089 ], [ 16.439789259000094, 43.332709052000055 ], [ 16.434255405000101, 43.339911200000088 ], [ 16.434906446000127, 43.346421617000075 ], [ 16.441661004000082, 43.351223049000069 ], [ 16.453461134000037, 43.353176174000126 ], [ 16.43970787900011, 43.370917059000121 ], [ 16.426280144000117, 43.394110419000143 ], [ 16.447032097000118, 43.394842841000084 ], [ 16.453461134000037, 43.394110419000143 ], [ 16.49390709700009, 43.382310289000074 ], [ 16.687673373000052, 43.377020575000117 ], [ 16.809825066000087, 43.353176174000126 ], [ 16.809825066000087, 43.346380927000084 ], [ 16.796153191000144, 43.346380927000084 ], [ 16.806813998000081, 43.342474677000112 ] ] ], [ [ [ 16.29818769600007, 43.403631903000147 ], [ 16.302744988000114, 43.387274481000119 ], [ 16.329844597000147, 43.389715887000065 ], [ 16.348643425000091, 43.378322658000101 ], [ 16.366709832000112, 43.361151434000092 ], [ 16.391449415000096, 43.346380927000084 ], [ 16.375987175000063, 43.333441473000093 ], [ 16.348643425000091, 43.338690497000087 ], [ 16.281748894000089, 43.369370835000083 ], [ 16.23226972700013, 43.384466864000089 ], [ 16.207041863000086, 43.387274481000119 ], [ 16.206390821000127, 43.391791083000086 ], [ 16.207774285000113, 43.393133856000091 ], [ 16.210297071000127, 43.393215236000074 ], [ 16.213226759000122, 43.394110419000143 ], [ 16.20337975400011, 43.399969794000086 ], [ 16.200450066000087, 43.407049872000144 ], [ 16.205577019000117, 43.412909247000087 ], [ 16.22006269600007, 43.415228583000058 ], [ 16.277028842000078, 43.411932684000121 ], [ 16.29818769600007, 43.403631903000147 ] ] ], [ [ [ 16.334157748000052, 43.501532294000086 ], [ 16.375254754000139, 43.490179755000113 ], [ 16.370778842000078, 43.484320380000085 ], [ 16.333343946000127, 43.481390692000062 ], [ 16.281993035000113, 43.487941799000126 ], [ 16.267344597000118, 43.486883856000091 ], [ 16.258799675000091, 43.483547268000066 ], [ 16.246429884000065, 43.481431382000054 ], [ 16.230642123000109, 43.483221747000115 ], [ 16.218272332000083, 43.486314195000105 ], [ 16.211436394000145, 43.490057684000149 ], [ 16.211761915000068, 43.495550848000065 ], [ 16.218923373000109, 43.497748114000061 ], [ 16.223317905000101, 43.497381903000147 ], [ 16.22999108200014, 43.496161200000117 ], [ 16.243500196000127, 43.494940497000115 ], [ 16.25220787900011, 43.499945380000057 ], [ 16.248057488000086, 43.508286851000022 ], [ 16.264414910000085, 43.512884833000058 ], [ 16.310313347000061, 43.507757880000057 ], [ 16.334157748000052, 43.501532294000086 ] ] ], [ [ [ 15.678884311000104, 43.648016669000086 ], [ 15.740407748000052, 43.627508856000119 ], [ 15.68132571700005, 43.640326239000061 ], [ 15.672048373000081, 43.637437242000047 ], [ 15.663096550000148, 43.64569733300003 ], [ 15.619639519000117, 43.668931382000054 ], [ 15.603770379000082, 43.674709377000099 ], [ 15.611338738000114, 43.682114976000108 ], [ 15.615489129000082, 43.676988023000078 ], [ 15.619639519000117, 43.675441799000041 ], [ 15.650157097000147, 43.673041083000086 ], [ 15.661631707000083, 43.665472723000065 ], [ 15.669688347000118, 43.655747789000102 ], [ 15.678884311000104, 43.648016669000086 ] ] ], [ [ [ 15.367360873000081, 43.790106512000094 ], [ 15.395681186000047, 43.77240631700009 ], [ 15.386973504000139, 43.776841539000074 ], [ 15.327972852000102, 43.796332098000065 ], [ 15.308929884000122, 43.805609442000119 ], [ 15.28842207100007, 43.825506903000118 ], [ 15.26124108200014, 43.839789130000113 ], [ 15.24789472700013, 43.849025783000073 ], [ 15.233409050000091, 43.862209377000127 ], [ 15.227793816000087, 43.874457098000093 ], [ 15.240733269000089, 43.880764065000122 ], [ 15.26124108200014, 43.867092190000093 ], [ 15.266368035000056, 43.857001044000114 ], [ 15.342458530000073, 43.81183502800009 ], [ 15.354340040000096, 43.800360419000143 ], [ 15.367360873000081, 43.790106512000094 ] ] ], [ [ [ 15.44271894600007, 43.899074611000103 ], [ 15.446055535000085, 43.887518622000059 ], [ 15.438731316000087, 43.890692450000117 ], [ 15.431407097000061, 43.892767645000063 ], [ 15.423675977000073, 43.893988348000065 ], [ 15.415049675000148, 43.894435940000065 ], [ 15.407074415000096, 43.896144924000069 ], [ 15.403575066000116, 43.900213934000121 ], [ 15.401540561000076, 43.904771226000079 ], [ 15.397715691000059, 43.908107815000093 ], [ 15.372080925000091, 43.913885809000149 ], [ 15.358653191000116, 43.919378973000093 ], [ 15.349945509000122, 43.929144598000121 ], [ 15.354340040000096, 43.931463934000092 ], [ 15.356781446000127, 43.935370184000092 ], [ 15.343516472000118, 43.939642645000092 ], [ 15.325450066000087, 43.948431708000058 ], [ 15.309580925000148, 43.958441473000065 ], [ 15.302744988000143, 43.966376044000114 ], [ 15.297129754000139, 43.978094794000114 ], [ 15.270192905000073, 44.000311591000056 ], [ 15.26124108200014, 44.01105377800009 ], [ 15.280284050000148, 44.010809637000122 ], [ 15.296397332000112, 44.005601304000052 ], [ 15.349945509000122, 43.976304429000109 ], [ 15.378591342000107, 43.971665757000082 ], [ 15.384043816000116, 43.970160223000036 ], [ 15.38656660200013, 43.964422919000057 ], [ 15.389414910000085, 43.947658596000039 ], [ 15.391612175000091, 43.942206122000115 ], [ 15.397634311000076, 43.937201239000061 ], [ 15.411143425000148, 43.932928778000147 ], [ 15.418793165000096, 43.929144598000121 ], [ 15.426768425000148, 43.922064520000063 ], [ 15.43539472700013, 43.911281643000066 ], [ 15.44271894600007, 43.899074611000103 ] ] ], [ [ [ 15.225759311000076, 44.066229559000092 ], [ 15.24708092500012, 44.046698309000121 ], [ 15.254405144000117, 44.017889716000084 ], [ 15.24187259200005, 44.027777411000116 ], [ 15.232269727000073, 44.041449286000059 ], [ 15.223317905000044, 44.050279039000102 ], [ 15.212738477000073, 44.045233466000056 ], [ 15.206553582000112, 44.045233466000056 ], [ 15.205332879000082, 44.049750067000119 ], [ 15.203379754000139, 44.052476304000081 ], [ 15.201426629000082, 44.054999091000113 ], [ 15.19906660200013, 44.058823960000112 ], [ 15.18913821700005, 44.047796942000062 ], [ 15.169688347000147, 44.058661200000145 ], [ 15.148773634000094, 44.076361395000063 ], [ 15.121836785000113, 44.092230536000088 ], [ 15.087087436000047, 44.123724677000112 ], [ 15.068695509000122, 44.13397858300003 ], [ 15.070811394000117, 44.13764069200009 ], [ 15.071136915000039, 44.138495184000092 ], [ 15.072032097000147, 44.1388207050001 ], [ 15.075531446000127, 44.140814520000063 ], [ 15.071462436000076, 44.146389065000065 ], [ 15.062510613000143, 44.161932684000149 ], [ 15.225759311000076, 44.066229559000092 ] ] ], [ [ [ 14.835459832000083, 44.151027736000074 ], [ 14.842784050000091, 44.148260809000121 ], [ 14.850433790000125, 44.152248440000093 ], [ 14.85726972700013, 44.152044989000061 ], [ 14.863780144000117, 44.148138739000061 ], [ 14.869151238000086, 44.140529690000122 ], [ 14.856130405000101, 44.136867580000072 ], [ 14.835215691000144, 44.14166901200015 ], [ 14.819834832000112, 44.153021552000112 ], [ 14.822438998000109, 44.168687242000104 ], [ 14.827403191000144, 44.157904364000089 ], [ 14.835459832000083, 44.151027736000074 ] ] ], [ [ [ 14.985118035000141, 44.090969143000095 ], [ 14.99382571700005, 44.087836005000113 ], [ 15.007334832000112, 44.093003648000106 ], [ 15.002777540000068, 44.083156643000095 ], [ 15.000498894000089, 44.079413153000147 ], [ 15.014414910000085, 44.077948309000092 ], [ 15.022715691000144, 44.072211005000113 ], [ 15.026703321000127, 44.062323309000121 ], [ 15.027842644000145, 44.048651434000064 ], [ 15.031911655000044, 44.036363023000021 ], [ 15.041351759000122, 44.026434637000122 ], [ 15.088226759000094, 43.98965078300013 ], [ 15.099131707000083, 43.985093492000075 ], [ 15.113780144000089, 43.983791408000073 ], [ 15.116953972000147, 43.978827216000141 ], [ 15.144541863000143, 43.949652411000088 ], [ 15.216807488000143, 43.912787177000112 ], [ 15.22022545700014, 43.901190497000087 ], [ 15.195485873000081, 43.895209052000084 ], [ 15.14551842500012, 43.923895575000145 ], [ 15.133311394000145, 43.921210028000061 ], [ 15.137705925000148, 43.917873440000037 ], [ 15.14031009200005, 43.913031317000062 ], [ 15.144541863000143, 43.908107815000093 ], [ 15.169688347000147, 43.894964911000059 ], [ 15.17554772200009, 43.890936591000084 ], [ 15.183441602000073, 43.886948960000083 ], [ 15.191091342000078, 43.887518622000059 ], [ 15.196787957000083, 43.886379299000126 ], [ 15.19906660200013, 43.877630927000055 ], [ 15.194509311000104, 43.872626044000114 ], [ 15.184580925000091, 43.877101955000072 ], [ 15.17514082100007, 43.884263414000102 ], [ 15.172373894000117, 43.887518622000059 ], [ 15.136485222000118, 43.903021552000084 ], [ 15.12134850400011, 43.912583726000079 ], [ 15.106618686000047, 43.925441799000097 ], [ 15.066905144000117, 43.969549872000087 ], [ 15.042816602000102, 43.990423895000063 ], [ 15.003103061000104, 44.052313544000114 ], [ 14.983083530000044, 44.066310940000093 ], [ 14.955088738000114, 44.07558828300013 ], [ 14.870127800000148, 44.140814520000063 ], [ 14.867849155000101, 44.152044989000061 ], [ 14.862966342000107, 44.16103750200007 ], [ 14.849619988000114, 44.175604559000092 ], [ 14.855235222000118, 44.176499742000075 ], [ 14.859629754000082, 44.176011460000112 ], [ 14.863291863000143, 44.175604559000092 ], [ 14.882823113000114, 44.15916575700011 ], [ 14.939138217000107, 44.12714264500012 ], [ 14.944183790000125, 44.120266018000095 ], [ 14.948741082000083, 44.111151434000121 ], [ 14.95443769600007, 44.103216864000061 ], [ 14.962657097000147, 44.099839585000026 ], [ 14.97632897200009, 44.096665757000054 ], [ 14.985118035000141, 44.090969143000095 ] ] ], [ [ [ 14.765961134000065, 44.265041408000101 ], [ 14.759938998000081, 44.259833075000088 ], [ 14.748545769000089, 44.261664130000085 ], [ 14.738129102000102, 44.272121486000074 ], [ 14.73959394600007, 44.280178127000099 ], [ 14.74968509200005, 44.28021881700009 ], [ 14.753184441000116, 44.283514716000113 ], [ 14.753184441000116, 44.291001695000077 ], [ 14.759776238000114, 44.29205963700015 ], [ 14.773448113000143, 44.285142320000048 ], [ 14.791677280000016, 44.27252838700015 ], [ 14.789724155000073, 44.266913153000061 ], [ 14.775401238000086, 44.266587632000054 ], [ 14.765961134000065, 44.265041408000101 ] ] ], [ [ [ 14.661387566000087, 44.308661200000088 ], [ 14.657399936000104, 44.305243231000091 ], [ 14.640798373000052, 44.311835028000061 ], [ 14.598887566000144, 44.339056708000058 ], [ 14.595062696000127, 44.347113348000093 ], [ 14.613454623000081, 44.340806382000054 ], [ 14.643565300000091, 44.325751044000143 ], [ 14.661387566000087, 44.308661200000088 ] ] ], [ [ [ 14.811208530000101, 44.350043036000116 ], [ 14.801036004000139, 44.343085028000118 ], [ 14.785166863000114, 44.346869208000058 ], [ 14.774180535000085, 44.352484442000062 ], [ 14.756195509000122, 44.363999742000104 ], [ 14.757823113000143, 44.372259833000086 ], [ 14.768239780000044, 44.384222723000121 ], [ 14.763438347000147, 44.415350653000118 ], [ 14.767100457000112, 44.416652736000103 ], [ 14.771657748000052, 44.417873440000122 ], [ 14.78288821700005, 44.418931382000082 ], [ 14.794769727000102, 44.414496161000116 ], [ 14.803233269000145, 44.405503648000078 ], [ 14.805023634000122, 44.39573802300005 ], [ 14.799652540000068, 44.387640692000119 ], [ 14.796722852000045, 44.381293036000088 ], [ 14.797862175000091, 44.377671617000047 ], [ 14.805674675000091, 44.367824611000103 ], [ 14.811208530000101, 44.350043036000116 ] ] ], [ [ [ 14.271169467000078, 44.612534898000078 ], [ 14.264008009000122, 44.611558335000112 ], [ 14.252207879000082, 44.616848049000069 ], [ 14.23975670700014, 44.619859117000075 ], [ 14.232595248000109, 44.62604401200015 ], [ 14.233571811000076, 44.634833075000117 ], [ 14.235606316000116, 44.642238674000097 ], [ 14.244151238000114, 44.661444403000147 ], [ 14.265798373000109, 44.679510809000092 ], [ 14.280446811000047, 44.677557684000121 ], [ 14.280039910000113, 44.667792059000092 ], [ 14.274180535000085, 44.661688544000114 ], [ 14.260915561000047, 44.659491278000118 ], [ 14.259450717000078, 44.658189195000105 ], [ 14.257334832000083, 44.656724351000051 ], [ 14.256846550000091, 44.653062242000104 ], [ 14.258474155000101, 44.647853908000101 ], [ 14.256358269000117, 44.642401434000064 ], [ 14.256683790000125, 44.637030341000113 ], [ 14.259043816000087, 44.63410065300009 ], [ 14.265798373000109, 44.625392971000096 ], [ 14.271169467000078, 44.612534898000078 ] ] ], [ [ [ 14.845225457000112, 44.600531317000062 ], [ 14.883799675000091, 44.579657294000086 ], [ 14.880137566000144, 44.609198309000149 ], [ 14.904063347000118, 44.610012111000074 ], [ 14.938243035000113, 44.594142971000124 ], [ 14.966319207000112, 44.57343170800003 ], [ 14.989105665000125, 44.546616929000052 ], [ 15.003916863000114, 44.536078192000062 ], [ 15.041188998000081, 44.527492580000072 ], [ 15.05176842500012, 44.516180731000091 ], [ 15.061696811000047, 44.500718492000047 ], [ 15.075531446000127, 44.484076239000117 ], [ 15.055918816000059, 44.486232815000093 ], [ 15.028168165000096, 44.503159898000078 ], [ 15.007334832000112, 44.504543361000074 ], [ 15.011729363000086, 44.514878648000078 ], [ 15.014170769000117, 44.518744208000086 ], [ 14.972911004000082, 44.536118882000054 ], [ 14.952891472000118, 44.541489976000022 ], [ 14.942067905000101, 44.547430731000148 ], [ 14.928558790000125, 44.552313544000114 ], [ 14.911143425000063, 44.552313544000114 ], [ 14.911143425000063, 44.545477606000091 ], [ 14.965993686000076, 44.523871161000088 ], [ 15.048024936000104, 44.439439195000048 ], [ 15.09669030000012, 44.415187893000066 ], [ 15.080821160000113, 44.424546617000075 ], [ 15.064952019000089, 44.437933661000088 ], [ 15.05103600400011, 44.455267645000063 ], [ 15.041514519000089, 44.476629950000117 ], [ 15.083262566000144, 44.461859442000062 ], [ 15.176605665000125, 44.391302802000084 ], [ 15.19906660200013, 44.381048895000063 ], [ 15.213226759000065, 44.369208075000088 ], [ 15.241384311000047, 44.351060289000102 ], [ 15.254405144000117, 44.340033270000035 ], [ 15.235118035000085, 44.336249091000113 ], [ 15.211761915000096, 44.346136786000031 ], [ 15.187347852000045, 44.359808661000059 ], [ 15.16504967500012, 44.36737702000012 ], [ 15.16504967500012, 44.360541083000086 ], [ 15.182871941000087, 44.357855536000116 ], [ 15.200450066000116, 44.349514065000065 ], [ 15.215830925000148, 44.338120835000083 ], [ 15.227061394000145, 44.326361395000092 ], [ 15.206553582000112, 44.326361395000092 ], [ 15.208262566000116, 44.320746161000116 ], [ 15.210948113000086, 44.31732819200009 ], [ 15.215017123000052, 44.314927476000051 ], [ 15.22022545700014, 44.312730210000055 ], [ 15.198903842000078, 44.317043361000074 ], [ 15.154551629000139, 44.331000067000033 ], [ 15.130869988000114, 44.332586981000063 ], [ 15.130869988000114, 44.326361395000092 ], [ 15.172373894000117, 44.305324611000074 ], [ 15.172373894000117, 44.299139716000113 ], [ 15.149261915000068, 44.303168036000088 ], [ 15.128754102000102, 44.311997789000131 ], [ 15.111175977000073, 44.324611721000096 ], [ 15.09669030000012, 44.340033270000035 ], [ 15.09669030000012, 44.346258856000091 ], [ 15.110362175000148, 44.346258856000091 ], [ 15.110362175000148, 44.353705145000092 ], [ 15.102305535000141, 44.357163804000081 ], [ 15.097178582000112, 44.36131419500002 ], [ 15.08920332100007, 44.37421295800003 ], [ 15.099782748000109, 44.373602606000063 ], [ 15.10694420700014, 44.375189520000092 ], [ 15.112152540000068, 44.379584052000084 ], [ 15.117198113000086, 44.387193101000022 ], [ 15.091644727000102, 44.399359442000119 ], [ 15.083018425000091, 44.401516018000123 ], [ 15.07357832100007, 44.400458075000145 ], [ 15.057790561000047, 44.394191799000097 ], [ 15.049001498000081, 44.3946800800001 ], [ 15.038340691000144, 44.403265692000119 ], [ 15.020762566000116, 44.429999091000113 ], [ 14.95883222700013, 44.466701565000122 ], [ 14.949717644000145, 44.468085028000118 ], [ 14.89747155000012, 44.490912177000027 ], [ 14.89747155000012, 44.49705638200011 ], [ 14.903168165000125, 44.498480536000088 ], [ 14.912852410000085, 44.502752997000087 ], [ 14.918630405000044, 44.504543361000074 ], [ 14.906260613000114, 44.520900783000073 ], [ 14.877614780000044, 44.551336981000148 ], [ 14.876963738000086, 44.559759833000086 ], [ 14.865896030000044, 44.566351630000057 ], [ 14.761485222000118, 44.658636786000116 ], [ 14.74366295700014, 44.680487372000144 ], [ 14.733653191000144, 44.703192450000088 ], [ 14.738129102000102, 44.70311107000002 ], [ 14.741221550000091, 44.701605536000059 ], [ 14.779958530000044, 44.669501044000086 ], [ 14.845225457000112, 44.600531317000062 ] ] ], [ [ [ 14.41000410200013, 44.600978908000044 ], [ 14.44556725400011, 44.565985419000143 ], [ 14.526621941000144, 44.503729559000149 ], [ 14.534353061000076, 44.484076239000117 ], [ 14.511973504000139, 44.482245184000121 ], [ 14.485036655000073, 44.500637111000074 ], [ 14.451914910000141, 44.531887111000131 ], [ 14.438161655000044, 44.538641669000086 ], [ 14.438161655000044, 44.545477606000091 ], [ 14.459239129000139, 44.5411644550001 ], [ 14.466075066000087, 44.538641669000086 ], [ 14.43799889400006, 44.564642645000063 ], [ 14.422618035000113, 44.573879299000126 ], [ 14.404063347000118, 44.579657294000086 ], [ 14.396983269000145, 44.569159247000115 ], [ 14.386566602000073, 44.56561920800003 ], [ 14.374685092000107, 44.567572333000086 ], [ 14.363047722000118, 44.57343170800003 ], [ 14.363047722000118, 44.579657294000086 ], [ 14.369883660000141, 44.579657294000086 ], [ 14.369883660000141, 44.579820054000052 ], [ 14.368662957000112, 44.582017320000048 ], [ 14.364756707000112, 44.587225653000118 ], [ 14.38257897200009, 44.603257554000024 ], [ 14.37598717500012, 44.623032945000048 ], [ 14.34937584700009, 44.655340887000065 ], [ 14.344574415000096, 44.668524481000119 ], [ 14.337087436000019, 44.699652411000116 ], [ 14.33578535200013, 44.716782945000048 ], [ 14.35572350400011, 44.707098700000088 ], [ 14.381114129000139, 44.698635158000044 ], [ 14.397471550000148, 44.68561432500006 ], [ 14.39039147200009, 44.662176825000088 ], [ 14.395192905000073, 44.653387762000122 ], [ 14.399587436000076, 44.637518622000087 ], [ 14.404063347000118, 44.610337632000082 ], [ 14.41000410200013, 44.600978908000044 ] ] ], [ [ [ 14.753265821000099, 44.845851955000072 ], [ 14.756114129000139, 44.835679429000052 ], [ 14.740489129000082, 44.826646226000022 ], [ 14.740489129000082, 44.820502020000063 ], [ 14.748057488000114, 44.816799221000096 ], [ 14.78736412900011, 44.789252020000092 ], [ 14.81153405000012, 44.779201565000093 ], [ 14.822438998000109, 44.771429755000113 ], [ 14.85124759200005, 44.73729075700011 ], [ 14.859060092000021, 44.717352606000119 ], [ 14.849619988000114, 44.703192450000088 ], [ 14.821462436000047, 44.720648505000057 ], [ 14.77295983200014, 44.760321356000091 ], [ 14.740489129000082, 44.778265692000119 ], [ 14.740489129000082, 44.770493882000025 ], [ 14.742930535000113, 44.7657738300001 ], [ 14.754079623000109, 44.757757880000085 ], [ 14.740896030000073, 44.764390367000047 ], [ 14.724945509000065, 44.767645575000088 ], [ 14.70997155000012, 44.767889716000113 ], [ 14.699473504000139, 44.765204169000143 ], [ 14.657888217000078, 44.798773505000085 ], [ 14.670420769000089, 44.799505927000112 ], [ 14.682871941000087, 44.798773505000085 ], [ 14.69483483200014, 44.796454169000114 ], [ 14.705739780000101, 44.792547919000114 ], [ 14.705739780000101, 44.798773505000085 ], [ 14.702321811000104, 44.802150783000101 ], [ 14.70142662900011, 44.804348049000097 ], [ 14.701345248000109, 44.807318427000112 ], [ 14.699473504000139, 44.813055731000063 ], [ 14.715830925000063, 44.803168036000059 ], [ 14.719981316000116, 44.798773505000085 ], [ 14.726817254000139, 44.798773505000085 ], [ 14.714121941000059, 44.818426825000117 ], [ 14.705821160000085, 44.826849677000084 ], [ 14.692067905000073, 44.833482164000131 ], [ 14.689789259000094, 44.836737372000087 ], [ 14.68580162900011, 44.847154039000074 ], [ 14.706797722000147, 44.844956773000078 ], [ 14.726817254000139, 44.840277411000088 ], [ 14.72413170700014, 44.844427802000112 ], [ 14.719981316000116, 44.854641018000066 ], [ 14.739024285000113, 44.853420315000122 ], [ 14.753265821000099, 44.845851955000072 ] ] ], [ [ [ 14.471039259000122, 44.953924872000087 ], [ 14.462575717000078, 44.935980536000116 ], [ 14.451914910000141, 44.922308661000088 ], [ 14.459239129000139, 44.915432033000073 ], [ 14.449961785000113, 44.898016669000114 ], [ 14.448496941000144, 44.883734442000119 ], [ 14.451914910000141, 44.850897528000118 ], [ 14.464854363000143, 44.821437893000123 ], [ 14.466563347000147, 44.804836330000072 ], [ 14.451914910000141, 44.798773505000085 ], [ 14.457041863000143, 44.787746486000131 ], [ 14.469248894000145, 44.773098049000126 ], [ 14.472911004000082, 44.765204169000143 ], [ 14.473887566000144, 44.754543361000103 ], [ 14.467621290000125, 44.742132880000085 ], [ 14.466075066000087, 44.729803778000147 ], [ 14.47217858200014, 44.70795319200009 ], [ 14.485606316000144, 44.692084052000084 ], [ 14.501312696000127, 44.678168036000088 ], [ 14.51392662900011, 44.662176825000088 ], [ 14.508067254000139, 44.653306382000054 ], [ 14.508555535000141, 44.645331122000087 ], [ 14.51498457100007, 44.642157294000114 ], [ 14.527517123000052, 44.647894598000093 ], [ 14.534353061000076, 44.634263414000131 ], [ 14.527354363000086, 44.627142645000092 ], [ 14.520355665000096, 44.621527411000088 ], [ 14.51335696700005, 44.618841864000117 ], [ 14.502289259000094, 44.620266018000095 ], [ 14.472992384000065, 44.620266018000095 ], [ 14.427907748000109, 44.656561591000084 ], [ 14.394541863000114, 44.707586981000091 ], [ 14.397227410000113, 44.751613674000097 ], [ 14.392751498000052, 44.752508856000091 ], [ 14.389903191000087, 44.754055080000128 ], [ 14.387380405000073, 44.755804755000113 ], [ 14.383555535000085, 44.757757880000085 ], [ 14.37452233200014, 44.753851630000085 ], [ 14.36817467500012, 44.761053778000118 ], [ 14.36426842500012, 44.77440013200011 ], [ 14.363047722000118, 44.806545315000093 ], [ 14.361582879000139, 44.815985419000086 ], [ 14.356618686000104, 44.819769598000121 ], [ 14.346039259000065, 44.820502020000063 ], [ 14.32984459700009, 44.833929755000057 ], [ 14.31413821700005, 44.893784898000078 ], [ 14.294200066000144, 44.908636786000059 ], [ 14.29517662900011, 44.913072007000025 ], [ 14.29623457100007, 44.915920315000065 ], [ 14.301524285000141, 44.922308661000088 ], [ 14.29249108200014, 44.940334377000127 ], [ 14.301524285000141, 44.943426825000088 ], [ 14.325205925000063, 44.93650950700011 ], [ 14.332286004000139, 44.932196356000091 ], [ 14.350271030000073, 44.912909247000059 ], [ 14.35962975400011, 44.908636786000059 ], [ 14.377126498000052, 44.908148505000057 ], [ 14.387380405000073, 44.909002997000059 ], [ 14.393239780000044, 44.914780992000047 ], [ 14.397227410000113, 44.929103908000101 ], [ 14.393565300000148, 44.934759833000115 ], [ 14.389008009000094, 44.950344143000095 ], [ 14.390310092000107, 44.960394598000065 ], [ 14.404063347000118, 44.949530341000084 ], [ 14.411387566000116, 44.956366278000118 ], [ 14.391449415000125, 44.969427802000084 ], [ 14.376719597000147, 44.986883856000148 ], [ 14.346690300000091, 45.047552802000112 ], [ 14.340830925000148, 45.055609442000033 ], [ 14.287445509000122, 45.101060289000131 ], [ 14.278493686000076, 45.113348700000088 ], [ 14.277679884000065, 45.127997137000094 ], [ 14.28858483200014, 45.148830471000068 ], [ 14.299571160000113, 45.162339585000055 ], [ 14.313649936000047, 45.172430731000091 ], [ 14.33187910200013, 45.175848700000117 ], [ 14.356211785000085, 45.169256903000147 ], [ 14.364105665000068, 45.15761953300013 ], [ 14.360524936000104, 45.117621161000088 ], [ 14.363047722000118, 45.093573309000149 ], [ 14.369639519000089, 45.075506903000118 ], [ 14.38770592500012, 45.039048570000077 ], [ 14.412282748000109, 45.003648179000081 ], [ 14.417653842000078, 44.997992255000085 ], [ 14.430837436000047, 44.990301825000145 ], [ 14.453868035000085, 44.987982489000089 ], [ 14.466075066000087, 44.98371002800009 ], [ 14.473480665000068, 44.971421617000019 ], [ 14.471039259000122, 44.953924872000087 ] ] ], [ [ [ 14.563324415000068, 45.249741929000109 ], [ 14.595876498000052, 45.23753489800005 ], [ 14.58545983200014, 45.237860419000057 ], [ 14.582204623000109, 45.23753489800005 ], [ 14.583994988000086, 45.230169989000061 ], [ 14.587168816000144, 45.224351304000081 ], [ 14.591319207000083, 45.219875393000123 ], [ 14.595876498000052, 45.216498114000117 ], [ 14.610687696000099, 45.198065497000087 ], [ 14.623789910000085, 45.175482489000089 ], [ 14.59742272200009, 45.166449286000088 ], [ 14.612559441000087, 45.15924713700015 ], [ 14.643728061000076, 45.156805731000119 ], [ 14.665293816000059, 45.161810614000061 ], [ 14.670909050000148, 45.143459377000099 ], [ 14.658946160000141, 45.108343817000033 ], [ 14.665293816000059, 45.087347723000093 ], [ 14.678070509000122, 45.07746002800009 ], [ 14.695974155000073, 45.073431708000115 ], [ 14.740489129000082, 45.073065497000087 ], [ 14.74000084700009, 45.044338283000044 ], [ 14.79981530000012, 45.005194403000118 ], [ 14.814952019000117, 44.977484442000119 ], [ 14.808767123000081, 44.977484442000119 ], [ 14.797211134000122, 44.971340236000131 ], [ 14.78467858200014, 44.969305731000119 ], [ 14.772227410000113, 44.971340236000131 ], [ 14.760915561000047, 44.977484442000119 ], [ 14.747243686000104, 44.970038153000147 ], [ 14.747243686000104, 44.96381256700009 ], [ 14.760752800000091, 44.955145575000088 ], [ 14.756846550000091, 44.948716539000074 ], [ 14.742035352000102, 44.944728908000101 ], [ 14.723399285000113, 44.94334544500002 ], [ 14.70639082100007, 44.946722723000036 ], [ 14.657888217000078, 44.970038153000147 ], [ 14.628916863000086, 44.978176174000069 ], [ 14.624522332000112, 44.985500393000066 ], [ 14.623789910000085, 45.001410223000093 ], [ 14.626312696000099, 45.0372582050001 ], [ 14.620860222000147, 45.045599677000055 ], [ 14.603282097000118, 45.038967190000093 ], [ 14.603282097000118, 45.032171942000062 ], [ 14.616953972000147, 45.024644273000106 ], [ 14.590668165000125, 45.023260809000121 ], [ 14.510508660000085, 45.032171942000062 ], [ 14.48536217500012, 45.038031317000119 ], [ 14.460134311000047, 45.052394924000097 ], [ 14.438731316000087, 45.070502020000092 ], [ 14.425059441000144, 45.087347723000093 ], [ 14.433116082000112, 45.095851955000128 ], [ 14.441579623000052, 45.09979889500012 ], [ 14.451182488000114, 45.101019598000121 ], [ 14.462657097000147, 45.101019598000121 ], [ 14.466481967000078, 45.105292059000149 ], [ 14.46583092500012, 45.114691473000065 ], [ 14.467051629000139, 45.124090887000094 ], [ 14.47632897200009, 45.128363348000093 ], [ 14.514008009000094, 45.129055080000043 ], [ 14.530121290000068, 45.134833075000117 ], [ 14.52125084700009, 45.148830471000068 ], [ 14.53419030000012, 45.162176825000088 ], [ 14.539561394000145, 45.170396226000079 ], [ 14.541758660000141, 45.178900458000115 ], [ 14.539398634000094, 45.186835028000061 ], [ 14.535899285000113, 45.194159247000087 ], [ 14.53687584700009, 45.201727606000119 ], [ 14.548024936000104, 45.210272528000147 ], [ 14.549815300000091, 45.221421617000075 ], [ 14.548838738000114, 45.230169989000061 ], [ 14.543793165000096, 45.235744533000044 ], [ 14.534353061000076, 45.23753489800005 ], [ 14.548838738000114, 45.248724677000055 ], [ 14.563324415000068, 45.249741929000109 ] ] ], [ [ [ 16.369470662000197, 46.540571188000072 ], [ 16.382183065000163, 46.539382630000048 ], [ 16.394895467000111, 46.540106100000045 ], [ 16.406264282000109, 46.539485982000073 ], [ 16.415152628000129, 46.535558574000035 ], [ 16.431999145000191, 46.523207906000053 ], [ 16.440370727000158, 46.519022115000027 ], [ 16.449052368000139, 46.518350322000131 ], [ 16.470756469000122, 46.520262350000067 ], [ 16.481298462000098, 46.519022115000027 ], [ 16.491116984000143, 46.515146383000072 ], [ 16.515301554000132, 46.501710510000109 ], [ 16.521089315000097, 46.498532410000067 ], [ 16.564290812000138, 46.479928894000111 ], [ 16.577623332000172, 46.470652975000078 ], [ 16.583721151000134, 46.470652975000078 ], [ 16.588061971000116, 46.479567159000098 ], [ 16.594263143000177, 46.482977804000129 ], [ 16.602117960000129, 46.482047628000075 ], [ 16.611109660000153, 46.478068542000088 ], [ 16.637671346000076, 46.474477031000035 ], [ 16.659272095000148, 46.464193421000047 ], [ 16.677462199000104, 46.448690491000107 ], [ 16.693585246000168, 46.429621888000028 ], [ 16.712395467000164, 46.412672018000208 ], [ 16.742884562000171, 46.399623718000086 ], [ 16.75508020000018, 46.381872864000073 ], [ 16.761901489000138, 46.381872864000073 ], [ 16.769342895000165, 46.396109721000116 ], [ 16.776474243000109, 46.392879944000057 ], [ 16.803449341000118, 46.388694153000117 ], [ 16.807893514000142, 46.387350566000137 ], [ 16.812337687000138, 46.385025127000105 ], [ 16.816575154000191, 46.381976217000172 ], [ 16.820915975000162, 46.378100485000047 ], [ 16.827530558000149, 46.374018046000046 ], [ 16.830217732000108, 46.377351176000033 ], [ 16.832388143000088, 46.381924541000089 ], [ 16.837659139000124, 46.381872864000073 ], [ 16.850474894000115, 46.373062032000078 ], [ 16.859410685000142, 46.36475790900009 ], [ 16.865461060000172, 46.359135234000078 ], [ 16.875072876000075, 46.342857158000058 ], [ 16.871765584000087, 46.327199199000106 ], [ 16.879311877000163, 46.312061961000055 ], [ 16.889232218000132, 46.292162578000088 ], [ 16.896053507000175, 46.28627146400008 ], [ 16.903288208000134, 46.281930644000099 ], [ 16.940701945000114, 46.251493226000051 ], [ 16.965299926000114, 46.219453837000046 ], [ 16.974808390000163, 46.210565491000196 ], [ 17.028035116000154, 46.180489808000132 ], [ 17.036303344000174, 46.172996725000118 ], [ 17.041264282000128, 46.162196351000077 ], [ 17.052943156000111, 46.153463033000023 ], [ 17.101208943000131, 46.128193258000053 ], [ 17.116195109000103, 46.123128967000056 ], [ 17.197327108000138, 46.121165263000123 ], [ 17.208592570000093, 46.116566060000068 ], [ 17.248590128000075, 46.080237529 ], [ 17.254067830000167, 46.070832418000137 ], [ 17.266573527000162, 46.038793030000036 ], [ 17.268950643000096, 46.028716126000106 ], [ 17.275875285000097, 46.012024638000085 ], [ 17.291481567000119, 46.007942200000073 ], [ 17.307811320000155, 46.006391907000122 ], [ 17.316803019000105, 45.997658590000057 ], [ 17.309361613000164, 45.996625061000074 ], [ 17.296959270000116, 45.992645976000105 ], [ 17.290137980000168, 45.991457418000167 ], [ 17.290137980000168, 45.984636129000208 ], [ 17.304814087000153, 45.981018778000063 ], [ 17.306613213000134, 45.979914052000211 ], [ 17.316596314000151, 45.973784078000094 ], [ 17.327138306000109, 45.972027080000018 ], [ 17.337887003000134, 45.984636129000208 ], [ 17.343674764000099, 45.967531230000091 ], [ 17.342124471000176, 45.958642883000081 ], [ 17.34532841000015, 45.955697327000067 ], [ 17.365275512000068, 45.95673085500006 ], [ 17.389150024000145, 45.963087057000067 ], [ 17.39969201700012, 45.959934794000034 ], [ 17.406203247000093, 45.943656718000099 ], [ 17.411577596000143, 45.946602275000103 ], [ 17.415401652000185, 45.949702860000045 ], [ 17.418192179000158, 45.953010152000033 ], [ 17.426667114000139, 45.95673085500006 ], [ 17.511933228000117, 45.953940328000172 ], [ 17.554307902000147, 45.947790832000109 ], [ 17.591101521000127, 45.936215312000073 ], [ 17.638437134000185, 45.901333720000096 ], [ 17.645775187000169, 45.891825256000104 ], [ 17.646912069000109, 45.883712057000096 ], [ 17.652079712000102, 45.868829244000054 ], [ 17.65321659300011, 45.857357076000127 ], [ 17.65466937500014, 45.852113441000071 ], [ 17.656523885000098, 45.845419820000089 ], [ 17.664688761000122, 45.841647441000092 ], [ 17.687323038000073, 45.840613913000098 ], [ 17.809176066000191, 45.814413961000085 ], [ 17.838218221000176, 45.799634501000057 ], [ 17.85795861800014, 45.775863342000022 ], [ 17.858061971000069, 45.771729228000069 ], [ 17.870050903000134, 45.77348622600006 ], [ 17.87573531100017, 45.780669251000191 ], [ 17.880489542000163, 45.788524068000058 ], [ 17.889791300000184, 45.792141418000128 ], [ 17.90623438900019, 45.792141418000128 ], [ 17.97536747200013, 45.792141418000128 ], [ 18.080477335000097, 45.771729228000069 ], [ 18.092052856000151, 45.771729228000069 ], [ 18.102904907000095, 45.774623108000057 ], [ 18.120164835000168, 45.783408102000053 ], [ 18.128949829000163, 45.7853718060001 ], [ 18.211218709000121, 45.7853718060001 ], [ 18.229822225000163, 45.781237692000062 ], [ 18.260518026000113, 45.765114644000093 ], [ 18.28325565500009, 45.764907939000111 ], [ 18.300515584000095, 45.751833802000064 ], [ 18.317672160000143, 45.747286275000121 ], [ 18.33493208800013, 45.751988831000105 ], [ 18.351158488000152, 45.758396709000053 ], [ 18.367178182000202, 45.758190003000024 ], [ 18.383817993000122, 45.743203837000024 ], [ 18.384128052000108, 45.743100484000095 ], [ 18.390742635000095, 45.741808574000046 ], [ 18.397563924000139, 45.741343486000019 ], [ 18.404385213000097, 45.741808574000046 ], [ 18.411723267000099, 45.743203837000024 ], [ 18.430740194000151, 45.753642477000071 ], [ 18.465466756000097, 45.783718160000049 ], [ 18.481796509000134, 45.79141794900012 ], [ 18.504224081000132, 45.784028219000035 ], [ 18.530269002000125, 45.790849508000079 ], [ 18.573470499000138, 45.81668772400009 ], [ 18.585459432000107, 45.826919658000079 ], [ 18.607370239000147, 45.856685282000072 ], [ 18.622149699000175, 45.868415833000043 ], [ 18.623596639000169, 45.868674215000041 ], [ 18.6262838130001, 45.87482371099999 ], [ 18.629281046000102, 45.886864319000054 ], [ 18.633001750000119, 45.891928610000051 ], [ 18.655636027000156, 45.907586568000099 ], [ 18.674342896000155, 45.910377096000062 ], [ 18.723848918000101, 45.898439840000023 ], [ 18.763329712000143, 45.883970439000066 ], [ 18.775525350000152, 45.882833557000154 ], [ 18.785963989000095, 45.88691599600007 ], [ 18.790408162000091, 45.89389231400007 ], [ 18.79485233600019, 45.90303904200006 ], [ 18.804877563000133, 45.913632711000034 ], [ 18.817796672000128, 45.905467835000124 ], [ 18.822450672000087, 45.90558190400013 ], [ 18.828338664000114, 45.905726217000094 ], [ 18.845391887000119, 45.913942770000105 ], [ 18.86544234200008, 45.918076884000058 ], [ 18.876604452000123, 45.922417705000115 ], [ 18.886526327000098, 45.930427552000097 ], [ 18.901305786000137, 45.931202698 ], [ 18.906990194000173, 45.915699768000096 ], [ 18.889833619000115, 45.907896627000085 ], [ 18.881978800000155, 45.902625631000049 ], [ 18.872883748000106, 45.895235901000049 ], [ 18.893450969000185, 45.883867086000137 ], [ 18.903992960000153, 45.875702210000028 ], [ 18.906990194000173, 45.86795074500013 ], [ 18.8997554930001, 45.861387838000056 ], [ 18.887146443000177, 45.859475810000035 ], [ 18.855313761000133, 45.857357076000127 ], [ 18.852419881000145, 45.830071920000123 ], [ 18.850352824000169, 45.824232483000046 ], [ 18.846735474000099, 45.819995016000107 ], [ 18.844978475000119, 45.815705872000208 ], [ 18.848699178000118, 45.80955637600006 ], [ 18.863995402000086, 45.798549297000065 ], [ 18.871126750000116, 45.789971009000126 ], [ 18.900168904000111, 45.764907939000111 ], [ 18.904819784000097, 45.749766744000098 ], [ 18.908953898000107, 45.719432679000064 ], [ 18.917325480000073, 45.706565247000086 ], [ 18.931071411000119, 45.698917135000087 ], [ 18.948124634000152, 45.692044170000131 ], [ 18.962697388000095, 45.683052470000078 ], [ 18.968485148000184, 45.668738098000105 ], [ 18.962904093000162, 45.660108134000055 ], [ 18.9354122310001, 45.633391419000091 ], [ 18.924456828000103, 45.627707011000055 ], [ 18.91236454200012, 45.619232076000046 ], [ 18.908230428000195, 45.60042185500005 ], [ 18.906990194000173, 45.581663310000053 ], [ 18.903579549000142, 45.573085022000029 ], [ 18.912054484000151, 45.568227438000079 ], [ 18.932001586000155, 45.545541484000111 ], [ 18.941716757000108, 45.538926900000021 ], [ 18.960216919000118, 45.539133607000096 ], [ 18.973136027000152, 45.546264954000023 ], [ 18.983161255000169, 45.554739888000128 ], [ 19.0006278890001, 45.561199443000092 ], [ 19.009206177000152, 45.565488586000058 ], [ 19.018094523000144, 45.567400614000078 ], [ 19.027189575000136, 45.562594707000144 ], [ 19.033390747000112, 45.554636536000018 ], [ 19.036491333000157, 45.549468893000082 ], [ 19.040935506000068, 45.545024719000097 ], [ 19.050960734000085, 45.538926900000021 ], [ 19.067807251000147, 45.533397522000129 ], [ 19.082276652000189, 45.531175436000112 ], [ 19.095092407000095, 45.526059469000117 ], [ 19.10625451700011, 45.511641745000119 ], [ 19.077212362000125, 45.491642965000082 ], [ 19.017926147000168, 45.497807280000117 ], [ 19.009619588000163, 45.49867095900008 ], [ 18.996390422000161, 45.473814596000054 ], [ 19.003005004000158, 45.455366110000043 ], [ 19.0122576280001, 45.448468396000138 ], [ 19.031633748000132, 45.434023743000111 ], [ 19.037421509000097, 45.422293193000215 ], [ 19.02863651600012, 45.412164612000097 ], [ 18.975926554000097, 45.394956360000023 ], [ 18.988742310000163, 45.379246725000129 ], [ 19.00362512200013, 45.366120911000067 ], [ 19.020988403000132, 45.357232565000075 ], [ 19.040832153000139, 45.354028626000101 ], [ 19.082069946000132, 45.354028626000101 ], [ 19.091991821000136, 45.349997864000088 ], [ 19.095402466000166, 45.340489401000113 ], [ 19.096229289000178, 45.329120585000041 ], [ 19.098813110000094, 45.319870504000093 ], [ 19.124754679000148, 45.298114726000179 ], [ 19.162065063000171, 45.285040588000058 ], [ 19.363086385000173, 45.24824696900005 ], [ 19.378072550000155, 45.229591777000067 ], [ 19.397296183000094, 45.223287253000152 ], [ 19.407838175000137, 45.203133444000102 ], [ 19.405357707000178, 45.179672343000036 ], [ 19.393929400000133, 45.171624240000071 ], [ 19.390681600000107, 45.169337057000106 ], [ 19.304278605000121, 45.166546530000048 ], [ 19.299421020000096, 45.168975322000094 ], [ 19.291359497000201, 45.177708639000073 ], [ 19.286708618000148, 45.17951731400008 ], [ 19.279473918000178, 45.177243551000046 ], [ 19.275753215000151, 45.172851054000077 ], [ 19.272755981000159, 45.168355205000054 ], [ 19.267795044000195, 45.165823059000061 ], [ 19.225937133000116, 45.161947327000107 ], [ 19.204543091000119, 45.162877503000047 ], [ 19.185319458000095, 45.168045146000068 ], [ 19.174570760000165, 45.175796611000052 ], [ 19.15576053900017, 45.19496856700006 ], [ 19.143874959000129, 45.199516093000099 ], [ 19.12186079900016, 45.1957953900001 ], [ 19.128785441000133, 45.181067607000088 ], [ 19.141704549000139, 45.162154032000061 ], [ 19.137673787000153, 45.146030986000071 ], [ 19.116073039000185, 45.142878724000198 ], [ 19.060055786000163, 45.146857809 ], [ 19.044862915000124, 45.137245993000093 ], [ 19.046206502000189, 45.128357646000083 ], [ 19.054164673000145, 45.12060618100007 ], [ 19.064086548000148, 45.113578186000055 ], [ 19.071527954000175, 45.107066956000082 ], [ 19.079176066000144, 45.094612936000019 ], [ 19.082276652000189, 45.08494944300007 ], [ 19.085997355000103, 45.060919902000066 ], [ 19.094265584000141, 45.031412659000026 ], [ 19.095402466000166, 45.020922343000095 ], [ 19.093232055000072, 45.011517233000021 ], [ 19.08847782400008, 44.999476623000064 ], [ 19.085170533000081, 44.98728098600013 ], [ 19.087237589000154, 44.977100728000082 ], [ 19.098089640000182, 44.970021057000068 ], [ 19.118553507000144, 44.975550436000063 ], [ 19.127648560000125, 44.968419088000118 ], [ 19.131679321000121, 44.953174540000063 ], [ 19.124547973000176, 44.945939840000094 ], [ 19.113075806000069, 44.942425842000048 ], [ 19.103567342000161, 44.938240051000108 ], [ 19.087857707000126, 44.91932647700007 ], [ 19.078659302000119, 44.910851542000088 ], [ 19.06667036900015, 44.905683899000067 ], [ 19.052097615000093, 44.906975810000105 ], [ 19.031943807000118, 44.922633769000086 ], [ 19.01840458200013, 44.925682678 ], [ 18.991429484000122, 44.914933980000072 ], [ 18.994323364000195, 44.894831848000123 ], [ 19.015820760000139, 44.865634664000098 ], [ 19.004968709000195, 44.863309225000066 ], [ 18.889626912000153, 44.861190491000073 ], [ 18.858724406000164, 44.868528545000075 ], [ 18.842144042000172, 44.876232552000076 ], [ 18.84212947600011, 44.876239320000096 ], [ 18.817796672000128, 44.887545472000042 ], [ 18.783380167000189, 44.913745423000066 ], [ 18.772631469000146, 44.942477519000064 ], [ 18.779866170000133, 44.952244364000123 ], [ 18.801570271000116, 44.963974915000094 ], [ 18.804567505000136, 44.973845113000081 ], [ 18.803017212000128, 44.977307435000043 ], [ 18.797952921000132, 44.982216695000076 ], [ 18.795782512000159, 44.985058899000123 ], [ 18.795162394000101, 44.988004456000127 ], [ 18.795162394000101, 44.993327129000093 ], [ 18.794645630000133, 44.995445862000068 ], [ 18.791751749000156, 45.00154368100003 ], [ 18.788961222000097, 45.005729472000056 ], [ 18.784930461000101, 45.008468323000088 ], [ 18.778005819000128, 45.010328674000093 ], [ 18.750100546000141, 45.012240703000131 ], [ 18.738318319000143, 45.015909729000029 ], [ 18.726329386000174, 45.026141663000018 ], [ 18.689019002000151, 45.080246888000019 ], [ 18.684058065000102, 45.084794414000029 ], [ 18.678166951000094, 45.087378235000031 ], [ 18.671345662000135, 45.086861470000102 ], [ 18.6660746660001, 45.082985739000051 ], [ 18.663284139000154, 45.07714630100007 ], [ 18.661217082000093, 45.071100159000125 ], [ 18.658116495000144, 45.066294250000098 ], [ 18.648711385000183, 45.062676900000028 ], [ 18.640546509000075, 45.065364075000062 ], [ 18.633621867000102, 45.071978658000049 ], [ 18.627937459000151, 45.080040182000133 ], [ 18.621116170000107, 45.093114319000179 ], [ 18.616671997000168, 45.097661845000047 ], [ 18.609127238000127, 45.100090637000093 ], [ 18.602512654000151, 45.099263815000072 ], [ 18.588560018000152, 45.093217672000023 ], [ 18.581842082000122, 45.091357321000018 ], [ 18.573780558000124, 45.091564026000086 ], [ 18.557657511000144, 45.094406230000047 ], [ 18.549595988000164, 45.094767965000059 ], [ 18.534919881000178, 45.090427145000078 ], [ 18.534802705000146, 45.088411718000103 ], [ 18.534403117000124, 45.081538799000057 ], [ 18.539260702000149, 45.069343160000031 ], [ 18.541121053000154, 45.055287171000103 ], [ 18.517039835000105, 45.055855612000087 ], [ 18.490788208000168, 45.062780253000071 ], [ 18.481708184000126, 45.066921352000136 ], [ 18.466086873000165, 45.0740457160001 ], [ 18.451841622000131, 45.084949736000098 ], [ 18.451829852000117, 45.084958745000037 ], [ 18.429293254000157, 45.102209372000075 ], [ 18.412033325000095, 45.112441305000047 ], [ 18.392913045000086, 45.118642476000034 ], [ 18.322323039000111, 45.122879944000076 ], [ 18.307440227000171, 45.127530823000129 ], [ 18.261964966000107, 45.150681865000124 ], [ 18.237883748000172, 45.157451477000066 ], [ 18.213285766000183, 45.153782450000094 ], [ 18.202330363000101, 45.144067281000034 ], [ 18.200056599000106, 45.131613262000073 ], [ 18.199333130000184, 45.119004212000121 ], [ 18.19251184100014, 45.108513896000076 ], [ 18.174941854000167, 45.100762431000064 ], [ 18.153651164000081, 45.097558493000108 ], [ 18.143704328000155, 45.097699916000082 ], [ 18.143698040000174, 45.097700005000078 ], [ 18.131843709000151, 45.097868551000076 ], [ 18.112413371000173, 45.100607402000051 ], [ 18.090295857000172, 45.107997131000033 ], [ 18.035002075000136, 45.143343812000055 ], [ 18.019085734000129, 45.149441631000101 ], [ 18.003479451000175, 45.149338278000087 ], [ 17.988493286000107, 45.143808900000082 ], [ 17.927721802000093, 45.092029114000113 ], [ 17.911185343000113, 45.081073711000116 ], [ 17.902607056000164, 45.077766419000042 ], [ 17.875218546000127, 45.073994039000112 ], [ 17.845659628000192, 45.065260723000037 ], [ 17.835737752000114, 45.064433899000093 ], [ 17.815583944000139, 45.070169983000071 ], [ 17.797497193000112, 45.081952210000068 ], [ 17.741376587000161, 45.133266907000106 ], [ 17.714504842000167, 45.152025452000103 ], [ 17.684739217000157, 45.163962708000057 ], [ 17.651562948000162, 45.165357971000034 ], [ 17.629962199000175, 45.157348125000041 ], [ 17.593065226000164, 45.12959788000019 ], [ 17.572394653000146, 45.120399476000031 ], [ 17.561439250000177, 45.119365947000048 ], [ 17.539528443000108, 45.120967916000055 ], [ 17.489298950000176, 45.116265361000089 ], [ 17.48185754400015, 45.114405009000095 ], [ 17.487025187000143, 45.12086456400003 ], [ 17.496223592000149, 45.141690165000099 ], [ 17.472349080000157, 45.132750142000063 ], [ 17.46036014800012, 45.131251526000071 ], [ 17.447751099000186, 45.134300436000089 ], [ 17.454985799000156, 45.14060496000009 ], [ 17.458086385000087, 45.146134339000113 ], [ 17.456949503000175, 45.151818746000046 ], [ 17.451161743000114, 45.158485006000049 ], [ 17.443306925000172, 45.162050680000036 ], [ 17.438759399000133, 45.158123271000065 ], [ 17.436175578000132, 45.151922099000089 ], [ 17.43410852000008, 45.148563131000074 ], [ 17.400828898000128, 45.141018372000119 ], [ 17.382432088000144, 45.139623109000027 ], [ 17.36858280400017, 45.14510081000013 ], [ 17.359384399000163, 45.150681865000124 ], [ 17.326518188000136, 45.165926412000076 ], [ 17.307811320000155, 45.171404115000072 ], [ 17.268950643000096, 45.189542542000098 ], [ 17.249727010000186, 45.159880269000055 ], [ 17.245489543000133, 45.155384420000118 ], [ 17.197843872000163, 45.152955628000072 ], [ 17.187095174000149, 45.148563131000074 ], [ 17.124628433000112, 45.169057755000082 ], [ 17.098418416000158, 45.177656962000057 ], [ 17.05573368300017, 45.200446269000068 ], [ 17.036303344000174, 45.230470276000105 ], [ 17.030205525000127, 45.226956279000078 ], [ 17.014392537000134, 45.219773255000192 ], [ 17.008294718000172, 45.216155905000036 ], [ 17.012532186000129, 45.224475810000101 ], [ 17.013565715000112, 45.230573629000062 ], [ 17.012015421000086, 45.236464742000052 ], [ 17.008294718000172, 45.244164531000123 ], [ 16.99868290200007, 45.231400452000074 ], [ 16.988140909000094, 45.236516419000068 ], [ 16.975945271000086, 45.247161764000069 ], [ 16.961165812000075, 45.250934143000066 ], [ 16.965299926000114, 45.244216207000065 ], [ 16.967987101000119, 45.237291566000081 ], [ 16.947316529000204, 45.235689596000029 ], [ 16.941528768000126, 45.241218974000034 ], [ 16.942148885000108, 45.249848939000074 ], [ 16.940701945000114, 45.257755433000042 ], [ 16.932640421000116, 45.27878774100013 ], [ 16.924372193000181, 45.284523825000107 ], [ 16.896983683000144, 45.268142396000044 ], [ 16.893986450000114, 45.263543192 ], [ 16.885821574000204, 45.255223287000049 ], [ 16.875382935000175, 45.246955058000097 ], [ 16.867321411000177, 45.243389385000043 ], [ 16.861740357000144, 45.232227274000095 ], [ 16.851921834000109, 45.227421367000076 ], [ 16.840759725000169, 45.224010722000074 ], [ 16.830734497000122, 45.216982727000058 ], [ 16.825050089000086, 45.205045472000094 ], [ 16.825773560000187, 45.196363831000056 ], [ 16.82422326600016, 45.189077454000156 ], [ 16.81171757000007, 45.181222637000118 ], [ 16.786292765000155, 45.178845521000099 ], [ 16.587028443000122, 45.22085846 ], [ 16.528944133000124, 45.222253724000169 ], [ 16.481918579000165, 45.199516093000099 ], [ 16.449155721000153, 45.148098043000047 ], [ 16.435513143000151, 45.132853496000095 ], [ 16.424764445000136, 45.127272441000073 ], [ 16.398512817000096, 45.121433004000082 ], [ 16.389211060000065, 45.116833801000055 ], [ 16.381769654000152, 45.107583720000022 ], [ 16.381976359000106, 45.101950989000088 ], [ 16.384043416000168, 45.09543975900003 ], [ 16.381976359000106, 45.083709208000059 ], [ 16.377325480000138, 45.075596009000051 ], [ 16.356964966000106, 45.0486209110001 ], [ 16.346023380000133, 45.020020435000063 ], [ 16.346019392000159, 45.0200100120001 ], [ 16.34063521300007, 45.005936178000113 ], [ 16.316243937000138, 45.001233623000118 ], [ 16.279346965000116, 45.007176412000049 ], [ 16.241209757000149, 45.018958639000047 ], [ 16.212994426000193, 45.031464335000052 ], [ 16.121527140000126, 45.096163229000112 ], [ 16.10406050600011, 45.11254465800009 ], [ 16.082769816000109, 45.151612041000092 ], [ 16.067473592000141, 45.169595439000162 ], [ 16.054967896000164, 45.17641672800012 ], [ 16.033057088000191, 45.179724020000023 ], [ 16.024375447000153, 45.184323222000089 ], [ 16.024995565000125, 45.18892242500003 ], [ 16.028716268000125, 45.196260478000042 ], [ 16.029233032000064, 45.205045472000094 ], [ 16.020448039000172, 45.213933818000115 ], [ 16.008459106000117, 45.218171285000082 ], [ 15.997503703000149, 45.218533021000084 ], [ 15.974559367000097, 45.215380758000109 ], [ 15.878854614000204, 45.217241109000113 ], [ 15.824801066000106, 45.210988261000111 ], [ 15.802568519000175, 45.196473382000065 ], [ 15.792348267000193, 45.189800924000068 ], [ 15.780979451000121, 45.167993470000042 ], [ 15.780049276000142, 45.160293681000056 ], [ 15.783769979000169, 45.100917460000105 ], [ 15.77942915800017, 45.085362855000099 ], [ 15.755968059000111, 45.042213033000067 ], [ 15.75555464700011, 45.023557841000084 ], [ 15.767440226000133, 44.99322377600005 ], [ 15.763616170000176, 44.975550436000063 ], [ 15.738811482000159, 44.944854635000112 ], [ 15.734108149000093, 44.934440112000019 ], [ 15.730853312000193, 44.927232972000112 ], [ 15.73426395700011, 44.902118226000098 ], [ 15.748009888000155, 44.882016094000036 ], [ 15.764029581000102, 44.864032695000063 ], [ 15.773434692000166, 44.845015768000096 ], [ 15.76868046000007, 44.82734242800008 ], [ 15.751213827000129, 44.821554667000029 ], [ 15.730646607000125, 44.817007142000065 ], [ 15.716073852000164, 44.803209534000118 ], [ 15.717314087000204, 44.78646637000007 ], [ 15.728476196000145, 44.769103088000051 ], [ 15.753694295000088, 44.739285787000071 ], [ 15.759275350000109, 44.734169820000076 ], [ 15.782839803000115, 44.722594300000125 ], [ 15.790487915000199, 44.713395895000204 ], [ 15.796999146000161, 44.703267314000087 ], [ 15.805680786000124, 44.696652730000082 ], [ 15.82035689300011, 44.698254700000192 ], [ 15.829968709000127, 44.700528463000111 ], [ 15.847848755000172, 44.701510315000107 ], [ 15.85642704300011, 44.703577372000055 ], [ 15.863868449000137, 44.709985250000088 ], [ 15.869242798000187, 44.718563537000207 ], [ 15.876270792000099, 44.724816386000029 ], [ 15.888776489000094, 44.724247945000073 ], [ 15.895597778000138, 44.718563537000207 ], [ 15.899318481000165, 44.709210103000075 ], [ 15.902005656000199, 44.698823141000062 ], [ 15.905416301000116, 44.690141500000024 ], [ 15.913064412000097, 44.68450876900009 ], [ 15.921539347000191, 44.686110739000114 ], [ 15.929807577000133, 44.689469707000043 ], [ 15.937352336000089, 44.688952942000085 ], [ 15.948101034000132, 44.678100891000028 ], [ 15.95564579200007, 44.653192851000071 ], [ 15.968978312000104, 44.639240214000083 ], [ 15.979106893000136, 44.634382630000047 ], [ 15.991612589000141, 44.631437073000072 ], [ 16.016003865000158, 44.628956604000095 ], [ 16.028302856000124, 44.624719137000042 ], [ 16.036157674000151, 44.615314026000064 ], [ 16.041118612000105, 44.602808330000087 ], [ 16.044735962000175, 44.589372457000124 ], [ 16.043185669000138, 44.588442282000088 ], [ 16.0349174400001, 44.585393372000041 ], [ 16.030473266000115, 44.572215882000151 ], [ 16.013936809000199, 44.557023011000055 ], [ 16.006081990000069, 44.541003316000072 ], [ 16.026649210000159, 44.525190328000079 ], [ 16.047319783000177, 44.523329977000074 ], [ 16.083699991000145, 44.534905497000111 ], [ 16.104887329000121, 44.532373353000125 ], [ 16.116462850000147, 44.52146962500008 ], [ 16.123077433000162, 44.503899638000107 ], [ 16.128348429000198, 44.484314271000088 ], [ 16.152946411000158, 44.435066630000094 ], [ 16.159664347000103, 44.416101380000057 ], [ 16.15987105300016, 44.400701803000075 ], [ 16.153876587000127, 44.39357045500013 ], [ 16.145401652000118, 44.389591370000133 ], [ 16.138787069000131, 44.385405579000107 ], [ 16.138270305000106, 44.377602438000096 ], [ 16.141991008000105, 44.380754700000054 ], [ 16.15315311700013, 44.380444642000057 ], [ 16.171343221000171, 44.377085673000053 ], [ 16.192117146000129, 44.367422181000038 ], [ 16.202865844000144, 44.35977406800005 ], [ 16.205643642000126, 44.350530708000051 ], [ 16.205863078000164, 44.349800517000048 ], [ 16.20317590300013, 44.333057353000086 ], [ 16.199661906000159, 44.324685771000119 ], [ 16.189533325000127, 44.308511048000113 ], [ 16.186639445000139, 44.297607320000068 ], [ 16.187569620000176, 44.282414450000019 ], [ 16.197078084000168, 44.251150208000112 ], [ 16.215784953000139, 44.208155416000054 ], [ 16.232114705000185, 44.190998840000091 ], [ 16.27552290800017, 44.157357483000041 ], [ 16.289992309000127, 44.139115702000097 ], [ 16.312213175000153, 44.099996644000058 ], [ 16.326889282000138, 44.082374980000068 ], [ 16.346112915000163, 44.068474019000107 ], [ 16.357378377000117, 44.062169495000077 ], [ 16.367196899000191, 44.058138733000092 ], [ 16.377945597000121, 44.057363587000069 ], [ 16.403990519000104, 44.058758850000046 ], [ 16.414015747000121, 44.055813293000071 ], [ 16.426934855000127, 44.040517070000092 ], [ 16.431482381000166, 44.025789287000109 ], [ 16.439647258000093, 44.014007060000083 ], [ 16.483468872000174, 44.002534892000071 ], [ 16.501038859000147, 43.992716370000025 ], [ 16.516541788000069, 43.97953888000005 ], [ 16.527446673000128, 43.967859174000083 ], [ 16.555815877000128, 43.937474264000102 ], [ 16.604805135000134, 43.901068217000031 ], [ 16.637361288000193, 43.868408712000118 ], [ 16.678599081000101, 43.840684306000114 ], [ 16.686143839000152, 43.826137390000056 ], [ 16.689761190000127, 43.809316712000069 ], [ 16.698236125000136, 43.788077698000095 ], [ 16.712602173000136, 43.77151540100003 ], [ 16.82380985500015, 43.707307434000072 ], [ 16.981939738000108, 43.589691875000099 ], [ 17.030515585000131, 43.54847991900003 ], [ 17.062314068000177, 43.527747065000099 ], [ 17.084569132000098, 43.51323659300003 ], [ 17.142756795000111, 43.489336243000125 ], [ 17.2394950770001, 43.478406677000081 ], [ 17.270500936000133, 43.463213807000059 ], [ 17.28641727700014, 43.43737559000003 ], [ 17.267607055000127, 43.353323873000093 ], [ 17.2899312750001, 43.303430278000022 ], [ 17.328688599000145, 43.260357971000204 ], [ 17.369409628000199, 43.23255605100006 ], [ 17.389666788000113, 43.223099264 ], [ 17.400208781000174, 43.216045431000097 ], [ 17.406823365000065, 43.205425924000181 ], [ 17.415194947000145, 43.18496205700005 ], [ 17.426770467000097, 43.165712585000094 ], [ 17.44206669100015, 43.152431743000093 ], [ 17.450913270000171, 43.14815159700008 ], [ 17.587380818000128, 43.082125957000088 ], [ 17.598025500000148, 43.07290235300006 ], [ 17.628411905000178, 43.046572571000056 ], [ 17.659004354000075, 42.993655905000068 ], [ 17.659107707000203, 42.993630066000051 ], [ 17.659211060000132, 42.993449198000107 ], [ 17.659314412000157, 42.99339752200008 ], [ 17.662725057000102, 42.965698955000065 ], [ 17.634509724000139, 42.950402731000096 ], [ 17.580678729091829, 42.942075402215451 ], [ 17.580658399000072, 42.942084052000055 ], [ 17.580088738000114, 42.94232819200009 ], [ 17.549652540000068, 42.955308335000112 ], [ 17.53451582100007, 42.950628973000093 ], [ 17.515635613000114, 42.958889065000065 ], [ 17.498545769000089, 42.972154039000102 ], [ 17.488291863000143, 42.982611395000092 ], [ 17.474619988000114, 43.001166083000086 ], [ 17.470876498000081, 43.013413804000052 ], [ 17.479177280000073, 43.022406317000062 ], [ 17.501963738000086, 43.030991929000081 ], [ 17.48796634200005, 43.034979559000149 ], [ 17.471690300000091, 43.030462958000115 ], [ 17.453379754000139, 43.02277252800009 ], [ 17.433604363000114, 43.017401434000121 ], [ 17.440684441000087, 43.019964911000031 ], [ 17.460215691000144, 43.030991929000081 ], [ 17.450450066000116, 43.031154690000065 ], [ 17.440684441000087, 43.032294012000094 ], [ 17.432302280000101, 43.036200262000094 ], [ 17.426117384000065, 43.044623114000032 ], [ 17.433604363000114, 43.051499742000047 ], [ 17.42741946700005, 43.060858466000084 ], [ 17.426117384000065, 43.065171617000075 ], [ 17.404551629000139, 43.051499742000047 ], [ 17.370860222000118, 43.073879299000069 ], [ 17.316254102000073, 43.127264716000113 ], [ 17.17237389400006, 43.181830145000092 ], [ 17.138031446000127, 43.20233795800003 ], [ 17.121348504000082, 43.208807684000121 ], [ 17.113942905000101, 43.213202216000113 ], [ 17.107758009000122, 43.226385809000064 ], [ 17.100271030000073, 43.23167552300005 ], [ 17.090179884000094, 43.235174872000115 ], [ 17.080088738000114, 43.23651764500012 ], [ 17.073496941000144, 43.238959052000055 ], [ 17.066661004000139, 43.244859117000104 ], [ 17.056325717000021, 43.256984768000095 ], [ 17.054453972000147, 43.261216539000102 ], [ 17.051117384000122, 43.274237372000087 ], [ 17.049489780000101, 43.278021552000112 ], [ 17.045095248000109, 43.279771226000108 ], [ 17.032399936000076, 43.282375393000095 ], [ 17.028168165000125, 43.284247137000065 ], [ 16.933929884000065, 43.373602606000091 ], [ 16.906016472000118, 43.387274481000119 ], [ 16.895762566000087, 43.394598700000145 ], [ 16.888519727000073, 43.401190497000115 ], [ 16.88062584700009, 43.405951239000117 ], [ 16.752452019000145, 43.419501044000086 ], [ 16.693858269000117, 43.438299872000115 ], [ 16.625824415000068, 43.449042059000121 ], [ 16.534841342000107, 43.497137762000094 ], [ 16.533457879000139, 43.499701239000117 ], [ 16.532562696000127, 43.504339911000059 ], [ 16.530039910000113, 43.50877513200011 ], [ 16.524668816000144, 43.51080963700015 ], [ 16.518565300000091, 43.509711005000085 ], [ 16.509532097000147, 43.505072333000086 ], [ 16.504405144000145, 43.503973700000117 ], [ 16.466563347000118, 43.51080963700015 ], [ 16.391449415000096, 43.51080963700015 ], [ 16.391449415000096, 43.51764557500006 ], [ 16.411387566000087, 43.517808335000026 ], [ 16.434255405000101, 43.521877346000096 ], [ 16.455902540000068, 43.528957424000041 ], [ 16.473399285000113, 43.538153387000122 ], [ 16.456797722000061, 43.545884507000025 ], [ 16.433848504000082, 43.549750067000033 ], [ 16.336761915000068, 43.551174221000096 ], [ 16.324961785000085, 43.548529364000117 ], [ 16.306325717000107, 43.539943752000099 ], [ 16.299327019000117, 43.538153387000122 ], [ 16.28109785200013, 43.536037502000099 ], [ 16.239593946000127, 43.526556708000086 ], [ 16.117686394000145, 43.524481512000094 ], [ 16.117686394000145, 43.51764557500006 ], [ 16.150726759000094, 43.511379299000097 ], [ 16.164886915000125, 43.504095770000092 ], [ 16.172373894000089, 43.489691473000121 ], [ 16.11085045700014, 43.489691473000121 ], [ 16.113129102000102, 43.478908596000124 ], [ 16.098480665000096, 43.480047919000057 ], [ 16.066172722000061, 43.489691473000121 ], [ 16.039561394000117, 43.490790106000091 ], [ 16.02833092500012, 43.494940497000115 ], [ 16.014008009000037, 43.503973700000117 ], [ 16.007823113000086, 43.503973700000117 ], [ 16.007823113000086, 43.497137762000094 ], [ 15.995778842000078, 43.503363348000065 ], [ 15.973480665000125, 43.503119208000115 ], [ 15.966319207000083, 43.51080963700015 ], [ 15.965505405000073, 43.509100653000147 ], [ 15.965586785000141, 43.506170966000113 ], [ 15.96436608200014, 43.503892320000048 ], [ 15.959483269000145, 43.503973700000117 ], [ 15.961273634000065, 43.515041408000073 ], [ 15.966563347000118, 43.516913153000118 ], [ 15.974375847000118, 43.516750393000066 ], [ 15.983653191000059, 43.521063544000086 ], [ 15.986989780000101, 43.527289130000028 ], [ 15.98422285200013, 43.532049872000115 ], [ 15.982269727000102, 43.53729889500012 ], [ 15.98731530000012, 43.544907945000048 ], [ 15.97095787900011, 43.543524481000063 ], [ 15.965098504000053, 43.541937567000033 ], [ 15.959483269000145, 43.538153387000122 ], [ 15.956228061000104, 43.54791901200015 ], [ 15.948090040000096, 43.5528832050001 ], [ 15.925303582000083, 43.558579820000077 ], [ 15.941905144000117, 43.560003973000065 ], [ 15.944183790000096, 43.566717841000113 ], [ 15.93539472700013, 43.572943427000055 ], [ 15.917979363000057, 43.572902736000074 ], [ 15.917979363000057, 43.579087632000054 ], [ 15.922618035000085, 43.581122137000065 ], [ 15.92758222700013, 43.584295966000141 ], [ 15.932139519000089, 43.586574611000103 ], [ 15.92212975400011, 43.591986395000063 ], [ 15.917979363000057, 43.593329169000143 ], [ 15.925303582000083, 43.599554755000113 ], [ 15.917979363000057, 43.606390692000119 ], [ 15.925303582000083, 43.613836981000091 ], [ 15.918955925000148, 43.628729559000149 ], [ 15.929535352000102, 43.634222723000093 ], [ 15.966319207000083, 43.63373444200009 ], [ 15.966319207000083, 43.641180731000063 ], [ 15.921397332000083, 43.648138739000061 ], [ 15.904795769000117, 43.648016669000086 ], [ 15.916758660000141, 43.65363190300009 ], [ 15.926605665000068, 43.653021552000027 ], [ 15.934825066000059, 43.649847723000065 ], [ 15.94239342500012, 43.648016669000086 ], [ 15.952972852000073, 43.650864976000051 ], [ 15.95142662900011, 43.657416083000115 ], [ 15.942637566000144, 43.664292710000026 ], [ 15.932139519000089, 43.668443101000079 ], [ 15.945974155000101, 43.672308661000059 ], [ 15.952403191000087, 43.679754950000145 ], [ 15.950450066000144, 43.688544012000122 ], [ 15.938975457000112, 43.696437893000095 ], [ 15.939707879000139, 43.677639065000037 ], [ 15.931162957000112, 43.676499742000104 ], [ 15.906748894000145, 43.691473700000117 ], [ 15.892914259000065, 43.700506903000147 ], [ 15.885996941000059, 43.700344143000095 ], [ 15.876800977000102, 43.701646226000079 ], [ 15.870778842000078, 43.703192450000117 ], [ 15.864512566000144, 43.708156643000066 ], [ 15.850759311000019, 43.723944403000118 ], [ 15.844004754000082, 43.729925848000036 ], [ 15.803477410000056, 43.746405341000113 ], [ 15.792165561000076, 43.754461981000148 ], [ 15.771006707000083, 43.759955145000092 ], [ 15.706309441000144, 43.763413804000081 ], [ 15.692637566000116, 43.774603583000086 ], [ 15.682139519000145, 43.797186591000084 ], [ 15.65845787900011, 43.805080471000039 ], [ 15.632985873000109, 43.810451565000093 ], [ 15.61744225400011, 43.825506903000118 ], [ 15.647308790000096, 43.815863348000065 ], [ 15.663096550000148, 43.812974351000108 ], [ 15.678884311000104, 43.81183502800009 ], [ 15.678884311000104, 43.819281317000062 ], [ 15.673024936000047, 43.82123444200009 ], [ 15.668955925000091, 43.820990302000055 ], [ 15.666758660000113, 43.819973049000097 ], [ 15.665782097000118, 43.819281317000062 ], [ 15.638845248000081, 43.836127020000063 ], [ 15.574066602000073, 43.859523830000043 ], [ 15.546885613000143, 43.876572984000106 ], [ 15.545176629000139, 43.877630927000055 ], [ 15.52491295700014, 43.90045807500006 ], [ 15.51221764400006, 43.911078192000119 ], [ 15.497731967000107, 43.915513414000074 ], [ 15.482432488000143, 43.917141018000095 ], [ 15.473643425000091, 43.919134833000058 ], [ 15.466075066000144, 43.921698309000149 ], [ 15.455088738000086, 43.928045966000084 ], [ 15.449717644000117, 43.934393622000115 ], [ 15.445648634000065, 43.941351630000113 ], [ 15.438731316000087, 43.949652411000088 ], [ 15.384043816000116, 43.997381903000147 ], [ 15.358083530000044, 44.025702216000084 ], [ 15.339610222000118, 44.039374091000113 ], [ 15.319509311000076, 44.045233466000056 ], [ 15.277598504000082, 44.082342841000084 ], [ 15.278330925000091, 44.085598049000126 ], [ 15.233246290000125, 44.120917059000149 ], [ 15.222015821000127, 44.125637111000074 ], [ 15.212901238000143, 44.131048895000092 ], [ 15.208832227000073, 44.138169664000159 ], [ 15.212738477000073, 44.148260809000121 ], [ 15.19695071700005, 44.156480210000112 ], [ 15.144541863000143, 44.1954613300001 ], [ 15.160411004000082, 44.213202216000084 ], [ 15.152191602000102, 44.23529694200009 ], [ 15.131521030000073, 44.254624742000104 ], [ 15.110362175000148, 44.264349677000055 ], [ 15.122243686000104, 44.27480703300013 ], [ 15.140635613000143, 44.282456773000078 ], [ 15.157562696000127, 44.28034088700015 ], [ 15.16504967500012, 44.261216539000074 ], [ 15.176605665000125, 44.249945380000085 ], [ 15.197927280000101, 44.257310289000074 ], [ 15.207774285000113, 44.272772528000118 ], [ 15.185394727000102, 44.285386460000083 ], [ 15.19304446700005, 44.286851304000052 ], [ 15.194183790000068, 44.288641669000143 ], [ 15.194590691000087, 44.288804429000109 ], [ 15.19906660200013, 44.285386460000083 ], [ 15.206553582000112, 44.285386460000083 ], [ 15.201182488000143, 44.297512111000074 ], [ 15.198090040000068, 44.301662502000127 ], [ 15.247569207000112, 44.277980861000103 ], [ 15.268402540000096, 44.258449611000131 ], [ 15.27955162900011, 44.251776434000064 ], [ 15.295258009000094, 44.250677802000112 ], [ 15.281748894000117, 44.285386460000083 ], [ 15.290537957000083, 44.287420966000113 ], [ 15.294932488000143, 44.290228583000058 ], [ 15.297862175000091, 44.294012762000094 ], [ 15.302744988000143, 44.299139716000113 ], [ 15.289317254000139, 44.302191473000093 ], [ 15.278168165000125, 44.30980052300005 ], [ 15.26889082100007, 44.320461330000072 ], [ 15.26124108200014, 44.332586981000063 ], [ 15.280528191000087, 44.32754140800013 ], [ 15.308604363000086, 44.309271552000055 ], [ 15.33692467500012, 44.301662502000127 ], [ 15.408539259000065, 44.272284247000115 ], [ 15.424489780000073, 44.267971096000124 ], [ 15.503591342000078, 44.259222723000036 ], [ 15.525238477000073, 44.26068756700009 ], [ 15.52865644600007, 44.271795966000141 ], [ 15.514821811000076, 44.278509833000086 ], [ 15.449229363000143, 44.285386460000083 ], [ 15.444183790000125, 44.288478908000073 ], [ 15.414073113000086, 44.316555080000072 ], [ 15.406016472000147, 44.320624091000141 ], [ 15.307953321000127, 44.354396877000127 ], [ 15.293793165000125, 44.364813544000114 ], [ 15.155039910000113, 44.466701565000122 ], [ 15.108083530000101, 44.51386139500012 ], [ 15.080088738000086, 44.536078192000062 ], [ 15.052012566000087, 44.545477606000091 ], [ 15.04786217500012, 44.550360419000057 ], [ 15.015310092000078, 44.569077867000047 ], [ 15.007334832000112, 44.569728908000073 ], [ 15.001312696000099, 44.578517971000068 ], [ 14.90137780000012, 44.690171617000104 ], [ 14.883799675000091, 44.723618882000082 ], [ 14.895192905000073, 44.736151434000064 ], [ 14.89389082100007, 44.750962632000054 ], [ 14.887461785000141, 44.768377997000115 ], [ 14.883799675000091, 44.788763739000089 ], [ 14.881358269000145, 44.844061591000084 ], [ 14.883799675000091, 44.861476955000072 ], [ 14.90528405000012, 44.924627997000144 ], [ 14.914886915000096, 44.939927476000108 ], [ 14.921641472000147, 44.958807684000149 ], [ 14.914317254000139, 44.98143138200011 ], [ 14.85645592500012, 45.076483466000113 ], [ 14.852793816000087, 45.093654690000037 ], [ 14.842539910000141, 45.105536200000088 ], [ 14.827403191000144, 45.113959052000055 ], [ 14.765961134000065, 45.137355861000131 ], [ 14.657888217000078, 45.196600653000118 ], [ 14.606700066000116, 45.244370835000055 ], [ 14.592784050000148, 45.249823309000092 ], [ 14.57601972700013, 45.262274481000119 ], [ 14.568614129000139, 45.275946356000148 ], [ 14.582204623000109, 45.285345770000063 ], [ 14.570811394000117, 45.293646552000055 ], [ 14.534353061000076, 45.312689520000063 ], [ 14.552256707000112, 45.297674872000115 ], [ 14.555430535000085, 45.295884507000054 ], [ 14.551931186000104, 45.288072007000054 ], [ 14.543304884000094, 45.283840236000131 ], [ 14.533050977000073, 45.283880927000112 ], [ 14.524424675000148, 45.288763739000089 ], [ 14.510508660000085, 45.299750067000033 ], [ 14.402354363000114, 45.338609117000047 ], [ 14.363617384000094, 45.34463125200007 ], [ 14.345876498000081, 45.351629950000117 ], [ 14.329763217000107, 45.353989976000079 ], [ 14.31153405000012, 45.343980210000112 ], [ 14.290782097000147, 45.320502020000035 ], [ 14.271983269000089, 45.290106512000065 ], [ 14.258474155000101, 45.255764065000122 ], [ 14.247731967000107, 45.186468817000062 ], [ 14.234711134000122, 45.154567776000121 ], [ 14.234060092000078, 45.153062242000075 ], [ 14.232595248000109, 45.149359442000062 ], [ 14.20923912900011, 45.126369533000073 ], [ 14.179372592000107, 45.134507554000081 ], [ 14.195323113000114, 45.120591539000102 ], [ 14.193125847000147, 45.105617580000072 ], [ 14.180430535000085, 45.091457424000041 ], [ 14.164398634000094, 45.079901434000121 ], [ 14.158213738000114, 45.087347723000093 ], [ 14.154307488000114, 45.078924872000144 ], [ 14.15406334700009, 45.071966864000061 ], [ 14.158213738000114, 45.053208726000108 ], [ 14.154307488000114, 45.054999091000084 ], [ 14.147471550000091, 45.057277736000046 ], [ 14.143890821000127, 45.059393622000059 ], [ 14.143890821000127, 45.053208726000108 ], [ 14.159434441000144, 45.040350653000061 ], [ 14.166188998000081, 45.01894765800013 ], [ 14.16374759200005, 44.995754299000097 ], [ 14.151377800000091, 44.977484442000119 ], [ 14.139903191000144, 44.971340236000131 ], [ 14.13184655000012, 44.972072658000073 ], [ 14.124196811000104, 44.975409247000087 ], [ 14.113291863000114, 44.977484442000119 ], [ 14.10132897200009, 44.974269924000069 ], [ 14.089691602000073, 44.966498114000061 ], [ 14.080414259000122, 44.957261460000112 ], [ 14.075694207000112, 44.949530341000084 ], [ 14.068858269000089, 44.949530341000084 ], [ 14.07162519600007, 44.969061591000084 ], [ 14.079600457000112, 44.977932033000101 ], [ 14.08383222700013, 44.986395575000145 ], [ 14.075694207000112, 45.00482819200009 ], [ 14.054535352000102, 45.018459377000127 ], [ 14.051524285000113, 45.026027736000074 ], [ 14.053070509000065, 45.033148505000057 ], [ 14.051931186000104, 45.038031317000119 ], [ 14.040293816000116, 45.038967190000093 ], [ 14.044118686000019, 45.027167059000121 ], [ 14.039886915000096, 45.009426174000126 ], [ 14.044281446000099, 45.001410223000093 ], [ 14.054698113000086, 44.996527411000116 ], [ 14.064138217000078, 44.995754299000097 ], [ 14.071543816000087, 44.993353583000058 ], [ 14.075694207000112, 44.98371002800009 ], [ 14.064789259000122, 44.976141669000114 ], [ 14.050791863000086, 44.956488348000093 ], [ 14.04444420700014, 44.951402085000055 ], [ 14.040293816000116, 44.956366278000118 ], [ 14.034678582000112, 44.956366278000118 ], [ 14.038747592000078, 44.94940827000012 ], [ 14.040212436000047, 44.941066799000041 ], [ 14.039073113000086, 44.931830145000092 ], [ 14.034678582000112, 44.922308661000088 ], [ 14.026621941000087, 44.924058335000083 ], [ 14.02247155000012, 44.923488674000126 ], [ 14.022634311000104, 44.920599677000084 ], [ 14.027842644000089, 44.915432033000073 ], [ 14.027842644000089, 44.908636786000059 ], [ 14.022715691000087, 44.908270575000145 ], [ 14.021494988000143, 44.907375393000038 ], [ 14.02173912900011, 44.905096747000087 ], [ 14.020518425000091, 44.901109117000104 ], [ 14.010590040000096, 44.905259507000054 ], [ 13.988454623000109, 44.900783596000068 ], [ 13.972666863000143, 44.901109117000104 ], [ 13.980723504000082, 44.896551825000145 ], [ 13.985850457000112, 44.892075914000074 ], [ 13.993011915000068, 44.881293036000088 ], [ 13.98617597700013, 44.881293036000088 ], [ 13.98617597700013, 44.875067450000117 ], [ 13.993011915000068, 44.875067450000117 ], [ 13.993011915000068, 44.867621161000059 ], [ 13.985850457000112, 44.864162502000042 ], [ 13.981293165000068, 44.859808661000059 ], [ 13.972666863000143, 44.847154039000074 ], [ 13.974619988000114, 44.839667059000121 ], [ 13.976328972000118, 44.837469794000114 ], [ 13.97624759200005, 44.834906317000119 ], [ 13.972666863000143, 44.826646226000022 ], [ 13.983246290000096, 44.827053127000127 ], [ 13.989431186000076, 44.825100002000099 ], [ 13.99398847700013, 44.820502020000063 ], [ 14.000010613000114, 44.813055731000063 ], [ 13.963877800000091, 44.811835028000147 ], [ 13.946299675000148, 44.81378815300009 ], [ 13.931651238000143, 44.820502020000063 ], [ 13.929698113000114, 44.816351630000113 ], [ 13.92953535200013, 44.815252997000059 ], [ 13.92481530000012, 44.813055731000063 ], [ 13.918711785000141, 44.829046942000062 ], [ 13.90967858200014, 44.830959377000127 ], [ 13.899587436000076, 44.829046942000062 ], [ 13.89014733200014, 44.833482164000131 ], [ 13.883148634000065, 44.826646226000022 ], [ 13.893890821000099, 44.823391018000095 ], [ 13.904307488000086, 44.817287502000099 ], [ 13.909353061000104, 44.808986721000124 ], [ 13.904470248000052, 44.798773505000085 ], [ 13.91342207100007, 44.782416083000058 ], [ 13.917979363000114, 44.778265692000119 ], [ 13.903168165000125, 44.77240631700009 ], [ 13.89942467500012, 44.781968492000075 ], [ 13.899750196000127, 44.798285223000093 ], [ 13.896983269000089, 44.813055731000063 ], [ 13.889659050000148, 44.817084052000055 ], [ 13.860036655000044, 44.825669664000159 ], [ 13.84913170700014, 44.826646226000022 ], [ 13.85124759200005, 44.830023505000057 ], [ 13.853851759000065, 44.837062893000123 ], [ 13.855967644000145, 44.840277411000088 ], [ 13.852793816000087, 44.840765692000062 ], [ 13.845550977000073, 44.840155341000113 ], [ 13.842295769000117, 44.840277411000088 ], [ 13.84913170700014, 44.847154039000074 ], [ 13.842295769000117, 44.854641018000066 ], [ 13.83139082100007, 44.852728583000086 ], [ 13.815684441000087, 44.856594143000095 ], [ 13.799327019000089, 44.864569403000147 ], [ 13.787119988000086, 44.875067450000117 ], [ 13.794606967000078, 44.881293036000088 ], [ 13.804860873000081, 44.870591539000159 ], [ 13.819590691000087, 44.867661851000051 ], [ 13.833750847000118, 44.873358466000113 ], [ 13.842295769000117, 44.888128973000093 ], [ 13.815277540000096, 44.883530992000075 ], [ 13.804860873000081, 44.885402736000131 ], [ 13.794606967000078, 44.894964911000116 ], [ 13.794606967000078, 44.901109117000104 ], [ 13.79867597700013, 44.903957424000126 ], [ 13.803477410000113, 44.910630601000079 ], [ 13.80811608200014, 44.915432033000073 ], [ 13.796722852000073, 44.924872137000094 ], [ 13.774099155000101, 44.96381256700009 ], [ 13.732758009000094, 44.994940497000087 ], [ 13.681325717000078, 45.046372789000074 ], [ 13.673350457000112, 45.051092841000084 ], [ 13.660817905000044, 45.061224677000055 ], [ 13.643809441000144, 45.070502020000092 ], [ 13.623220248000024, 45.073065497000087 ], [ 13.627696160000085, 45.079413153000118 ], [ 13.633067254000139, 45.089422919000114 ], [ 13.636892123000081, 45.093573309000149 ], [ 13.612559441000087, 45.117865302000027 ], [ 13.638519727000102, 45.130031643000123 ], [ 13.726247592000078, 45.134507554000081 ], [ 13.706716342000107, 45.141099351000051 ], [ 13.683604363000143, 45.143377997000115 ], [ 13.636892123000081, 45.142035223000036 ], [ 13.611989780000044, 45.136786200000145 ], [ 13.600596550000148, 45.137274481000148 ], [ 13.595957879000139, 45.14541250200007 ], [ 13.597911004000082, 45.155951239000117 ], [ 13.600596550000148, 45.164618231000119 ], [ 13.599375847000147, 45.171291408000073 ], [ 13.589121941000116, 45.175482489000089 ], [ 13.593760613000143, 45.182277736000131 ], [ 13.594411655000101, 45.187323309000149 ], [ 13.590586785000085, 45.191799221000124 ], [ 13.58228600400011, 45.196600653000118 ], [ 13.58228600400011, 45.202826239000061 ], [ 13.590505405000101, 45.206488348000121 ], [ 13.594493035000085, 45.212632554000109 ], [ 13.594248894000117, 45.220770575000117 ], [ 13.589121941000116, 45.230698960000112 ], [ 13.595713738000086, 45.240545966000141 ], [ 13.595225457000112, 45.250799872000059 ], [ 13.588226759000122, 45.259588934000121 ], [ 13.575450066000087, 45.264878648000106 ], [ 13.578786655000101, 45.270982164000102 ], [ 13.584239129000139, 45.276068427000112 ], [ 13.592051629000139, 45.279120184000121 ], [ 13.602712436000076, 45.279120184000121 ], [ 13.602712436000076, 45.285345770000063 ], [ 13.592539910000113, 45.288804429000081 ], [ 13.584646030000073, 45.293198960000055 ], [ 13.578949415000068, 45.29901764500012 ], [ 13.575450066000087, 45.306463934000092 ], [ 13.585703972000118, 45.307806708000086 ], [ 13.594493035000085, 45.311102606000119 ], [ 13.609548373000081, 45.320135809000121 ], [ 13.597911004000082, 45.324367580000043 ], [ 13.571055535000113, 45.325018622000087 ], [ 13.561778191000144, 45.326361395000092 ], [ 13.55062910200013, 45.334295966000141 ], [ 13.541270379000082, 45.346136786000116 ], [ 13.540537957000055, 45.356756903000147 ], [ 13.554942254000139, 45.361070054000052 ], [ 13.554942254000139, 45.3673363300001 ], [ 13.543142123000052, 45.376166083000058 ], [ 13.51335696700005, 45.436224677000055 ], [ 13.51539147200009, 45.438137111000103 ], [ 13.518565300000148, 45.440334377000099 ], [ 13.520762566000144, 45.443019924000097 ], [ 13.515961134000065, 45.447455145000063 ], [ 13.515635613000114, 45.448146877000099 ], [ 13.51783287900011, 45.449774481000119 ], [ 13.520762566000144, 45.457261460000083 ], [ 13.504567905000101, 45.483872789000131 ], [ 13.501475457000112, 45.498602606000119 ], [ 13.507090691000116, 45.511908270000035 ], [ 13.51335696700005, 45.511908270000035 ], [ 13.523122592000107, 45.506252346000068 ], [ 13.568614129000082, 45.490790106000119 ], [ 13.589528842000135, 45.488836981000091 ], [ 13.629017781000101, 45.458983460000113 ], [ 13.65996979300013, 45.459977951000056 ], [ 13.759294068000202, 45.463169251000053 ], [ 13.806526327000142, 45.442136943000023 ], [ 13.819858846000159, 45.432628480000133 ], [ 13.835568481000138, 45.429114482000173 ], [ 13.88900191200014, 45.423636780000024 ], [ 13.89964725700014, 45.429217835000102 ], [ 13.908432251000136, 45.438881327000061 ], [ 13.923005004000089, 45.448958232000095 ], [ 13.969823852000104, 45.462962545000082 ], [ 13.982639608000085, 45.475313212000131 ], [ 13.961452270000137, 45.493141581000074 ], [ 13.961452270000137, 45.503890279000117 ], [ 13.964966268000182, 45.510969951000121 ], [ 13.971890910000155, 45.514225566000036 ], [ 13.987476490000176, 45.511908790000078 ], [ 14.013955526000188, 45.507972717000101 ], [ 14.028321574000103, 45.502650045000067 ], [ 14.041550741000094, 45.49319325800009 ], [ 14.041550741000094, 45.493141581000074 ], [ 14.066665487000108, 45.480274150000085 ], [ 14.092917114000159, 45.473917948000079 ], [ 14.116747016000176, 45.472997875000047 ], [ 14.117320712000122, 45.472975725000097 ], [ 14.119685506000138, 45.472884420000085 ], [ 14.145523722000149, 45.4762433880001 ], [ 14.193066040000161, 45.491901347000137 ], [ 14.218697551000133, 45.497172344000077 ], [ 14.240608358000173, 45.493348288000035 ], [ 14.280399211000173, 45.481100973000125 ], [ 14.326804646000198, 45.47489980100012 ], [ 14.372796671000089, 45.477845358000209 ], [ 14.411243937000137, 45.49319325800009 ], [ 14.429744100000164, 45.505388896000099 ], [ 14.468914835000106, 45.52559438100009 ], [ 14.482144002000098, 45.542440898000095 ], [ 14.487414999000151, 45.556600240000208 ], [ 14.491501829000157, 45.579164764000083 ], [ 14.492272583000158, 45.583420309000118 ], [ 14.498577108000177, 45.596184388000168 ], [ 14.507878866000112, 45.605847880000098 ], [ 14.533096964000151, 45.625691631000095 ], [ 14.543638956000109, 45.636440329000024 ], [ 14.556144654000121, 45.656697490000042 ], [ 14.563896118000116, 45.662691955000142 ], [ 14.569094979000141, 45.664251613000047 ], [ 14.580949341000149, 45.667807922000051 ], [ 14.591904744000118, 45.663363750000215 ], [ 14.594075155000127, 45.64801584900006 ], [ 14.592938273000101, 45.629670716000092 ], [ 14.593868449000155, 45.616183167000102 ], [ 14.603066853000172, 45.603574117000093 ], [ 14.615985962000167, 45.594065654000119 ], [ 14.650299113000187, 45.574842021000094 ], [ 14.6573271070001, 45.572774964000203 ], [ 14.663674874000151, 45.57018702800012 ], [ 14.664045044000119, 45.570036113000086 ], [ 14.669832804000094, 45.564558411000078 ], [ 14.671693156000117, 45.556806946000094 ], [ 14.668179158000157, 45.539133607000096 ], [ 14.668489217000143, 45.533965963000085 ], [ 14.688332967000122, 45.522028707000047 ], [ 14.781143839000151, 45.493348288000035 ], [ 14.781247192000166, 45.493348288000035 ], [ 14.781350545000095, 45.49319325800009 ], [ 14.781453898000137, 45.493141581000074 ], [ 14.797163533000116, 45.465184632000174 ], [ 14.83881473800011, 45.458983460000113 ], [ 14.881602823000151, 45.46978383400004 ], [ 14.900826456000175, 45.493141581000074 ], [ 14.904443807000149, 45.514432272000064 ], [ 14.922633911000105, 45.514949036000118 ], [ 14.945371541000071, 45.504510397000089 ], [ 14.962631470000161, 45.493141581000074 ], [ 14.977340822000144, 45.491728455000057 ], [ 14.986299275000192, 45.490867818000154 ], [ 14.997461385000122, 45.487198792000086 ], [ 15.007383260000125, 45.480842591000041 ], [ 15.05616581200016, 45.479912415000101 ], [ 15.066128234000132, 45.473933723000115 ], [ 15.139261515000157, 45.430044658000057 ], [ 15.184220011000065, 45.425600485000118 ], [ 15.225849152000137, 45.436449693000029 ], [ 15.281578410000122, 45.450973612000027 ], [ 15.314031209000149, 45.450508525000103 ], [ 15.325193318000174, 45.45283396400005 ], [ 15.333874960000117, 45.458518372000086 ], [ 15.351755004000097, 45.476140036000075 ], [ 15.361366821000104, 45.482031149000065 ], [ 15.311033977000136, 45.505905660000067 ], [ 15.296667928000119, 45.522958883000101 ], [ 15.288606405000138, 45.544559632000144 ], [ 15.282611938000116, 45.570604553000052 ], [ 15.282178582000142, 45.571494074000086 ], [ 15.276720825000098, 45.582696839000036 ], [ 15.269589477000153, 45.593445537000051 ], [ 15.26855594800017, 45.601662089000072 ], [ 15.281061646000182, 45.606157939000084 ], [ 15.287882934000123, 45.610343730000025 ], [ 15.291603637000151, 45.618250224000079 ], [ 15.297391398000116, 45.625691631000095 ], [ 15.326743612000172, 45.632254538000169 ], [ 15.339145955000163, 45.636905417000051 ], [ 15.353098592000151, 45.64031606000016 ], [ 15.373769165000169, 45.64021270800005 ], [ 15.368291463000077, 45.649049378000129 ], [ 15.351961711000143, 45.668066305000124 ], [ 15.3500344630001, 45.669619116000078 ], [ 15.333874960000117, 45.682639059000067 ], [ 15.330774373000082, 45.684551087000088 ], [ 15.327053670000168, 45.683155823000035 ], [ 15.314961385000089, 45.680882060000087 ], [ 15.310413859000164, 45.678194885000082 ], [ 15.309070272000099, 45.674164124000086 ], [ 15.304936158000174, 45.672148743000022 ], [ 15.291913696000137, 45.675559388000138 ], [ 15.283025350000116, 45.680106913000074 ], [ 15.277754354000166, 45.68501617500003 ], [ 15.267832479000077, 45.69845204700006 ], [ 15.258220663000174, 45.705118307000092 ], [ 15.250882609000172, 45.707650452000067 ], [ 15.248918904000135, 45.711836243000093 ], [ 15.249912989000137, 45.713731743000082 ], [ 15.255016723000097, 45.72346344000006 ], [ 15.263491658000106, 45.730388083000051 ], [ 15.303799276000149, 45.746149394000028 ], [ 15.331031283000129, 45.752485554000103 ], [ 15.429062947000176, 45.775294902000056 ], [ 15.429754502000122, 45.775691354000074 ], [ 15.441051879000156, 45.78216786800003 ], [ 15.439501587000137, 45.791676330000101 ], [ 15.435574178000167, 45.802114970000034 ], [ 15.440328410000149, 45.811468404000081 ], [ 15.451283813000117, 45.815137431000082 ], [ 15.462549275000185, 45.814207255000113 ], [ 15.473918091000172, 45.811571757000095 ], [ 15.485390259000098, 45.810176494000117 ], [ 15.495312133000198, 45.812656963000094 ], [ 15.513915649000154, 45.823405661000024 ], [ 15.523527466000161, 45.826816305000065 ], [ 15.549748079000096, 45.823692780000059 ], [ 15.587296183000177, 45.819219870000168 ], [ 15.626053508000126, 45.820201721000061 ], [ 15.645587199000119, 45.824129130000117 ], [ 15.666051066000165, 45.831673890000062 ], [ 15.676076294000097, 45.84169911700009 ], [ 15.675456177000143, 45.855961813000064 ], [ 15.663673950000145, 45.876063945000041 ], [ 15.659436483000093, 45.888828024000091 ], [ 15.663363892000149, 45.900816956000071 ], [ 15.670391887000164, 45.912650859000067 ], [ 15.675559530000072, 45.925156556000061 ], [ 15.677109822000176, 45.941796366000077 ], [ 15.675380807000124, 45.972486394000086 ], [ 15.674215943000206, 45.993162740000045 ], [ 15.674319295000117, 45.993317770000075 ], [ 15.681967407000116, 46.013523255000067 ], [ 15.693646281000099, 46.025770570000091 ], [ 15.697987101000166, 46.03620920800013 ], [ 15.692879847000171, 46.041635666000062 ], [ 15.683931112000153, 46.051143697000086 ], [ 15.671735474000116, 46.057396546000106 ], [ 15.643726847000124, 46.065509746000103 ], [ 15.631531209000116, 46.070574036000082 ], [ 15.623604838000119, 46.076415298000214 ], [ 15.603832641000082, 46.09098622700013 ], [ 15.589880005000083, 46.113517151000039 ], [ 15.589983358000126, 46.138683574000098 ], [ 15.604349406000125, 46.167002258000068 ], [ 15.622849568000134, 46.191703594000174 ], [ 15.626571312000152, 46.195209748000124 ], [ 15.639799438000153, 46.207671610000048 ], [ 15.661296834000098, 46.215319723000093 ], [ 15.677975292000127, 46.214462419000128 ], [ 15.749766886000117, 46.210772197000082 ], [ 15.768887166000127, 46.219350484000088 ], [ 15.789144328000134, 46.243069967000039 ], [ 15.799526193000162, 46.24860696100005 ], [ 15.803096965000123, 46.250511373000066 ], [ 15.818289835000144, 46.255523987000046 ], [ 15.83420617600018, 46.258366191000093 ], [ 15.879323324000069, 46.259308094000048 ], [ 15.880894659000148, 46.259340899000094 ], [ 15.883712199000115, 46.259399720000076 ], [ 15.918903311000122, 46.27282717100006 ], [ 15.948721150000097, 46.284204407000018 ], [ 15.982000773000124, 46.288338522000046 ], [ 15.993668240000147, 46.290613311000058 ], [ 15.998433879000089, 46.291542460000116 ], [ 16.019207804000132, 46.298828837000102 ], [ 16.038948201000096, 46.308440654000023 ], [ 16.04992239800012, 46.316734615000044 ], [ 16.052384073000155, 46.318595073000083 ], [ 16.059618774000114, 46.3323151660001 ], [ 16.059722127000157, 46.345311788000046 ], [ 16.057448365000141, 46.359651998000018 ], [ 16.057965128000177, 46.377532044000091 ], [ 16.088654305000176, 46.373085600000067 ], [ 16.094345337000163, 46.372261047000066 ], [ 16.106024211000118, 46.373733826000048 ], [ 16.115532674000121, 46.379289042000053 ], [ 16.123180786000177, 46.38688547800011 ], [ 16.131552368000172, 46.393060811000183 ], [ 16.143851359000109, 46.394714458000138 ], [ 16.153566528000141, 46.391433004000064 ], [ 16.177544393000147, 46.375594178000071 ], [ 16.191807088000132, 46.369780579000079 ], [ 16.208653605000109, 46.367093404000045 ], [ 16.217128540000203, 46.367351787000118 ], [ 16.252785279000193, 46.373423767000062 ], [ 16.275626262000117, 46.373165385000178 ], [ 16.28027714000018, 46.376214294000121 ], [ 16.279936481000135, 46.378661362000074 ], [ 16.278726847000144, 46.387350566000137 ], [ 16.274075968000176, 46.392104798000034 ], [ 16.25702274600016, 46.399907939000073 ], [ 16.250924927000199, 46.40499806800004 ], [ 16.248237752000165, 46.413343811000104 ], [ 16.25009810300017, 46.429441020000084 ], [ 16.249374634000077, 46.437528382000167 ], [ 16.23748905400015, 46.465071920000057 ], [ 16.233664999000098, 46.478740336000087 ], [ 16.234187647000113, 46.484892336000073 ], [ 16.234905233000148, 46.493338928000057 ], [ 16.260931084000134, 46.513576112000081 ], [ 16.263947388000133, 46.515921530000085 ], [ 16.295366659000166, 46.524448141000093 ], [ 16.310662883000134, 46.530985209000065 ], [ 16.329989868000098, 46.535455221000078 ], [ 16.340276431000149, 46.543827132000089 ], [ 16.344149210000126, 46.546979065000201 ], [ 16.351254482000144, 46.539922460000057 ], [ 16.351693970000071, 46.539485982000073 ], [ 16.35789514200016, 46.546979065000201 ], [ 16.369470662000197, 46.540571188000072 ] ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0.000000, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0.000000, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1.000000, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "brk_group": null, "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "formal_fr": null, "note_adm0": null, "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 2.000000, "mapcolor9": 3.000000, "mapcolor13": 11.000000, "pop_est": 1804838.000000, "gdp_md_est": 5352.000000, "pop_year": -99.000000, "lastcensus": 1981.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99.000000, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.864700154000104, 43.217337342 ], [ 20.861599569000134, 43.217518209000076 ], [ 20.851470988000187, 43.219817810999984 ], [ 20.839998820000176, 43.212092184000085 ], [ 20.84061893700013, 43.206976217 ], [ 20.839068644000122, 43.19245514000005 ], [ 20.836071411000205, 43.179432678000012 ], [ 20.832040649000106, 43.178605855000086 ], [ 20.838551880000182, 43.170466816999976 ], [ 20.912494133000138, 43.138805129000048 ], [ 20.993431297000143, 43.104148257000105 ], [ 21.00515669800015, 43.099127502000016 ], [ 21.025827271000168, 43.093365580000125 ], [ 21.092593221000101, 43.09067840599999 ], [ 21.108509562000137, 43.081557516000117 ], [ 21.124012491000144, 43.058277283 ], [ 21.139308716000102, 43.005825704000046 ], [ 21.147887003000136, 42.992622376000071 ], [ 21.165353638000084, 42.985103455000029 ], [ 21.179409627000098, 42.990581157000094 ], [ 21.193052206000118, 42.997893372000078 ], [ 21.209795369000148, 42.995877991000043 ], [ 21.225298299000173, 42.973553772000088 ], [ 21.226745240000156, 42.942522075000056 ], [ 21.232429647000117, 42.910896098000052 ], [ 21.260541626000133, 42.886556499000051 ], [ 21.271600383000134, 42.884282735000028 ], [ 21.294958130000083, 42.884386088000042 ], [ 21.306326945000166, 42.882448222000022 ], [ 21.316972290000166, 42.8776164760001 ], [ 21.336402628000144, 42.865472514000118 ], [ 21.346737915000148, 42.860847473000064 ], [ 21.378777303000163, 42.855292257000059 ], [ 21.398931111000138, 42.854568787000062 ], [ 21.408439575000131, 42.846998190000079 ], [ 21.408418886000106, 42.841743208000054 ], [ 21.408336222000088, 42.820746562000068 ], [ 21.404098755000149, 42.803977559000089 ], [ 21.390559529000171, 42.770413717000082 ], [ 21.38714888500013, 42.754962464000073 ], [ 21.383944946000071, 42.749975688000035 ], [ 21.379190714000174, 42.747004293000117 ], [ 21.378673951000138, 42.744136251000043 ], [ 21.388699178000167, 42.739046123000151 ], [ 21.405545695000143, 42.735299581000049 ], [ 21.41780040600014, 42.735570162000045 ], [ 21.441822550000097, 42.736100566000061 ], [ 21.542488240000154, 42.725816956000074 ], [ 21.56522587000012, 42.720184225000025 ], [ 21.580522095000077, 42.71021067300012 ], [ 21.612664836000107, 42.680393372000111 ], [ 21.629407999000165, 42.672202657000184 ], [ 21.64408410700014, 42.672306010000028 ], [ 21.68738895700011, 42.686827088000058 ], [ 21.708886352000064, 42.687188823000071 ], [ 21.738651977000131, 42.682150370000016 ], [ 21.744249788000133, 42.679424528000055 ], [ 21.764386840000128, 42.669618836000012 ], [ 21.772758422000123, 42.647501323000085 ], [ 21.767074016000066, 42.638716329 ], [ 21.756532023000204, 42.6336262 ], [ 21.744543091000139, 42.629647116000029 ], [ 21.734724569000093, 42.624246928000076 ], [ 21.735551392000104, 42.621275534000063 ], [ 21.730073690000125, 42.601018372000055 ], [ 21.728833455000171, 42.598305359000022 ], [ 21.726973103000176, 42.596393331 ], [ 21.720151815000122, 42.593887024000111 ], [ 21.718291463000128, 42.591018982000037 ], [ 21.719738403000122, 42.586678162000055 ], [ 21.726766398000109, 42.57794484499999 ], [ 21.727696574000078, 42.574146627000061 ], [ 21.717671346000145, 42.551150615000012 ], [ 21.6678552650001, 42.49009491000001 ], [ 21.627857706000128, 42.460380961000055 ], [ 21.618969360000136, 42.449244691000018 ], [ 21.61690230300016, 42.433922628000062 ], [ 21.621863240000124, 42.402167460000044 ], [ 21.617419068000117, 42.386638692000105 ], [ 21.596645141000153, 42.372091777000065 ], [ 21.537320597000132, 42.358630066000018 ], [ 21.51602990700016, 42.341938579000072 ], [ 21.514893026000152, 42.317831523000109 ], [ 21.55385705600014, 42.273984070000097 ], [ 21.564065710000136, 42.246289302000037 ], [ 21.561815226000192, 42.247164002 ], [ 21.519853963000088, 42.239024964000095 ], [ 21.499286743000113, 42.238663228000092 ], [ 21.481510051000072, 42.247784119000073 ], [ 21.471973165000151, 42.239130279000108 ], [ 21.467557413000094, 42.235123393000038 ], [ 21.457222127000165, 42.237035421000058 ], [ 21.447920369000144, 42.244140931000089 ], [ 21.436344848000203, 42.246879782000036 ], [ 21.419911743000142, 42.240058492000088 ], [ 21.421462036000065, 42.231351013000022 ], [ 21.428696737000138, 42.222566020000045 ], [ 21.429833618000146, 42.2158480840001 ], [ 21.419084920000131, 42.215021261000089 ], [ 21.384255005000142, 42.224943135999979 ], [ 21.366788371000098, 42.223857930000065 ], [ 21.360602065000108, 42.220114233000032 ], [ 21.353765910000078, 42.215977275000029 ], [ 21.294958130000083, 42.148978781000039 ], [ 21.293717895000157, 42.140167949000045 ], [ 21.295784953000123, 42.13479360000008 ], [ 21.298782186000125, 42.129419251000115 ], [ 21.300332479000161, 42.120892639 ], [ 21.301262654000197, 42.100609640000101 ], [ 21.300796361000067, 42.098425427000024 ], [ 21.299298950000065, 42.09141123500018 ], [ 21.288860311000121, 42.089705912000028 ], [ 21.245727456000083, 42.096167109000049 ], [ 21.237803996000167, 42.097354024000111 ], [ 21.229298016000172, 42.103822113000149 ], [ 21.225401652000187, 42.10678497300006 ], [ 21.216203247000095, 42.121151022000163 ], [ 21.199873494000144, 42.141149801000012 ], [ 21.164423462000116, 42.167039694000039 ], [ 21.126389607000192, 42.188924662 ], [ 21.112953735000133, 42.194402364000069 ], [ 21.106235799000103, 42.195797628000065 ], [ 21.098484334000204, 42.195952657000106 ], [ 21.074403117000173, 42.184454651000067 ], [ 21.040939978000125, 42.159969894000028 ], [ 21.029237915000095, 42.151407573000085 ], [ 21.00391646300011, 42.141950786000024 ], [ 20.975145181000158, 42.134658012000045 ], [ 20.904170441000133, 42.116667755000037 ], [ 20.810543253000077, 42.092935690000104 ], [ 20.784911743000123, 42.082031962000059 ], [ 20.765378052000102, 42.064332785000033 ], [ 20.755352824000084, 42.042783712000073 ], [ 20.743053833000147, 41.993484395000081 ], [ 20.741813598000192, 41.970772603000029 ], [ 20.751439128000186, 41.940337784000093 ], [ 20.754422648000116, 41.930904236000089 ], [ 20.751052494000163, 41.910217695000085 ], [ 20.750495240000163, 41.906797180000126 ], [ 20.739953247000187, 41.888038635000044 ], [ 20.723313436000154, 41.866618755000019 ], [ 20.71439819800014, 41.859162991000062 ], [ 20.702952921000133, 41.849591369999985 ], [ 20.681455525000104, 41.844010316000066 ], [ 20.671843709000171, 41.849307150000101 ], [ 20.652826783000108, 41.869280091000036 ], [ 20.643421672000073, 41.873646749000017 ], [ 20.637013793000136, 41.870365295000028 ], [ 20.626161743000182, 41.855198263 ], [ 20.618720337000155, 41.850521546000039 ], [ 20.602390584000119, 41.849875591000057 ], [ 20.590298299000125, 41.854733175 ], [ 20.567147258000148, 41.873181662 ], [ 20.567767375000102, 41.88051971499999 ], [ 20.562703084000134, 41.892844544000042 ], [ 20.562496379000095, 41.90010508200001 ], [ 20.567250611000162, 41.91217153000008 ], [ 20.573348430000124, 41.917675070000087 ], [ 20.580583130000093, 41.921731669000081 ], [ 20.588748006000117, 41.929586488000041 ], [ 20.59928999800016, 41.947879944000078 ], [ 20.59928999800016, 41.960566509000046 ], [ 20.594329061000138, 41.973718160000033 ], [ 20.589678182000171, 41.993639425000026 ], [ 20.558258911000138, 42.055108541000038 ], [ 20.552161092000176, 42.073789572000095 ], [ 20.551954386000205, 42.105803122 ], [ 20.549370565000117, 42.123476461000024 ], [ 20.538621867000188, 42.150115662000047 ], [ 20.500794719000112, 42.211223043000047 ], [ 20.48167443900013, 42.230705058000041 ], [ 20.473664576000147, 42.237123002000033 ], [ 20.456973104000099, 42.250497132000106 ], [ 20.333363078000133, 42.31788320000004 ], [ 20.317963501000122, 42.319821065000042 ], [ 20.249647257000078, 42.318606669000019 ], [ 20.23776167800014, 42.319924419000074 ], [ 20.229596802000117, 42.326719869000044 ], [ 20.220915161000164, 42.343101298000079 ], [ 20.21946822100017, 42.350206808000024 ], [ 20.22122522000015, 42.363720194999985 ], [ 20.218848104000102, 42.371445822000169 ], [ 20.213060343000137, 42.377517802000028 ], [ 20.197454061000172, 42.387439677000117 ], [ 20.192803182000119, 42.393692526000024 ], [ 20.19404341600017, 42.400100403000067 ], [ 20.204378703000174, 42.411830953000049 ], [ 20.204688761000142, 42.420099182 ], [ 20.199727824000121, 42.427798971000101 ], [ 20.186291952000147, 42.437436625000117 ], [ 20.180814249000065, 42.443095195000041 ], [ 20.152702271000123, 42.493402202000112 ], [ 20.152702271000123, 42.493428040000111 ], [ 20.152598918000109, 42.493608907000066 ], [ 20.152598918000109, 42.49371226 ], [ 20.152392212000137, 42.49371226 ], [ 20.135545695000161, 42.509628601000117 ], [ 20.085626261000101, 42.530014954000052 ], [ 20.064955688000083, 42.546758118000014 ], [ 20.077047973000077, 42.55990977 ], [ 20.078184855000188, 42.572906393000011 ], [ 20.075394328000129, 42.586962382000053 ], [ 20.075704386000126, 42.603085430000107 ], [ 20.079218384000171, 42.611250305000027 ], [ 20.09058719900014, 42.627347514 ], [ 20.103919718000071, 42.653108216000106 ], [ 20.101956014000137, 42.656673889999979 ], [ 20.094204549000125, 42.666983336999976 ], [ 20.037006251000093, 42.707363097000041 ], [ 20.036120239000155, 42.707988587000017 ], [ 20.024751424000073, 42.723414002000197 ], [ 20.026508423000138, 42.743206074999989 ], [ 20.034673299000161, 42.751422628000029 ], [ 20.05563844800011, 42.76386622900003 ], [ 20.065059041000126, 42.769457703000029 ], [ 20.076324503000166, 42.773436789000101 ], [ 20.112084595000113, 42.766537985000042 ], [ 20.14949833100016, 42.749872335000106 ], [ 20.18339807100017, 42.742508443000105 ], [ 20.208409464000169, 42.763282369000137 ], [ 20.209959757000092, 42.772971701000074 ], [ 20.208409464000169, 42.782092591000065 ], [ 20.209236288000085, 42.791704407000054 ], [ 20.217607870000165, 42.802737325000066 ], [ 20.226082805000175, 42.806768087000052 ], [ 20.264426717000106, 42.817258403000011 ], [ 20.345352010000084, 42.82743866000007 ], [ 20.428034302000128, 42.840641988000073 ], [ 20.476300089000148, 42.855524801 ], [ 20.49883101400016, 42.877874857999984 ], [ 20.494366526000164, 42.8874665310002 ], [ 20.4889091390001, 42.899191386000069 ], [ 20.46668827300013, 42.909500834000085 ], [ 20.450978637000077, 42.922032369000078 ], [ 20.459453572000172, 42.950015157999985 ], [ 20.476403442000077, 42.966370748000116 ], [ 20.49345666500011, 42.970194804000073 ], [ 20.511130005000126, 42.970194804000073 ], [ 20.530456990000175, 42.975155742000197 ], [ 20.538415161000131, 42.980659281000015 ], [ 20.54389286300011, 42.987248027000106 ], [ 20.553401326000198, 43.002595927000073 ], [ 20.562393026000137, 43.009494731000046 ], [ 20.572831665000166, 43.009339702 ], [ 20.584303833000092, 43.006910909000055 ], [ 20.596396118000172, 43.007091777000085 ], [ 20.617273397000162, 43.022129619000083 ], [ 20.643835083000084, 43.052256979000049 ], [ 20.664919068000103, 43.085407410000073 ], [ 20.669156535000155, 43.109798686 ], [ 20.661818481000154, 43.115948182000068 ], [ 20.651689901000111, 43.116309916000063 ], [ 20.640941203000096, 43.115276387999984 ], [ 20.632052856000172, 43.117265930000116 ], [ 20.626058390000139, 43.12372548500008 ], [ 20.62058068900015, 43.133337301000012 ], [ 20.61210575400014, 43.154938050000055 ], [ 20.600116821000199, 43.17382578600018 ], [ 20.597533000000112, 43.184962057000035 ], [ 20.60404423000017, 43.197958679000038 ], [ 20.612312459000123, 43.202273662000039 ], [ 20.644868612000067, 43.203307190000089 ], [ 20.666986124000175, 43.209663392000039 ], [ 20.745327596000152, 43.252864888000062 ], [ 20.769512166000112, 43.260848898000035 ], [ 20.794420207000172, 43.263070984000052 ], [ 20.809717238000133, 43.259610189000057 ], [ 20.819431600000172, 43.257412415 ], [ 20.838448527000139, 43.245862732000063 ], [ 20.848473755000072, 43.238137106000067 ], [ 20.855088338000172, 43.231445008000037 ], [ 20.864700154000104, 43.217337342 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0.000000, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0.000000, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0.000000, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "brk_group": null, "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Macedonia, FYR", "name_alt": null, "mapcolor7": 5.000000, "mapcolor8": 3.000000, "mapcolor9": 7.000000, "mapcolor13": 3.000000, "pop_est": 2066718.000000, "gdp_md_est": 18780.000000, "pop_year": -99.000000, "lastcensus": 2010.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99.000000, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9.000000, "long_len": 9.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.345023234000109, 42.313439026000111 ], [ 22.443621867000104, 42.214426982000106 ], [ 22.481449015000152, 42.193317160000078 ], [ 22.494678182000172, 42.164559225000062 ], [ 22.506938534000199, 42.148927276000052 ], [ 22.510181112000083, 42.144792990000013 ], [ 22.53105839000014, 42.129109193000033 ], [ 22.617771443000123, 42.082703756000029 ], [ 22.627176665000093, 42.07912659200008 ], [ 22.675855753000093, 42.060612081000016 ], [ 22.705724731000203, 42.05593536400005 ], [ 22.710272258000145, 42.052989808000063 ], [ 22.713992961000145, 42.048623149000065 ], [ 22.718437134000169, 42.044463196000038 ], [ 22.725051717000156, 42.04247365399999 ], [ 22.770630330000131, 42.043998108000011 ], [ 22.78086226400012, 42.043171286000074 ], [ 22.785306437000116, 42.0391405230001 ], [ 22.787683553000164, 42.032577616000111 ], [ 22.79109419800011, 42.025808004000055 ], [ 22.798949015000147, 42.021234640000017 ], [ 22.805977010000134, 42.021389669000058 ], [ 22.821273234000103, 42.025368754000056 ], [ 22.826957642000139, 42.025084534000058 ], [ 22.838223104000122, 42.019477641000037 ], [ 22.843700806000101, 42.014465027000085 ], [ 22.845621159000189, 42.00740772900005 ], [ 22.845767863000162, 42.006868592000018 ], [ 22.846594686000088, 41.993639425000026 ], [ 22.84690474400017, 41.993484395000081 ], [ 22.854759562000197, 41.982632345000042 ], [ 22.857136678000131, 41.971883647000112 ], [ 22.858893677000111, 41.947879944000078 ], [ 22.866335083000138, 41.924883932000057 ], [ 22.877083781000152, 41.902042949000133 ], [ 22.878634073000086, 41.895014954000118 ], [ 22.878220662000075, 41.880261333000021 ], [ 22.88080448400018, 41.872690735000077 ], [ 22.882088305000167, 41.87161827500006 ], [ 22.885041952000137, 41.869150899 ], [ 22.896720825000102, 41.864448344000039 ], [ 22.90137170400007, 41.860417582000025 ], [ 22.907676229000174, 41.848583679000029 ], [ 22.918321573000156, 41.814348043000109 ], [ 22.939715617000076, 41.776701762000073 ], [ 22.945916788000176, 41.769337870000072 ], [ 22.956872192000134, 41.765668844000174 ], [ 22.980539998000069, 41.764738668000035 ], [ 22.991185344000172, 41.760992127 ], [ 23.00885868300017, 41.739933979999989 ], [ 23.009582153000167, 41.716369528000087 ], [ 22.99862675000017, 41.693115133000163 ], [ 22.985434528000127, 41.677197757000044 ], [ 22.976612590000116, 41.666553446000052 ], [ 22.970101359000125, 41.652032369000011 ], [ 22.967000773000109, 41.647045594000048 ], [ 22.961523071000101, 41.644487611000073 ], [ 22.945813436000151, 41.641076966000128 ], [ 22.940852498000197, 41.637640483000098 ], [ 22.936098266000101, 41.626168315000086 ], [ 22.93299768100016, 41.612344869000026 ], [ 22.932067505000106, 41.597952983000113 ], [ 22.933721151000157, 41.584594625000079 ], [ 22.93692509000013, 41.578910218000033 ], [ 22.946433553000105, 41.567748108000018 ], [ 22.948707316000139, 41.560978495000057 ], [ 22.947880493000099, 41.555139059000084 ], [ 22.943022909000092, 41.538550924000077 ], [ 22.943599338000183, 41.523201176000043 ], [ 22.946226848000151, 41.45323313500009 ], [ 22.947570435000131, 41.448375549000076 ], [ 22.953358195000192, 41.438195293 ], [ 22.954598429000129, 41.432407532000042 ], [ 22.952117960000152, 41.427704976000058 ], [ 22.940542440000115, 41.416904602000017 ], [ 22.937338501000141, 41.410755107000057 ], [ 22.939405558000203, 41.389412740000068 ], [ 22.944469849000171, 41.368432109000054 ], [ 22.940852498000197, 41.349828593000097 ], [ 22.91697798600012, 41.335772604000169 ], [ 22.826027466000198, 41.340991923000018 ], [ 22.796817682000096, 41.337039222999977 ], [ 22.780965616000145, 41.334894104000057 ], [ 22.762293452000108, 41.322500211000062 ], [ 22.751303345000082, 41.31520538400008 ], [ 22.742003480000136, 41.287029556000022 ], [ 22.740864705000064, 41.283579407000019 ], [ 22.736730591000139, 41.20441111299999 ], [ 22.727222127000147, 41.165808818000187 ], [ 22.715749959000135, 41.145603333000025 ], [ 22.704897908000163, 41.13966054299999 ], [ 22.691875448000133, 41.144569804000042 ], [ 22.674098755000102, 41.156610413000095 ], [ 22.666347290000203, 41.164516907000063 ], [ 22.661903117000094, 41.172268372000048 ], [ 22.657185370000121, 41.176986119000048 ], [ 22.656115356000129, 41.178056132000023 ], [ 22.644539835000074, 41.180226543000032 ], [ 22.629346965000138, 41.177074280000056 ], [ 22.625936320000136, 41.169787902999985 ], [ 22.626763143000147, 41.160796203000132 ], [ 22.624489380000142, 41.152631328000012 ], [ 22.60733280400018, 41.135991516000018 ], [ 22.590176229000122, 41.125139466000064 ], [ 22.586634010000125, 41.124084542999981 ], [ 22.571262655000169, 41.119506735000016 ], [ 22.549248494000096, 41.118524882000145 ], [ 22.516588989000127, 41.122245586000076 ], [ 22.500672648000176, 41.122142232000044 ], [ 22.481449015000152, 41.117749736000036 ], [ 22.467496379000181, 41.115010885000089 ], [ 22.451476684000113, 41.113667297000035 ], [ 22.421814413000163, 41.11464915000002 ], [ 22.410445597000177, 41.117904765000077 ], [ 22.389258260000133, 41.128343405000038 ], [ 22.380163208000141, 41.131702373000024 ], [ 22.367657512000136, 41.132374166000034 ], [ 22.342336060000065, 41.12896352199999 ], [ 22.323422485000123, 41.128498434000051 ], [ 22.315050903000156, 41.124415995000049 ], [ 22.308746379000155, 41.124984436 ], [ 22.306679321000075, 41.128446758000052 ], [ 22.305232381000081, 41.141624247000038 ], [ 22.302648560000193, 41.145499980000068 ], [ 22.293450154000169, 41.147515361000046 ], [ 22.262961060000094, 41.150460918000022 ], [ 22.225133912000132, 41.159607646000012 ], [ 22.213636841000096, 41.160683575000036 ], [ 22.205806926000093, 41.161416321000104 ], [ 22.183172648000124, 41.159917704000094 ], [ 22.160331665000115, 41.151907857000111 ], [ 22.124364868000157, 41.127206523000012 ], [ 22.103384237000142, 41.121522115000062 ], [ 22.095942830000126, 41.123640849000054 ], [ 22.062766561000103, 41.137180074000014 ], [ 22.060286092000126, 41.140022278000089 ], [ 22.058632446000104, 41.145086568000067 ], [ 22.055531860000144, 41.14989247699998 ], [ 22.04819380700016, 41.151856182000103 ], [ 22.044059692000133, 41.149944153 ], [ 22.033827759000133, 41.141262512000026 ], [ 22.029073527000065, 41.138575338000095 ], [ 21.965098104000077, 41.124364319000051 ], [ 21.934712362000113, 41.111910299000044 ], [ 21.925545235000129, 41.106753790000084 ], [ 21.909080851000141, 41.097492574000029 ], [ 21.901226034000132, 41.090774638000198 ], [ 21.897195272000118, 41.081266175000025 ], [ 21.896332709000177, 41.064704965000118 ], [ 21.896161743000135, 41.061422425000046 ], [ 21.894301391000141, 41.053825989000075 ], [ 21.880658814000128, 41.038426412 ], [ 21.845002075000139, 41.012381490000109 ], [ 21.831462850000065, 40.993726298000041 ], [ 21.831359497000136, 40.993674622000043 ], [ 21.831359497000136, 40.993622945000112 ], [ 21.831256144000122, 40.993519591999984 ], [ 21.793635702000188, 40.973572490000066 ], [ 21.783713826000081, 40.964167379000031 ], [ 21.781853475000077, 40.955899150000079 ], [ 21.781750122000147, 40.945098776000037 ], [ 21.778132772000077, 40.933729960000051 ], [ 21.765523722000154, 40.923911438000061 ], [ 21.757090880000163, 40.922505964000038 ], [ 21.736998332000098, 40.919157206000079 ], [ 21.685115194000105, 40.927993877000091 ], [ 21.656899861000142, 40.918227030000025 ], [ 21.654832805000154, 40.914299622000073 ], [ 21.652662394000089, 40.901380513000049 ], [ 21.64883833900015, 40.895799459000045 ], [ 21.643877400000093, 40.894455872000066 ], [ 21.629511353000083, 40.895075989000134 ], [ 21.623723592000118, 40.89440419500005 ], [ 21.613698364000101, 40.888306376 ], [ 21.590340617000152, 40.870684713000031 ], [ 21.581555623000071, 40.866292217000108 ], [ 21.553650350000083, 40.870426331000033 ], [ 21.509518677000187, 40.900502014000011 ], [ 21.505730550000095, 40.900902822000063 ], [ 21.429420207000135, 40.908976949000106 ], [ 21.404925577000171, 40.908615214000037 ], [ 21.38125777200014, 40.900502014000011 ], [ 21.344877564000143, 40.873061829000051 ], [ 21.329271281000103, 40.866292217000108 ], [ 21.295371541000094, 40.860866191000042 ], [ 21.260955037000144, 40.860814514000026 ], [ 21.245824293000112, 40.863225788000051 ], [ 21.209071899000065, 40.869082744000082 ], [ 21.183026977000083, 40.870167948000073 ], [ 21.112126912000122, 40.853941549000069 ], [ 20.965262492000107, 40.849394023000031 ], [ 20.964849080000192, 40.875955709000038 ], [ 20.956684204000084, 40.894765931000052 ], [ 20.939941040000122, 40.907064921000085 ], [ 20.890228312000119, 40.918278707000042 ], [ 20.837414999000174, 40.924066468000035 ], [ 20.836544264000167, 40.923903755000055 ], [ 20.81695113100011, 40.920242411000089 ], [ 20.783671509000072, 40.899055074000017 ], [ 20.766101522000099, 40.893732402000069 ], [ 20.740883423000156, 40.897969870000026 ], [ 20.730572639000115, 40.904611095 ], [ 20.717215617000107, 40.913214417000063 ], [ 20.702746216000094, 40.936313782000042 ], [ 20.68341923000014, 40.993829652000073 ], [ 20.664092244000187, 41.059148662000013 ], [ 20.653860310000198, 41.075271708 ], [ 20.643008260000158, 41.081576233000106 ], [ 20.634128612000154, 41.082576194000069 ], [ 20.631536092000147, 41.082868144000059 ], [ 20.618927042000109, 41.082403056000032 ], [ 20.605284464000107, 41.083488261000127 ], [ 20.597419353000106, 41.086272625000021 ], [ 20.576965780000108, 41.09351348900006 ], [ 20.569937785000093, 41.107104390000046 ], [ 20.570557902000161, 41.124829407000078 ], [ 20.565493611000193, 41.147412008 ], [ 20.549680623000199, 41.170614726000025 ], [ 20.512680297000145, 41.21014719700014 ], [ 20.500071248000125, 41.235520325000039 ], [ 20.483121379000124, 41.289470520000094 ], [ 20.477747029000142, 41.319597881000078 ], [ 20.478108340000119, 41.321585090000013 ], [ 20.48167443900013, 41.341198629000047 ], [ 20.49604048700013, 41.337787985000034 ], [ 20.510406534000111, 41.344402568000021 ], [ 20.52342899500016, 41.356804912000086 ], [ 20.532937459000152, 41.37044749 ], [ 20.539965454000139, 41.387138977000035 ], [ 20.540172160000111, 41.400678202000023 ], [ 20.539048843000074, 41.402943875000091 ], [ 20.534074341000149, 41.412977194000064 ], [ 20.522188761000137, 41.425689596000012 ], [ 20.514644002000182, 41.429461976000027 ], [ 20.498004191000149, 41.431477356000073 ], [ 20.490872843000119, 41.436024883000016 ], [ 20.4889091390001, 41.441450908000093 ], [ 20.486842082000123, 41.457780660000026 ], [ 20.483534790000135, 41.46548044900004 ], [ 20.481596975000116, 41.468269012000093 ], [ 20.470822388000073, 41.483773905000078 ], [ 20.463174275000171, 41.489768372000015 ], [ 20.452012166000145, 41.493592427000067 ], [ 20.444984171000158, 41.508475241000014 ], [ 20.447878052000135, 41.535450338000032 ], [ 20.444157349000136, 41.549661356000087 ], [ 20.492939901000085, 41.557671204000059 ], [ 20.507409302000099, 41.562270406000039 ], [ 20.520845174000158, 41.568368225000086 ], [ 20.529320109000167, 41.574879456000048 ], [ 20.534694458000132, 41.585266419000078 ], [ 20.53467017400007, 41.587324468000077 ], [ 20.534591105000089, 41.594025574000057 ], [ 20.513403768000131, 41.640405172000044 ], [ 20.508339478000067, 41.661747539000061 ], [ 20.500381307000112, 41.734094544000101 ], [ 20.503275187000099, 41.744636536000058 ], [ 20.511336710000165, 41.75794321699999 ], [ 20.521155232000154, 41.76765838700004 ], [ 20.544409628000068, 41.784763286000072 ], [ 20.550920858000126, 41.79352244100005 ], [ 20.550136327000132, 41.800060201000093 ], [ 20.548440389000149, 41.814193013000079 ], [ 20.540482218000193, 41.839436951000039 ], [ 20.540786219000125, 41.844864632000053 ], [ 20.54172245200013, 41.86158030200005 ], [ 20.567147258000148, 41.873181662 ], [ 20.590298299000125, 41.854733175 ], [ 20.602390584000119, 41.849875591000057 ], [ 20.618720337000155, 41.850521546000039 ], [ 20.626161743000182, 41.855198263 ], [ 20.637013793000136, 41.870365295000028 ], [ 20.643421672000073, 41.873646749000017 ], [ 20.652826783000108, 41.869280091000036 ], [ 20.671843709000171, 41.849307150000101 ], [ 20.681455525000104, 41.844010316000066 ], [ 20.702952921000133, 41.849591369999985 ], [ 20.71439819800014, 41.859162991000062 ], [ 20.723313436000154, 41.866618755000019 ], [ 20.739953247000187, 41.888038635000044 ], [ 20.750495240000163, 41.906797180000126 ], [ 20.751052494000163, 41.910217695000085 ], [ 20.754422648000116, 41.930904236000089 ], [ 20.751439128000186, 41.940337784000093 ], [ 20.741813598000192, 41.970772603000029 ], [ 20.743053833000147, 41.993484395000081 ], [ 20.755352824000084, 42.042783712000073 ], [ 20.765378052000102, 42.064332785000033 ], [ 20.784911743000123, 42.082031962000059 ], [ 20.810543253000077, 42.092935690000104 ], [ 20.904170441000133, 42.116667755000037 ], [ 20.975145181000158, 42.134658012000045 ], [ 21.00391646300011, 42.141950786000024 ], [ 21.029237915000095, 42.151407573000085 ], [ 21.040939978000125, 42.159969894000028 ], [ 21.074403117000173, 42.184454651000067 ], [ 21.098484334000204, 42.195952657000106 ], [ 21.106235799000103, 42.195797628000065 ], [ 21.112953735000133, 42.194402364000069 ], [ 21.126389607000192, 42.188924662 ], [ 21.164423462000116, 42.167039694000039 ], [ 21.199873494000144, 42.141149801000012 ], [ 21.216203247000095, 42.121151022000163 ], [ 21.225401652000187, 42.10678497300006 ], [ 21.229298016000172, 42.103822113000149 ], [ 21.237803996000167, 42.097354024000111 ], [ 21.245727456000083, 42.096167109000049 ], [ 21.288860311000121, 42.089705912000028 ], [ 21.299298950000065, 42.09141123500018 ], [ 21.300796361000067, 42.098425427000024 ], [ 21.301262654000197, 42.100609640000101 ], [ 21.300332479000161, 42.120892639 ], [ 21.298782186000125, 42.129419251000115 ], [ 21.295784953000123, 42.13479360000008 ], [ 21.293717895000157, 42.140167949000045 ], [ 21.294958130000083, 42.148978781000039 ], [ 21.353765910000078, 42.215977275000029 ], [ 21.360602065000108, 42.220114233000032 ], [ 21.366788371000098, 42.223857930000065 ], [ 21.384255005000142, 42.224943135999979 ], [ 21.419084920000131, 42.215021261000089 ], [ 21.429833618000146, 42.2158480840001 ], [ 21.428696737000138, 42.222566020000045 ], [ 21.421462036000065, 42.231351013000022 ], [ 21.419911743000142, 42.240058492000088 ], [ 21.436344848000203, 42.246879782000036 ], [ 21.447920369000144, 42.244140931000089 ], [ 21.457222127000165, 42.237035421000058 ], [ 21.467557413000094, 42.235123393000038 ], [ 21.471973165000151, 42.239130279000108 ], [ 21.481510051000072, 42.247784119000073 ], [ 21.499286743000113, 42.238663228000092 ], [ 21.519853963000088, 42.239024964000095 ], [ 21.561815226000192, 42.247164002 ], [ 21.564065710000136, 42.246289302000037 ], [ 21.575044392000109, 42.242022197000011 ], [ 21.624653768000172, 42.242771505000036 ], [ 21.659690389000104, 42.235562643000151 ], [ 21.676886452000133, 42.234944820000095 ], [ 21.676950317000177, 42.234942525000179 ], [ 21.692039835000088, 42.242022197000011 ], [ 21.706509236000102, 42.255070496000059 ], [ 21.719520700000118, 42.260956635000184 ], [ 21.817200154000176, 42.305144959000074 ], [ 21.837353963000169, 42.308555603000087 ], [ 21.87735152200014, 42.308219706000017 ], [ 21.884379517000127, 42.309511618000045 ], [ 21.918279256000147, 42.331344909999984 ], [ 21.929027954000077, 42.33511728900001 ], [ 21.941533650000167, 42.33310190900005 ], [ 21.994967082000187, 42.3126122030001 ], [ 22.027626587000071, 42.30395640100005 ], [ 22.045407482000172, 42.30242404099999 ], [ 22.060906209000109, 42.301088359000062 ], [ 22.095529419000115, 42.305816752000055 ], [ 22.23340214000018, 42.348889058000054 ], [ 22.259757120000131, 42.369094544000035 ], [ 22.268852173000198, 42.370334779000075 ], [ 22.273296346000109, 42.36547719400005 ], [ 22.274019816000106, 42.348475647000043 ], [ 22.276913696000094, 42.341240947000074 ], [ 22.291589803000164, 42.328399354000084 ], [ 22.307609497000129, 42.319330140000034 ], [ 22.325282837000145, 42.314317525000149 ], [ 22.345023234000109, 42.313439026000111 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0.000000, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0.000000, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0.000000, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "brk_group": null, "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Montenegro", "name_alt": null, "mapcolor7": 4.000000, "mapcolor8": 1.000000, "mapcolor9": 4.000000, "mapcolor13": 5.000000, "pop_est": 672180.000000, "gdp_md_est": 6816.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99.000000, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10.000000, "long_len": 10.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.054991495000166, 43.506699524000027 ], [ 19.076385538000096, 43.507242126999984 ], [ 19.096022583000121, 43.512900696000116 ], [ 19.1227909750001, 43.535948384999983 ], [ 19.147699015000171, 43.538144633000087 ], [ 19.195344686000112, 43.532796122000036 ], [ 19.175190877000148, 43.509619243000117 ], [ 19.175914347000145, 43.480887146000015 ], [ 19.192244100000067, 43.454532165000074 ], [ 19.218392375000178, 43.438202413000027 ], [ 19.355644979000175, 43.393063049000062 ], [ 19.372284790000094, 43.384226379000069 ], [ 19.414039347000141, 43.33838938400001 ], [ 19.473053833000165, 43.293275859000062 ], [ 19.485146118000159, 43.280098369000058 ], [ 19.502302693000104, 43.251934713000111 ], [ 19.512431274000164, 43.240643413000043 ], [ 19.547844736000087, 43.218814866000059 ], [ 19.549948364000159, 43.217518209000076 ], [ 19.580850871000166, 43.187804261000082 ], [ 19.598110799000153, 43.176202902000028 ], [ 19.618678019000129, 43.168244731000073 ], [ 19.663016398000167, 43.158503723000024 ], [ 19.684617147000154, 43.156720887000034 ], [ 19.697329549000102, 43.160209046000091 ], [ 19.705494425000126, 43.166177673000021 ], [ 19.713555949000124, 43.165609233000055 ], [ 19.742804810000166, 43.126516012000053 ], [ 19.761201619000161, 43.108739319000023 ], [ 19.781768839000136, 43.096466166000084 ], [ 19.805126587000188, 43.089954936000112 ], [ 19.838302856000098, 43.088352967000077 ], [ 19.872202596000108, 43.090368348000112 ], [ 19.883778117000162, 43.095691020000061 ], [ 19.907135864000111, 43.113261007000034 ], [ 19.916644328000189, 43.117059225000077 ], [ 19.929150024000194, 43.113906963 ], [ 19.936591431000124, 43.105897116000051 ], [ 19.942275838000143, 43.095639343000045 ], [ 19.949820598000201, 43.085924174000098 ], [ 19.959742472000102, 43.078560282000097 ], [ 20.019893840000151, 43.047347718000026 ], [ 20.054388424000166, 43.022220673000049 ], [ 20.05634425500017, 43.020795978000052 ], [ 20.116942179000119, 42.976654358000019 ], [ 20.129464296000151, 42.973604791000042 ], [ 20.140920044000126, 42.970814922000045 ], [ 20.194560181000099, 42.966835836000143 ], [ 20.223188924000084, 42.957663269000051 ], [ 20.275588827000121, 42.929887187000105 ], [ 20.337083781000132, 42.906968689000081 ], [ 20.353620239000122, 42.890974834000133 ], [ 20.35517053200013, 42.866170146 ], [ 20.345352010000084, 42.82743866000007 ], [ 20.264426717000106, 42.817258403000011 ], [ 20.226082805000175, 42.806768087000052 ], [ 20.217607870000165, 42.802737325000066 ], [ 20.209236288000085, 42.791704407000054 ], [ 20.208409464000169, 42.782092591000065 ], [ 20.209959757000092, 42.772971701000074 ], [ 20.208409464000169, 42.763282369000137 ], [ 20.18339807100017, 42.742508443000105 ], [ 20.14949833100016, 42.749872335000106 ], [ 20.112084595000113, 42.766537985000042 ], [ 20.076324503000166, 42.773436789000101 ], [ 20.065059041000126, 42.769457703000029 ], [ 20.05563844800011, 42.76386622900003 ], [ 20.034673299000161, 42.751422628000029 ], [ 20.026508423000138, 42.743206074999989 ], [ 20.024751424000073, 42.723414002000197 ], [ 20.036120239000155, 42.707988587000017 ], [ 20.037006251000093, 42.707363097000041 ], [ 20.094204549000125, 42.666983336999976 ], [ 20.101956014000137, 42.656673889999979 ], [ 20.103919718000071, 42.653108216000106 ], [ 20.09058719900014, 42.627347514 ], [ 20.079218384000171, 42.611250305000027 ], [ 20.075704386000126, 42.603085430000107 ], [ 20.075394328000129, 42.586962382000053 ], [ 20.078184855000188, 42.572906393000011 ], [ 20.077047973000077, 42.55990977 ], [ 20.064955688000083, 42.546758118000014 ], [ 20.0392208250002, 42.557765199000102 ], [ 20.017723429000142, 42.546241353000084 ], [ 19.981756632000099, 42.510765483000029 ], [ 19.956331828000174, 42.505313620000067 ], [ 19.907549276000111, 42.506398824000058 ], [ 19.882744588000094, 42.493608907000066 ], [ 19.882744588000094, 42.493557231000068 ], [ 19.88253788300014, 42.493402202000112 ], [ 19.873339477000115, 42.486839295000038 ], [ 19.835512329000153, 42.470251160000117 ], [ 19.829062799000127, 42.468722537000019 ], [ 19.819595988000117, 42.466478780000017 ], [ 19.801405884000189, 42.468132426000039 ], [ 19.784456014000085, 42.474566143000089 ], [ 19.751589803000144, 42.493402202000112 ], [ 19.734329875000157, 42.524382223000032 ], [ 19.730919230000126, 42.533658143000054 ], [ 19.730299113000171, 42.540427755 ], [ 19.732159464000176, 42.555543111000105 ], [ 19.733916464000146, 42.562596945000024 ], [ 19.741357870000172, 42.574405009000117 ], [ 19.74600874900014, 42.579934387000037 ], [ 19.747765747000102, 42.578900859000044 ], [ 19.746884654000127, 42.588929772000199 ], [ 19.74600874900014, 42.598899639000081 ], [ 19.73753381400013, 42.624401957000117 ], [ 19.722134237000148, 42.646080221 ], [ 19.699293254000139, 42.65481353800007 ], [ 19.67603885900013, 42.646674500000074 ], [ 19.658037166000128, 42.634612704000034 ], [ 19.647926880000085, 42.627838441000051 ], [ 19.621778605000173, 42.604997457000053 ], [ 19.605035441000126, 42.584843649000049 ], [ 19.599247681000151, 42.571046041000017 ], [ 19.593666626000129, 42.544820252000079 ], [ 19.588085572000125, 42.532857158000041 ], [ 19.575683227000155, 42.522341004000168 ], [ 19.561317179000156, 42.516243185000036 ], [ 19.549328247000091, 42.508595072000048 ], [ 19.543747192000183, 42.493557231000068 ], [ 19.543747192000183, 42.493402202000112 ], [ 19.531654907000188, 42.474772848000043 ], [ 19.517805623000129, 42.458029684000024 ], [ 19.501475871000196, 42.444128724000024 ], [ 19.481735473000128, 42.434491069000018 ], [ 19.468402954000112, 42.418109640000068 ], [ 19.4172432860002, 42.374107158000101 ], [ 19.412075643000094, 42.368396912000065 ], [ 19.402670532000144, 42.352015483 ], [ 19.400706828000125, 42.344754944000044 ], [ 19.401326945000079, 42.331060690000101 ], [ 19.400396769000139, 42.325893047000108 ], [ 19.304588663000089, 42.215098776000019 ], [ 19.27492639200014, 42.191275941000043 ], [ 19.272032511000134, 42.180682271000052 ], [ 19.28195567700007, 42.164723366000061 ], [ 19.282057739000066, 42.164559225000062 ], [ 19.297767375000149, 42.151665955000055 ], [ 19.355024861000089, 42.120039979000069 ], [ 19.369997877000145, 42.106506676000038 ], [ 19.372491496000151, 42.104252828000085 ], [ 19.374868612000085, 42.094666850000067 ], [ 19.356575155000115, 42.064797872000071 ], [ 19.351717570000091, 42.047615458 ], [ 19.350580689000196, 42.027823385000033 ], [ 19.354198039000067, 42.008703105000023 ], [ 19.36339644300017, 41.993639425000026 ], [ 19.363706503000145, 41.993484395000081 ], [ 19.371044556000157, 41.986559754000012 ], [ 19.365773559000132, 41.969713237000121 ], [ 19.3597790930001, 41.965992534 ], [ 19.351614217000161, 41.965165711000083 ], [ 19.346446574000169, 41.961548361000013 ], [ 19.352854452000201, 41.93850067200006 ], [ 19.350477336000068, 41.931369324 ], [ 19.346653279000122, 41.926175843000095 ], [ 19.3454130450001, 41.921189067000057 ], [ 19.345929810000115, 41.91447113000001 ], [ 19.345309692000143, 41.910337016000085 ], [ 19.347686808000105, 41.906357931000031 ], [ 19.356988566000126, 41.899639993999983 ], [ 19.364946737000196, 41.888994650000086 ], [ 19.364223267000114, 41.862846375000089 ], [ 19.36512209956598, 41.852371910313195 ], [ 19.36508222700013, 41.85236237200013 ], [ 19.346934441000116, 41.863959052000041 ], [ 19.310231967000107, 41.894517320000062 ], [ 19.293223504000139, 41.900783596000025 ], [ 19.22022545700014, 41.918850002000056 ], [ 19.20297285200013, 41.927069403000132 ], [ 19.178477410000113, 41.93390534100007 ], [ 19.170258009000094, 41.937974351 ], [ 19.162282748000052, 41.947943427000013 ], [ 19.16195722700013, 41.953436591000042 ], [ 19.163259311000047, 41.958970445000062 ], [ 19.160329623000109, 41.968980210000041 ], [ 19.155609571000099, 41.970648505000042 ], [ 19.145274285000085, 41.977606512000136 ], [ 19.137950066000087, 41.985296942000076 ], [ 19.142914259000122, 41.988836981000048 ], [ 19.143565300000091, 41.993068752000056 ], [ 19.139170769000089, 42.04242584800005 ], [ 19.082530144000117, 42.081203518000081 ], [ 19.074717644000117, 42.095648505000042 ], [ 19.083832227000102, 42.11009349200009 ], [ 19.07642662900011, 42.115952867000033 ], [ 19.063975457000112, 42.120184637000051 ], [ 19.04867597700013, 42.1402041690001 ], [ 19.010590040000068, 42.139553127000056 ], [ 19.002126498000109, 42.150213934000107 ], [ 18.99984785200013, 42.161078192000076 ], [ 18.994802280000101, 42.1636416690001 ], [ 18.98804772200009, 42.163723049000083 ], [ 18.981618686000076, 42.167059637000108 ], [ 18.968028191000116, 42.188706773000092 ], [ 18.953461134000094, 42.199855861000117 ], [ 18.913340691000059, 42.222235419000128 ], [ 18.90170332100007, 42.237494208000101 ], [ 18.894704623000081, 42.270493882000068 ], [ 18.885996941000087, 42.284369208000044 ], [ 18.871592644000117, 42.29047272300005 ], [ 18.854014519000089, 42.29047272300005 ], [ 18.838877800000091, 42.285711981000134 ], [ 18.831390821000127, 42.277533270000049 ], [ 18.826508009000065, 42.282212632000039 ], [ 18.820485873000052, 42.2866885440001 ], [ 18.817637566000116, 42.291164455000086 ], [ 18.801524285000141, 42.284369208000044 ], [ 18.793955925000091, 42.280340887000079 ], [ 18.788747592000107, 42.276027736000088 ], [ 18.786387566000144, 42.274115302000041 ], [ 18.778575066000144, 42.271470445000034 ], [ 18.771983269000089, 42.276922919000071 ], [ 18.762461785000085, 42.291164455000086 ], [ 18.72950280000012, 42.311590887000051 ], [ 18.714528842000078, 42.325262762000079 ], [ 18.714121941000059, 42.338934637000108 ], [ 18.708343946000099, 42.342474677000013 ], [ 18.699717644000089, 42.349839585000097 ], [ 18.69361412900011, 42.353216864000018 ], [ 18.69361412900011, 42.359442450000074 ], [ 18.695811394000117, 42.373765367000061 ], [ 18.678477410000113, 42.385972398000035 ], [ 18.658539259000122, 42.386623440000079 ], [ 18.653168165000068, 42.366278387000079 ], [ 18.646494988000114, 42.366278387000079 ], [ 18.63843834700009, 42.370306708000072 ], [ 18.616709832000112, 42.368068752000084 ], [ 18.61231530000012, 42.369940497000044 ], [ 18.60710696700005, 42.37641022300005 ], [ 18.594899936000076, 42.383734442000048 ], [ 18.580902540000096, 42.389837958000044 ], [ 18.570648634000065, 42.392971096000025 ], [ 18.573008660000113, 42.396429755000014 ], [ 18.573090040000096, 42.397528387000051 ], [ 18.574066602000073, 42.398260809000078 ], [ 18.578135613000143, 42.400376695 ], [ 18.552989129000053, 42.413641669000128 ], [ 18.545176629000082, 42.423570054000038 ], [ 18.550140821000127, 42.435126044000071 ], [ 18.562836134000094, 42.438544012000079 ], [ 18.644948764000077, 42.418361721000053 ], [ 18.65650475400011, 42.415513414000088 ], [ 18.685557488000086, 42.403998114000075 ], [ 18.700450066000116, 42.392971096000025 ], [ 18.708181186000047, 42.408514716000127 ], [ 18.706553582000112, 42.421047268000024 ], [ 18.683848504000082, 42.458807684000078 ], [ 18.683278842000107, 42.468085028000132 ], [ 18.687347852000073, 42.482896226 ], [ 18.654144727000045, 42.451808986000088 ], [ 18.608653191000087, 42.445379950000074 ], [ 18.502452019000145, 42.455633856000105 ], [ 18.502452019000145, 42.448187567000048 ], [ 18.52125084700009, 42.437974351 ], [ 18.512950066000116, 42.409002997000101 ], [ 18.529795769000117, 42.400376695 ], [ 18.510264519000145, 42.405259507000068 ], [ 18.49642988400015, 42.416327216000099 ], [ 18.497816202000195, 42.431157939 ], [ 18.492855265000145, 42.442371724000054 ], [ 18.475491984000115, 42.44981313100007 ], [ 18.467740519000131, 42.453378805000057 ], [ 18.45492476400014, 42.464721782000112 ], [ 18.444279419000139, 42.477925110000029 ], [ 18.437148071000109, 42.493402202000112 ], [ 18.436424602000102, 42.510765483000029 ], [ 18.442005656000134, 42.543011577000101 ], [ 18.437354777000166, 42.559212138000106 ], [ 18.44769006400017, 42.566214295000094 ], [ 18.458955525000135, 42.569728292000065 ], [ 18.470531047000179, 42.569056499000084 ], [ 18.481796509000134, 42.563682149000016 ], [ 18.492131795000148, 42.5647673550001 ], [ 18.495852498000147, 42.570865174000062 ], [ 18.493682088000156, 42.57983103399999 ], [ 18.486654093000141, 42.589830424000013 ], [ 18.506797873000096, 42.598490208000044 ], [ 18.517246542000152, 42.602982077 ], [ 18.53843387800012, 42.618304139000145 ], [ 18.542832323000169, 42.626429044000048 ], [ 18.549595988000164, 42.638923035000062 ], [ 18.550009400000164, 42.668068543000061 ], [ 18.53967411300016, 42.695457052000023 ], [ 18.522517537000112, 42.711890157000084 ], [ 18.502157023000166, 42.727444763000022 ], [ 18.467430460000145, 42.769199321000144 ], [ 18.453891235000157, 42.793151347000048 ], [ 18.444589477000136, 42.817077536000056 ], [ 18.443659302000157, 42.834466655000085 ], [ 18.453477824000146, 42.845654603000042 ], [ 18.465983520000151, 42.852811788000082 ], [ 18.473321574000124, 42.862552795000113 ], [ 18.467637166000173, 42.881698914000111 ], [ 18.443969360000068, 42.916864726000085 ], [ 18.434047486000168, 42.936889344 ], [ 18.433530721000125, 42.954200949000011 ], [ 18.452754354000149, 42.993397522000066 ], [ 18.483036743000156, 43.01463653600004 ], [ 18.538950643000163, 43.023886617000045 ], [ 18.598378540000112, 43.024455058 ], [ 18.638996215000134, 43.020243429000061 ], [ 18.621116170000107, 43.096440328000057 ], [ 18.620599406000139, 43.122562765000055 ], [ 18.621127821000158, 43.124578152000197 ], [ 18.629074341000148, 43.154886373000039 ], [ 18.64530074100017, 43.180181986000036 ], [ 18.688398885000169, 43.224468690000066 ], [ 18.66431766700012, 43.233176168000114 ], [ 18.679510539000148, 43.249480082000048 ], [ 18.807151326000138, 43.318028869999978 ], [ 18.833506307000107, 43.324152527000052 ], [ 18.830302368000133, 43.32815745000002 ], [ 18.824617960000182, 43.337407532000043 ], [ 18.821207316000141, 43.341386617000012 ], [ 18.839604126000154, 43.347820333000072 ], [ 18.899135376000118, 43.351902771000084 ], [ 18.92342329900012, 43.346838481000106 ], [ 18.950295044000143, 43.333066712000061 ], [ 18.957323038000141, 43.32585785 ], [ 18.957943156000113, 43.318984884000031 ], [ 18.957116333000101, 43.311827698000087 ], [ 18.959493449000121, 43.303456116 ], [ 18.968588501000113, 43.292216492000051 ], [ 18.988949015000145, 43.272941183000029 ], [ 18.989505697000197, 43.272016109000049 ], [ 18.99246301300019, 43.267101746000037 ], [ 19.002901652000133, 43.27394887299999 ], [ 19.010859823000175, 43.282320455000161 ], [ 19.01716434700009, 43.291157125000069 ], [ 19.022535153000121, 43.296546325 ], [ 19.024709106000159, 43.298727723000042 ], [ 19.0362846270001, 43.303326925000079 ], [ 19.06253625500014, 43.304386292000061 ], [ 19.06966760300017, 43.308830465000085 ], [ 19.039591919000173, 43.35071421300006 ], [ 19.009929647000121, 43.410994772000038 ], [ 18.975306437000114, 43.444274394000075 ], [ 18.968278443000116, 43.448098450000117 ], [ 18.946264282000129, 43.443938497 ], [ 18.946367635000172, 43.449080303000073 ], [ 18.950708455000154, 43.45729685500001 ], [ 18.951225219000094, 43.463808084999982 ], [ 18.937892700000162, 43.47894928 ], [ 18.93065799900009, 43.48228241000001 ], [ 18.915258423000125, 43.485382996000055 ], [ 18.905646607000108, 43.490628154000063 ], [ 18.90512984200015, 43.499051413000046 ], [ 18.911020955000168, 43.507267965000011 ], [ 18.920529419000133, 43.512203064000033 ], [ 18.938926229000145, 43.518946839000051 ], [ 18.962697388000095, 43.538299662000014 ], [ 18.977476847000105, 43.546231995000085 ], [ 19.0002144770001, 43.547885641000022 ], [ 19.014270467000102, 43.537782898000074 ], [ 19.025019165000145, 43.523029276999978 ], [ 19.038144979000094, 43.511014507000112 ], [ 19.054991495000166, 43.506699524000027 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5.000000, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0.000000, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0.000000, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0.000000, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "brk_group": null, "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Serbia", "name_alt": null, "mapcolor7": 3.000000, "mapcolor8": 3.000000, "mapcolor9": 2.000000, "mapcolor13": 10.000000, "pop_est": 7379339.000000, "gdp_md_est": 80340.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99.000000, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6.000000, "long_len": 6.000000, "abbrev_len": 5.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.690094848000143, 46.168397522000063 ], [ 19.711888678000093, 46.158709866000166 ], [ 19.772983846000159, 46.131552226000039 ], [ 19.790450480000118, 46.12907175800008 ], [ 19.87364887200016, 46.152992386000065 ], [ 19.888945760000155, 46.157390442000079 ], [ 19.929150024000194, 46.163539938000056 ], [ 19.993125447000182, 46.159405823000029 ], [ 20.034983357000158, 46.142972718000138 ], [ 20.063405396000178, 46.145298157000084 ], [ 20.088623495000121, 46.154134827000078 ], [ 20.098442017000195, 46.154961650000118 ], [ 20.114771769000129, 46.152222799000057 ], [ 20.120146118000093, 46.149225566000055 ], [ 20.130378051000065, 46.139355368000068 ], [ 20.138026164000138, 46.136461487000091 ], [ 20.14536421700015, 46.137081604000045 ], [ 20.170478964000068, 46.145504862000038 ], [ 20.188462361000148, 46.140388896000061 ], [ 20.242825969000137, 46.108091126000076 ], [ 20.305664510000099, 46.053572490000064 ], [ 20.317653443000154, 46.038586324000093 ], [ 20.33863407400014, 45.992801005000061 ], [ 20.353930298000108, 45.976677959000071 ], [ 20.370983521000142, 45.967789612000061 ], [ 20.410257609000126, 45.955593974000053 ], [ 20.429067830000122, 45.946705628000203 ], [ 20.48167443900013, 45.912702535000093 ], [ 20.499864543000172, 45.90665639200013 ], [ 20.538001749000131, 45.903710836000059 ], [ 20.556708618000101, 45.898439840000023 ], [ 20.572108195000084, 45.887691142000094 ], [ 20.605284464000107, 45.846143291000018 ], [ 20.612312459000123, 45.841492412000051 ], [ 20.629675740000124, 45.833275858000022 ], [ 20.63670373500014, 45.827023011000094 ], [ 20.640114380000171, 45.81870310500004 ], [ 20.642284790000161, 45.798342590000104 ], [ 20.643489560000177, 45.795141345000175 ], [ 20.645902140000146, 45.788730775000019 ], [ 20.655617310000167, 45.777310283000091 ], [ 20.678561646000105, 45.756639709000083 ], [ 20.688070109000193, 45.743100484000095 ], [ 20.700059041000145, 45.735400696000099 ], [ 20.713391561000094, 45.733333639000065 ], [ 20.726827433000125, 45.736175842000122 ], [ 20.739436482000144, 45.743410543000081 ], [ 20.745327596000152, 45.75498606400005 ], [ 20.754112590000148, 45.763564352000074 ], [ 20.765171346000159, 45.766768291000048 ], [ 20.777470337000182, 45.762324117000034 ], [ 20.785738566000134, 45.752557272000061 ], [ 20.785531861000095, 45.743410543000081 ], [ 20.781604451000106, 45.733953756000105 ], [ 20.779123982000129, 45.723670146000202 ], [ 20.779950806000159, 45.671683655 ], [ 20.777263631000125, 45.657524312000064 ], [ 20.77323286900014, 45.648894349 ], [ 20.762174113000128, 45.630600891000213 ], [ 20.754422648000116, 45.605589499000033 ], [ 20.7580399980001, 45.589259746000025 ], [ 20.7873922120001, 45.553654684000023 ], [ 20.800207967000176, 45.530503642000056 ], [ 20.797624146000175, 45.516499329000041 ], [ 20.783154745000132, 45.506060690000098 ], [ 20.760727173000134, 45.493348288000035 ], [ 20.767135050000093, 45.479343974000031 ], [ 20.781604451000106, 45.472574361000099 ], [ 20.799484497000066, 45.468543600000018 ], [ 20.81602095500017, 45.462859192000067 ], [ 20.830387004000073, 45.452523906000138 ], [ 20.863046509000128, 45.418727519000058 ], [ 20.927642050000173, 45.37748972600015 ], [ 20.966192667000172, 45.341574605000105 ], [ 20.981488891000112, 45.332789612000013 ], [ 21.016668402000164, 45.321481912000124 ], [ 21.063964478000145, 45.306279602000117 ], [ 21.074299764000131, 45.300543518000055 ], [ 21.08277469900014, 45.293670553000098 ], [ 21.091559692000118, 45.288089498000076 ], [ 21.103341919000144, 45.286074117000041 ], [ 21.113057088000176, 45.289329732000098 ], [ 21.129180135000155, 45.301887105000034 ], [ 21.139412069000144, 45.30369578100003 ], [ 21.155638469000138, 45.295169170000108 ], [ 21.189744914000102, 45.259564108000106 ], [ 21.206074666000148, 45.245921529000029 ], [ 21.239250936000161, 45.229385071000124 ], [ 21.25713098200012, 45.224114075000173 ], [ 21.299298950000093, 45.223183899000034 ], [ 21.405545695000143, 45.199671122000055 ], [ 21.433761027000116, 45.188819071000111 ], [ 21.45939253700007, 45.174039612000072 ], [ 21.484388389000117, 45.152701690000086 ], [ 21.493292277000165, 45.14510081000013 ], [ 21.497839803000119, 45.13187164300011 ], [ 21.494119100000205, 45.119314270000118 ], [ 21.4815100510001, 45.111562806000094 ], [ 21.469004353000088, 45.11104604100008 ], [ 21.458565715000134, 45.107325338000052 ], [ 21.44998742700011, 45.101020813000062 ], [ 21.442442667000165, 45.092907613000122 ], [ 21.443786255000134, 45.091460674000061 ], [ 21.444406372000117, 45.085259502000056 ], [ 21.444406372000117, 45.077869772000057 ], [ 21.443786255000134, 45.072908834000103 ], [ 21.440995727000171, 45.068723043000077 ], [ 21.432520792000076, 45.061488343000107 ], [ 21.429523560000149, 45.057302552000081 ], [ 21.425596150000104, 45.04324656200005 ], [ 21.425079386000135, 45.036218567000034 ], [ 21.421875447000076, 45.031412659000026 ], [ 21.409266398000142, 45.023971253000113 ], [ 21.398827758000124, 45.021387431000093 ], [ 21.373299601000099, 45.020095520000055 ], [ 21.363377726000181, 45.016529847000086 ], [ 21.356143026000126, 45.00857167600013 ], [ 21.351388794000115, 44.998236389000013 ], [ 21.353455852000195, 44.989813131000048 ], [ 21.366995077000155, 44.98728098600013 ], [ 21.383944946000071, 44.986660869000062 ], [ 21.387045532000116, 44.981544902000095 ], [ 21.384565063000139, 44.97493031900008 ], [ 21.385185181000111, 44.969504293000099 ], [ 21.408439575000131, 44.958342183000084 ], [ 21.456498657000083, 44.952347717000137 ], [ 21.4815100510001, 44.943562724000074 ], [ 21.516339966000146, 44.93389923200003 ], [ 21.531016073000131, 44.924649150000036 ], [ 21.539077596000112, 44.908474426000041 ], [ 21.536287068000064, 44.889302470000118 ], [ 21.522127727000111, 44.880775859000025 ], [ 21.4815100510001, 44.872610983000087 ], [ 21.453398072000141, 44.869562073000068 ], [ 21.395313761000153, 44.871629130000102 ], [ 21.368545369000088, 44.864859517000085 ], [ 21.355522908000154, 44.856591288000047 ], [ 21.346427857000094, 44.84563588500005 ], [ 21.342810506000177, 44.831941631000049 ], [ 21.359799635000144, 44.826657221000048 ], [ 21.359841227000146, 44.826644284000039 ], [ 21.360587199000122, 44.826412252000026 ], [ 21.378570597000106, 44.816645407000081 ], [ 21.395933879000125, 44.790238749000096 ], [ 21.41216027800013, 44.784812724000048 ], [ 21.497219686000136, 44.778043111000173 ], [ 21.558404582000094, 44.781660461000072 ], [ 21.5780416260001, 44.777681377000093 ], [ 21.59561161200017, 44.765950826000093 ], [ 21.60429325400014, 44.749982809000059 ], [ 21.610287720000173, 44.731947734000059 ], [ 21.619692830000133, 44.713912659000059 ], [ 21.656279745000177, 44.687661032000122 ], [ 21.705165649000151, 44.677067363000063 ], [ 21.756842081000087, 44.67727406900012 ], [ 21.801697225000083, 44.683888652000107 ], [ 21.838284139000109, 44.695205790000088 ], [ 21.8554407150001, 44.69846140500006 ], [ 21.871977173000175, 44.695980937000101 ], [ 21.962410930000146, 44.662287903000035 ], [ 21.99434696400013, 44.658567200000036 ], [ 22.004268839000133, 44.651539205000105 ], [ 22.03217411300011, 44.603325094000198 ], [ 22.034242904000138, 44.596168195000089 ], [ 22.036173617000173, 44.58948897000009 ], [ 22.039822225000165, 44.576866761000119 ], [ 22.04519657400013, 44.569218649000064 ], [ 22.055738566000116, 44.562138977000117 ], [ 22.067107381000199, 44.557229717000084 ], [ 22.076305786000177, 44.550718486000036 ], [ 22.086951131000177, 44.521779683000076 ], [ 22.104314412000093, 44.509635722000056 ], [ 22.126638631000162, 44.502659403000067 ], [ 22.148239380000149, 44.500902405000076 ], [ 22.172113892000112, 44.50534657900009 ], [ 22.185136352000171, 44.515113424000063 ], [ 22.299031209000105, 44.661667786000081 ], [ 22.304922323000199, 44.677377422000049 ], [ 22.319701782000124, 44.685335592000101 ], [ 22.361146281000089, 44.69205352800013 ], [ 22.380679973000099, 44.700528463000111 ], [ 22.415509887000155, 44.727813620000049 ], [ 22.426051880000131, 44.733653056000023 ], [ 22.450546508000173, 44.732981263000042 ], [ 22.468943319000175, 44.730190736000097 ], [ 22.483722778000185, 44.723989563000103 ], [ 22.553279256000081, 44.669160869000095 ], [ 22.587489054000088, 44.649368795000029 ], [ 22.621182088000126, 44.637431539000076 ], [ 22.700143676000096, 44.63061025100005 ], [ 22.714716431000141, 44.623065491000077 ], [ 22.765152628000152, 44.58280955000005 ], [ 22.759261515000162, 44.564671123000025 ], [ 22.741691528000075, 44.55185536700013 ], [ 22.71936730900012, 44.54436228500002 ], [ 22.700143676000096, 44.541830140000101 ], [ 22.678542928000127, 44.545550843000015 ], [ 22.64216271900014, 44.563120830000102 ], [ 22.621182088000126, 44.569218649000064 ], [ 22.600304810000154, 44.56978709000002 ], [ 22.580461059000157, 44.565497946000036 ], [ 22.565578247000133, 44.555421041000088 ], [ 22.559790487000157, 44.538781230000083 ], [ 22.556689900000123, 44.52146962500008 ], [ 22.54842167200016, 44.511702779000203 ], [ 22.535502563000165, 44.507516988000091 ], [ 22.500362590000123, 44.506380107000084 ], [ 22.491060832000187, 44.504209697000093 ], [ 22.484136189000196, 44.499765524000068 ], [ 22.479795370000119, 44.490412090000049 ], [ 22.477211548000128, 44.476976217000086 ], [ 22.477004842000071, 44.463953756000066 ], [ 22.480002075000186, 44.455788880000043 ], [ 22.500982706000173, 44.441939596000068 ], [ 22.505426880000186, 44.435014954000096 ], [ 22.506357056000127, 44.427521871000138 ], [ 22.503979940000193, 44.41170888300006 ], [ 22.505116821000115, 44.40406077100009 ], [ 22.522686808000174, 44.375070292000103 ], [ 22.549351847000111, 44.348973694000094 ], [ 22.58283817500012, 44.328406474000118 ], [ 22.621182088000126, 44.315900778000113 ], [ 22.662523234000076, 44.311663310000156 ], [ 22.681540161000129, 44.305307109000054 ], [ 22.689498332000198, 44.291716208000068 ], [ 22.685364217000171, 44.243657125000098 ], [ 22.690738566000135, 44.22887766500007 ], [ 22.691640373000155, 44.22843453900002 ], [ 22.648777303000145, 44.213994853000131 ], [ 22.639992310000139, 44.207328593000042 ], [ 22.62479943800011, 44.189396872000131 ], [ 22.608573039000106, 44.175857646000068 ], [ 22.606195923000172, 44.17456573500003 ], [ 22.604852335000203, 44.168467916000068 ], [ 22.605989217000115, 44.16314524400012 ], [ 22.607952921000134, 44.159992981000059 ], [ 22.609399861000128, 44.159941305000061 ], [ 22.599064575000142, 44.130330709000091 ], [ 22.597100871000094, 44.119065247000051 ], [ 22.598134399000173, 44.109298401000089 ], [ 22.604645630000135, 44.088162740000129 ], [ 22.604748982000075, 44.079377747000066 ], [ 22.59296675700017, 44.063926494000057 ], [ 22.57519006400014, 44.061394348000064 ], [ 22.554622844000164, 44.062427877000047 ], [ 22.534158976000185, 44.057156881000125 ], [ 22.522583455000159, 44.044702861000118 ], [ 22.514935343000076, 44.030285136000103 ], [ 22.503669882000111, 44.019898173000101 ], [ 22.48144901500018, 44.019433085000074 ], [ 22.465885257000195, 44.017624140000052 ], [ 22.434320109000168, 44.013955384000084 ], [ 22.411789184000156, 44.006927389000069 ], [ 22.399593546000119, 43.993336487000093 ], [ 22.397319783000114, 43.980934144000102 ], [ 22.396803019000174, 43.95194366500003 ], [ 22.394529256000141, 43.93633738199999 ], [ 22.391945435000139, 43.931867371000081 ], [ 22.382023560000164, 43.918560690000064 ], [ 22.379026326000144, 43.913496399000095 ], [ 22.377062622000125, 43.883524068000057 ], [ 22.367554159000122, 43.85275075300008 ], [ 22.354738403000141, 43.829703065000032 ], [ 22.349467407000105, 43.807921448000101 ], [ 22.362593221000083, 43.780842998000125 ], [ 22.388534790000136, 43.758286235000114 ], [ 22.389568319000205, 43.750508932000102 ], [ 22.385847616000092, 43.733817444000081 ], [ 22.386054321000159, 43.725497538000113 ], [ 22.390498495000145, 43.712449240000055 ], [ 22.396906372000103, 43.699400940000103 ], [ 22.404864543000173, 43.687179464000096 ], [ 22.413959595000136, 43.676663310000052 ], [ 22.426465291000142, 43.668214213000041 ], [ 22.455920858000127, 43.656406149000119 ], [ 22.466256144000141, 43.649119772000049 ], [ 22.472870728000146, 43.635942282000158 ], [ 22.473800903000097, 43.61299794600005 ], [ 22.48144901500018, 43.600647278000096 ], [ 22.481759074000166, 43.599975485000087 ], [ 22.48196578000011, 43.599458720000072 ], [ 22.481759074000166, 43.598941956000019 ], [ 22.48144901500018, 43.598528545000093 ], [ 22.478141723000164, 43.594911194000204 ], [ 22.477108194000095, 43.591293844000049 ], [ 22.478141723000164, 43.58757314100005 ], [ 22.48144901500018, 43.58413665800002 ], [ 22.482689250000107, 43.581733704000058 ], [ 22.483102661000117, 43.57927907300008 ], [ 22.482689250000107, 43.576695252000079 ], [ 22.48144901500018, 43.574111430000087 ], [ 22.478658488000121, 43.569176331000122 ], [ 22.477624959000138, 43.564163717000085 ], [ 22.478451783000168, 43.55922861700013 ], [ 22.490647420000158, 43.540883485000037 ], [ 22.509354288000139, 43.493341166000036 ], [ 22.518862752000132, 43.474246725000128 ], [ 22.532608684000166, 43.464841614000093 ], [ 22.565784953000104, 43.453343608000054 ], [ 22.572709595000163, 43.448150127000062 ], [ 22.586765584000176, 43.434430033000112 ], [ 22.596274048000168, 43.429159038000094 ], [ 22.606919393000169, 43.427402038000096 ], [ 22.628520141000138, 43.428254700000124 ], [ 22.637821900000148, 43.426368511000121 ], [ 22.645366658000114, 43.420296529000083 ], [ 22.656528768000129, 43.403191631000212 ], [ 22.658926066000163, 43.401295034000057 ], [ 22.664693644000153, 43.396732077000067 ], [ 22.674202108000145, 43.394148255000076 ], [ 22.693219035000112, 43.394871725000158 ], [ 22.702934204000144, 43.394044902000061 ], [ 22.71936730900012, 43.388670553000097 ], [ 22.724343132000143, 43.386060131000093 ], [ 22.733009888000112, 43.381513367000125 ], [ 22.804530070000141, 43.328984274000064 ], [ 22.817139119000075, 43.315496724000113 ], [ 22.820756469000173, 43.307538554000061 ], [ 22.823857056000122, 43.289296773000089 ], [ 22.826957642000139, 43.281390279000036 ], [ 22.833158814000143, 43.274646505000092 ], [ 22.857343384000103, 43.25694732700002 ], [ 22.883801717000097, 43.230592347000126 ], [ 22.897754353000096, 43.220334574000063 ], [ 22.915531046000126, 43.21224721300014 ], [ 22.964727010000075, 43.204418234000045 ], [ 22.981366822000098, 43.198992208000064 ], [ 22.9829019350002, 43.187317919000108 ], [ 22.984570760000167, 43.174626771000121 ], [ 22.974028768000125, 43.141192118000063 ], [ 22.955631958000112, 43.108274232 ], [ 22.935271443000175, 43.085562439000043 ], [ 22.92710656800017, 43.081144105000121 ], [ 22.910156698000151, 43.075278829000055 ], [ 22.901681763000141, 43.06974945100005 ], [ 22.896720825000102, 43.062721457000109 ], [ 22.889486124000143, 43.044376323000037 ], [ 22.884215128000108, 43.036650696000052 ], [ 22.842253865000202, 43.007505188000025 ], [ 22.829024699000115, 42.993655905000068 ], [ 22.829024699000115, 42.993500875000038 ], [ 22.828921346000186, 42.993449198000107 ], [ 22.828817993000143, 42.993449198000107 ], [ 22.815795532000124, 42.98970265700008 ], [ 22.788096964000175, 42.984896749000072 ], [ 22.776418091000124, 42.979729106000079 ], [ 22.769390096000109, 42.971280009000068 ], [ 22.763188924000133, 42.95864512100006 ], [ 22.745515584000117, 42.910069275000055 ], [ 22.739578618000138, 42.898857543000091 ], [ 22.738797648000087, 42.89738271100002 ], [ 22.727015422000193, 42.886892395000061 ], [ 22.696629680000143, 42.877409770000085 ], [ 22.666243937000075, 42.871932068000078 ], [ 22.590899699000204, 42.886892395000061 ], [ 22.563614542000096, 42.884282735000042 ], [ 22.549971965000083, 42.877358093000069 ], [ 22.544785162000096, 42.871706438000061 ], [ 22.544494262000114, 42.871389466000053 ], [ 22.537569621000131, 42.868340556000121 ], [ 22.519792928000186, 42.87035593700007 ], [ 22.506046997000141, 42.8701233930001 ], [ 22.497055298000106, 42.864413147000036 ], [ 22.48144901500018, 42.846739807000048 ], [ 22.470907023000109, 42.840125224000062 ], [ 22.445482218000109, 42.830177511000059 ], [ 22.436800578000145, 42.824286398000126 ], [ 22.430446174000082, 42.817076593000095 ], [ 22.427395467000082, 42.813615214000052 ], [ 22.425845174000159, 42.809842835000026 ], [ 22.429359172000119, 42.806122131000095 ], [ 22.453130331000182, 42.763592428000052 ], [ 22.466566203000127, 42.748528748000055 ], [ 22.48144901500018, 42.739821269000103 ], [ 22.482585897000092, 42.736824036000073 ], [ 22.482895955000174, 42.733775126000054 ], [ 22.482585897000092, 42.730674541000027 ], [ 22.48144901500018, 42.727677307000093 ], [ 22.468116496000135, 42.718323873000131 ], [ 22.442071573000163, 42.681685282000089 ], [ 22.449202921000108, 42.667965190000061 ], [ 22.44455204200014, 42.643289694000075 ], [ 22.441318219000095, 42.632891463000092 ], [ 22.428842407000076, 42.592775981000031 ], [ 22.425328410000134, 42.572854716000037 ], [ 22.429669230000115, 42.571407776000044 ], [ 22.48144901500018, 42.535621846000097 ], [ 22.512144816000102, 42.519188742000054 ], [ 22.524857218000164, 42.507664897000026 ], [ 22.532505330000134, 42.493557231000082 ], [ 22.532505330000134, 42.493402202000127 ], [ 22.536536092000148, 42.478390198000071 ], [ 22.533125448000106, 42.457590434000096 ], [ 22.519482870000104, 42.420926005000055 ], [ 22.508837525000104, 42.404932150000022 ], [ 22.49757206200016, 42.399196065000055 ], [ 22.485066365000165, 42.397154846000078 ], [ 22.469770141000197, 42.391702983000116 ], [ 22.454370565000204, 42.376768494000132 ], [ 22.438454223000093, 42.340052388000075 ], [ 22.423984822000165, 42.325893047000122 ], [ 22.405794718000124, 42.321552226000037 ], [ 22.364143514000205, 42.320983785000081 ], [ 22.345023234000109, 42.313439026000125 ], [ 22.325282837000145, 42.314317525000163 ], [ 22.307609497000129, 42.319330140000048 ], [ 22.291589803000193, 42.328399354000098 ], [ 22.276913696000094, 42.341240947000088 ], [ 22.274019816000106, 42.348475647000058 ], [ 22.273296346000109, 42.365477194000093 ], [ 22.268852173000198, 42.370334779000089 ], [ 22.259757120000131, 42.369094544000077 ], [ 22.23340214000018, 42.348889058000069 ], [ 22.095529419000115, 42.305816752000069 ], [ 22.060906209000109, 42.301088359000076 ], [ 22.045407482000172, 42.302424041 ], [ 22.027626587000071, 42.303956401000065 ], [ 21.994967082000187, 42.312612203000114 ], [ 21.941533650000167, 42.333101909000092 ], [ 21.929027954000077, 42.335117289000024 ], [ 21.918279256000147, 42.331344910000027 ], [ 21.884379517000156, 42.309511618000087 ], [ 21.87735152200014, 42.308219706000031 ], [ 21.837353963000169, 42.308555603000102 ], [ 21.817200154000176, 42.305144959000089 ], [ 21.719520700000118, 42.260956635000198 ], [ 21.70650923600013, 42.255070496000073 ], [ 21.692039835000088, 42.242022197000054 ], [ 21.676950317000177, 42.234942525000193 ], [ 21.676886452000133, 42.234944820000109 ], [ 21.659690389000104, 42.235562643000165 ], [ 21.624653768000172, 42.24277150500005 ], [ 21.575044392000109, 42.242022197000054 ], [ 21.564065710000136, 42.246289302000051 ], [ 21.55385705600014, 42.273984070000111 ], [ 21.514893026000152, 42.317831523000123 ], [ 21.51602990700016, 42.341938579000086 ], [ 21.537320597000132, 42.358630066000032 ], [ 21.596645141000153, 42.37209177700008 ], [ 21.617419068000117, 42.386638692000119 ], [ 21.621863240000124, 42.402167460000058 ], [ 21.61690230300016, 42.433922628000076 ], [ 21.618969360000136, 42.449244691000033 ], [ 21.627857706000157, 42.46038096100007 ], [ 21.667855265000128, 42.490094910000053 ], [ 21.717671346000145, 42.551150615000026 ], [ 21.727696574000078, 42.574146627000076 ], [ 21.726766398000109, 42.577944845 ], [ 21.719738403000122, 42.586678162000069 ], [ 21.718291463000128, 42.591018982000051 ], [ 21.720151815000122, 42.593887024000125 ], [ 21.726973103000176, 42.596393331000016 ], [ 21.728833455000171, 42.598305359000037 ], [ 21.730073690000125, 42.60101837200007 ], [ 21.735551392000104, 42.621275534000077 ], [ 21.734724569000093, 42.62424692800009 ], [ 21.744543091000139, 42.629647116000072 ], [ 21.756532023000204, 42.633626200000052 ], [ 21.767074016000066, 42.638716329000019 ], [ 21.772758422000123, 42.6475013230001 ], [ 21.764386840000128, 42.669618836000026 ], [ 21.744249788000133, 42.679424528000098 ], [ 21.73865197700016, 42.682150370000031 ], [ 21.708886352000064, 42.687188823000085 ], [ 21.68738895700011, 42.686827088000101 ], [ 21.64408410700014, 42.672306010000042 ], [ 21.629407999000165, 42.672202657000199 ], [ 21.612664836000107, 42.680393372000125 ], [ 21.580522095000077, 42.710210673000134 ], [ 21.56522587000012, 42.720184225000068 ], [ 21.542488240000154, 42.725816956000088 ], [ 21.441822550000097, 42.736100566000076 ], [ 21.417800406000168, 42.735570162000059 ], [ 21.405545695000143, 42.735299581000064 ], [ 21.388699178000167, 42.739046123000165 ], [ 21.378673951000138, 42.744136251000057 ], [ 21.379190714000174, 42.747004293000131 ], [ 21.383944946000071, 42.749975688000049 ], [ 21.38714888500013, 42.754962464000116 ], [ 21.390559529000171, 42.770413717000096 ], [ 21.404098755000149, 42.803977559000131 ], [ 21.408336222000116, 42.820746562000082 ], [ 21.408418886000106, 42.841743208000068 ], [ 21.408439575000131, 42.846998190000122 ], [ 21.398931111000138, 42.854568787000076 ], [ 21.378777303000163, 42.855292257000073 ], [ 21.346737915000148, 42.860847473000078 ], [ 21.336402628000144, 42.865472514000132 ], [ 21.316972290000166, 42.877616476000114 ], [ 21.306326945000166, 42.882448222000036 ], [ 21.294958130000111, 42.884386088000085 ], [ 21.271600383000134, 42.884282735000042 ], [ 21.260541626000133, 42.886556499000065 ], [ 21.232429647000117, 42.910896098000066 ], [ 21.226745240000156, 42.94252207500007 ], [ 21.225298299000173, 42.973553772000102 ], [ 21.209795369000148, 42.995877991000057 ], [ 21.193052206000118, 42.997893372000121 ], [ 21.179409627000098, 42.990581157000108 ], [ 21.165353638000084, 42.985103455000043 ], [ 21.147887003000136, 42.992622376000085 ], [ 21.139308716000102, 43.00582570400006 ], [ 21.124012491000144, 43.058277283000038 ], [ 21.108509562000137, 43.081557516000132 ], [ 21.092593221000101, 43.090678406000038 ], [ 21.025827271000168, 43.093365580000139 ], [ 21.00515669800015, 43.09912750200003 ], [ 20.993431297000143, 43.104148257000119 ], [ 20.912494133000138, 43.13880512900009 ], [ 20.838551880000182, 43.170466817000019 ], [ 20.832040649000106, 43.1786058550001 ], [ 20.836071411000205, 43.179432678000055 ], [ 20.839068644000122, 43.192455140000064 ], [ 20.840618937000158, 43.206976217000019 ], [ 20.839998820000176, 43.212092184000099 ], [ 20.851470988000187, 43.219817811000027 ], [ 20.861599569000134, 43.21751820900009 ], [ 20.864700154000104, 43.21733734200005 ], [ 20.855088338000172, 43.23144500800008 ], [ 20.8484737550001, 43.238137106000082 ], [ 20.838448527000168, 43.245862732000077 ], [ 20.819431600000172, 43.257412415000019 ], [ 20.809717238000133, 43.259610189000071 ], [ 20.794420207000201, 43.263070984000066 ], [ 20.76951216600014, 43.260848898000049 ], [ 20.745327596000152, 43.252864888000076 ], [ 20.666986124000175, 43.209663392000053 ], [ 20.644868612000067, 43.203307190000132 ], [ 20.612312459000123, 43.202273662000053 ], [ 20.60404423000017, 43.197958679000081 ], [ 20.597533000000112, 43.18496205700005 ], [ 20.600116821000199, 43.173825786000194 ], [ 20.612105754000169, 43.154938050000069 ], [ 20.62058068900015, 43.133337301000026 ], [ 20.626058390000139, 43.123725485000094 ], [ 20.632052856000172, 43.11726593000013 ], [ 20.640941203000096, 43.115276388000026 ], [ 20.651689901000111, 43.116309916000077 ], [ 20.661818481000154, 43.115948182000082 ], [ 20.669156535000155, 43.109798686000019 ], [ 20.664919068000103, 43.085407410000087 ], [ 20.643835083000084, 43.052256979000092 ], [ 20.617273397000162, 43.022129619000097 ], [ 20.596396118000172, 43.007091777000099 ], [ 20.584303833000121, 43.006910909000069 ], [ 20.572831665000194, 43.00933970200002 ], [ 20.562393026000137, 43.009494731000061 ], [ 20.553401326000198, 43.002595927000087 ], [ 20.543892863000139, 42.98724802700012 ], [ 20.538415161000131, 42.98065928100003 ], [ 20.530456990000175, 42.975155742000211 ], [ 20.511130005000126, 42.970194804000087 ], [ 20.49345666500011, 42.970194804000087 ], [ 20.476403442000105, 42.966370748000131 ], [ 20.459453572000172, 42.950015158 ], [ 20.450978637000077, 42.922032369000092 ], [ 20.466688273000159, 42.909500834000099 ], [ 20.4889091390001, 42.899191386000084 ], [ 20.494366526000164, 42.887466531000214 ], [ 20.498831014000189, 42.877874858 ], [ 20.476300089000148, 42.855524801000044 ], [ 20.428034302000157, 42.840641988000087 ], [ 20.345352010000084, 42.827438660000084 ], [ 20.355170532000159, 42.866170146000016 ], [ 20.353620239000122, 42.890974834000147 ], [ 20.337083781000132, 42.906968689000095 ], [ 20.275588827000121, 42.929887187000119 ], [ 20.223188924000084, 42.957663269000093 ], [ 20.194560181000099, 42.966835836000158 ], [ 20.140920044000126, 42.970814922000059 ], [ 20.129464296000151, 42.973604791000056 ], [ 20.116942179000119, 42.976654358000033 ], [ 20.05634425500017, 43.020795978000066 ], [ 20.054388424000166, 43.022220673000092 ], [ 20.019893840000151, 43.04734771800004 ], [ 19.959742472000102, 43.078560282000112 ], [ 19.949820598000201, 43.085924174000112 ], [ 19.942275838000171, 43.095639343000059 ], [ 19.936591431000124, 43.105897116000065 ], [ 19.929150024000194, 43.113906963000048 ], [ 19.916644328000189, 43.117059225000091 ], [ 19.907135864000111, 43.113261007000048 ], [ 19.883778117000162, 43.095691020000075 ], [ 19.872202596000136, 43.090368348000126 ], [ 19.838302856000126, 43.088352967000091 ], [ 19.805126587000188, 43.089954936000126 ], [ 19.781768839000136, 43.096466166000098 ], [ 19.761201619000161, 43.108739319000037 ], [ 19.742804810000166, 43.126516012000067 ], [ 19.713555949000124, 43.165609233000069 ], [ 19.705494425000126, 43.166177673000035 ], [ 19.697329549000102, 43.160209046000105 ], [ 19.684617147000154, 43.156720887000077 ], [ 19.663016398000167, 43.158503723000067 ], [ 19.618678019000129, 43.168244731000087 ], [ 19.598110799000153, 43.176202902000071 ], [ 19.580850871000166, 43.187804261000096 ], [ 19.549948364000159, 43.21751820900009 ], [ 19.547844736000087, 43.218814866000073 ], [ 19.512431274000164, 43.240643413000058 ], [ 19.502302693000132, 43.251934713000125 ], [ 19.485146118000159, 43.2800983690001 ], [ 19.473053833000165, 43.293275859000076 ], [ 19.414039347000141, 43.338389384000024 ], [ 19.372284790000094, 43.384226379000083 ], [ 19.355644979000175, 43.393063049000077 ], [ 19.218392375000178, 43.438202413000042 ], [ 19.192244100000067, 43.454532165000089 ], [ 19.175914347000145, 43.480887146000057 ], [ 19.175190877000148, 43.509619243000131 ], [ 19.195344686000112, 43.53279612200005 ], [ 19.217462199000124, 43.53279612200005 ], [ 19.229451131000189, 43.549745992000069 ], [ 19.238856242000139, 43.572121887000051 ], [ 19.252705525000096, 43.588632507000014 ], [ 19.263660930000185, 43.590957947000064 ], [ 19.289189087000125, 43.58793487500013 ], [ 19.30086796000009, 43.588296611000047 ], [ 19.312650187000173, 43.593154195000054 ], [ 19.335801228000093, 43.606512553000087 ], [ 19.346549926000193, 43.608837992000119 ], [ 19.36339644300017, 43.601577454000036 ], [ 19.380449666000118, 43.585583598000099 ], [ 19.394609009000163, 43.566463318000089 ], [ 19.402877238000201, 43.549642639000112 ], [ 19.410732056000143, 43.54075429300012 ], [ 19.419310344000166, 43.549255067000033 ], [ 19.431816040000172, 43.571140035000056 ], [ 19.443908325000137, 43.571863506000071 ], [ 19.481735473000128, 43.560830587000069 ], [ 19.489590291000155, 43.564447937000054 ], [ 19.491760702000164, 43.568607890000081 ], [ 19.488970174000201, 43.573181255000108 ], [ 19.481735473000128, 43.578116353000055 ], [ 19.476877889000122, 43.58868418400003 ], [ 19.475637654000167, 43.602559306000089 ], [ 19.477498006000161, 43.616977030000029 ], [ 19.481735473000128, 43.628914287000057 ], [ 19.5073669840001, 43.647181905000124 ], [ 19.505713338000135, 43.673640239000107 ], [ 19.481735473000128, 43.729218242000101 ], [ 19.461685018000168, 43.762136129000069 ], [ 19.359469035000103, 43.842208761000037 ], [ 19.305932251000172, 43.904737244 ], [ 19.27544315600008, 43.933262634000144 ], [ 19.24102665200013, 43.952357077000059 ], [ 19.229347778000147, 43.957679748000103 ], [ 19.240716594000133, 43.965741272000074 ], [ 19.242887003000135, 43.97282094400002 ], [ 19.238132771000153, 43.985378316000109 ], [ 19.238029419000128, 43.992509664000053 ], [ 19.243507121000107, 44.002018128000216 ], [ 19.252085409000131, 44.007495830000025 ], [ 19.272755981000159, 44.012405090000058 ], [ 19.287328735000102, 44.01302520800003 ], [ 19.300557902000094, 44.00951121000007 ], [ 19.32587935400008, 43.99659210200015 ], [ 19.351717570000119, 43.979125468000106 ], [ 19.364636678000124, 43.973286031000029 ], [ 19.379106079000138, 43.973854472000099 ], [ 19.393988892000095, 43.977058411000073 ], [ 19.447112264000111, 43.979797262000019 ], [ 19.504059692000112, 43.975663147000162 ], [ 19.528554321000144, 43.977213441000103 ], [ 19.552222127000078, 43.98341461200009 ], [ 19.593356567000143, 44.005583802 ], [ 19.610409790000091, 44.019278057000022 ], [ 19.6188847250001, 44.035711161000094 ], [ 19.611443319000074, 44.054521383000107 ], [ 19.598937622000079, 44.062582906000088 ], [ 19.58994592300013, 44.060309144000072 ], [ 19.583848104000168, 44.05431467800004 ], [ 19.580230753000194, 44.051524150000077 ], [ 19.570928995000173, 44.056898499000042 ], [ 19.554599243000126, 44.071264547000069 ], [ 19.522043091000086, 44.085010478000086 ], [ 19.516189487000162, 44.091193506000096 ], [ 19.498168579000094, 44.110228577000058 ], [ 19.482665649000182, 44.120667217000076 ], [ 19.476361125000068, 44.127023417000103 ], [ 19.474190714000173, 44.144903463000063 ], [ 19.465715779000078, 44.152809957000031 ], [ 19.459721313000159, 44.152706604000073 ], [ 19.448455851000091, 44.144438375000036 ], [ 19.442564738000101, 44.14319814 ], [ 19.435536743000171, 44.146092021000086 ], [ 19.424891398000085, 44.153791810000072 ], [ 19.3811731360002, 44.177097880000119 ], [ 19.362362915000091, 44.191205547000052 ], [ 19.356058390000101, 44.204021301000111 ], [ 19.353991333000124, 44.224330140000049 ], [ 19.341588989000144, 44.245827535000089 ], [ 19.324329061000157, 44.263965963000103 ], [ 19.307379191000166, 44.27419789599999 ], [ 19.295907023000126, 44.275799866000042 ], [ 19.263660930000185, 44.270167135000108 ], [ 19.24950158700014, 44.270735576000064 ], [ 19.240716594000133, 44.272699280000168 ], [ 19.220046020000126, 44.280244039000124 ], [ 19.177154582000156, 44.286961976000057 ], [ 19.157000773000107, 44.293576559000073 ], [ 19.13891402200008, 44.309337871000125 ], [ 19.116693156000139, 44.343702698000087 ], [ 19.108941691000126, 44.363649801000108 ], [ 19.107184693000164, 44.382718404000073 ], [ 19.115762980000085, 44.403595683000063 ], [ 19.129612264000144, 44.416153056000056 ], [ 19.141394490000152, 44.430829163000041 ], [ 19.143358195000189, 44.458217672000174 ], [ 19.12733850000015, 44.502556051000127 ], [ 19.12992232300013, 44.518317363000037 ], [ 19.165269002000144, 44.526688945000089 ], [ 19.173123820000171, 44.531443177000099 ], [ 19.179635051000133, 44.53826446500004 ], [ 19.185319458000095, 44.546222636000024 ], [ 19.187283162000114, 44.553302307000124 ], [ 19.186249633000131, 44.569322002000163 ], [ 19.188316691000097, 44.57603993700009 ], [ 19.193277628000146, 44.580587464000033 ], [ 19.204129679000118, 44.585134990000071 ], [ 19.208677205000129, 44.588390605000072 ], [ 19.255702759000116, 44.64564809200003 ], [ 19.270068807000115, 44.675620422000051 ], [ 19.277613566000156, 44.684870504000074 ], [ 19.288258911000156, 44.693035380000097 ], [ 19.308412720000149, 44.705127665000091 ], [ 19.318024536000138, 44.715462952000095 ], [ 19.328359822000152, 44.733963115 ], [ 19.363706503000145, 44.854627584000085 ], [ 19.367840617000184, 44.859278463000052 ], [ 19.373111613000106, 44.860260315000048 ], [ 19.376625610000161, 44.86299916600008 ], [ 19.375695434000107, 44.873127747000112 ], [ 19.372801554000119, 44.88144765300008 ], [ 19.36866744000011, 44.887132060000042 ], [ 19.36277632700012, 44.891111145000096 ], [ 19.356992726000129, 44.895868623000112 ], [ 19.356982304000155, 44.895877196000114 ], [ 19.353164510000113, 44.899017639000064 ], [ 19.352957805000131, 44.898087463000095 ], [ 19.350270629000107, 44.897002259000104 ], [ 19.34014204900015, 44.896227112000091 ], [ 19.330220174000146, 44.898707581000068 ], [ 19.310169718000111, 44.91235015900007 ], [ 19.301281372000091, 44.91235015900007 ], [ 19.293013143000138, 44.909404602000095 ], [ 19.28381473800016, 44.908371073000112 ], [ 19.239476359000122, 44.915140687000033 ], [ 19.229554484000118, 44.913745423000066 ], [ 19.211881144000102, 44.908371073000112 ], [ 19.201855916000085, 44.908371073000112 ], [ 19.196894979000149, 44.913176982000024 ], [ 19.193174276000121, 44.921548564000076 ], [ 19.186869751000103, 44.927543030000024 ], [ 19.174260701000094, 44.925424297000049 ], [ 19.084550415000109, 44.878967184000103 ], [ 19.06842736800013, 44.874833069000076 ], [ 19.047756795000112, 44.872714336000101 ], [ 19.015820760000139, 44.865634664000098 ], [ 18.994323364000195, 44.894831848000123 ], [ 18.991429484000122, 44.914933980000072 ], [ 19.01840458200013, 44.925682678 ], [ 19.031943807000118, 44.922633769000086 ], [ 19.052097615000093, 44.906975810000105 ], [ 19.06667036900015, 44.905683899000067 ], [ 19.078659302000119, 44.910851542000088 ], [ 19.087857707000126, 44.91932647700007 ], [ 19.103567342000161, 44.938240051000108 ], [ 19.113075806000069, 44.942425842000048 ], [ 19.124547973000176, 44.945939840000094 ], [ 19.131679321000121, 44.953174540000063 ], [ 19.127648560000125, 44.968419088000118 ], [ 19.118553507000144, 44.975550436000063 ], [ 19.098089640000182, 44.970021057000068 ], [ 19.087237589000154, 44.977100728000082 ], [ 19.085170533000081, 44.98728098600013 ], [ 19.08847782400008, 44.999476623000064 ], [ 19.093232055000072, 45.011517233000021 ], [ 19.095402466000166, 45.020922343000095 ], [ 19.094265584000141, 45.031412659000026 ], [ 19.085997355000103, 45.060919902000066 ], [ 19.082276652000189, 45.08494944300007 ], [ 19.079176066000144, 45.094612936000019 ], [ 19.071527954000175, 45.107066956000082 ], [ 19.064086548000148, 45.113578186000055 ], [ 19.054164673000145, 45.12060618100007 ], [ 19.046206502000189, 45.128357646000083 ], [ 19.044862915000124, 45.137245993000093 ], [ 19.060055786000163, 45.146857809 ], [ 19.116073039000185, 45.142878724000198 ], [ 19.137673787000153, 45.146030986000071 ], [ 19.141704549000139, 45.162154032000061 ], [ 19.128785441000133, 45.181067607000088 ], [ 19.12186079900016, 45.1957953900001 ], [ 19.143874959000129, 45.199516093000099 ], [ 19.15576053900017, 45.19496856700006 ], [ 19.174570760000165, 45.175796611000052 ], [ 19.185319458000095, 45.168045146000068 ], [ 19.204543091000119, 45.162877503000047 ], [ 19.225937133000116, 45.161947327000107 ], [ 19.267795044000195, 45.165823059000061 ], [ 19.272755981000159, 45.168355205000054 ], [ 19.275753215000151, 45.172851054000077 ], [ 19.279473918000178, 45.177243551000046 ], [ 19.286708618000148, 45.17951731400008 ], [ 19.291359497000201, 45.177708639000073 ], [ 19.299421020000096, 45.168975322000094 ], [ 19.304278605000121, 45.166546530000048 ], [ 19.390681600000107, 45.169337057000106 ], [ 19.393929400000133, 45.171624240000071 ], [ 19.405357707000178, 45.179672343000036 ], [ 19.407838175000137, 45.203133444000102 ], [ 19.397296183000094, 45.223287253000152 ], [ 19.378072550000155, 45.229591777000067 ], [ 19.363086385000173, 45.24824696900005 ], [ 19.162065063000171, 45.285040588000058 ], [ 19.124754679000148, 45.298114726000179 ], [ 19.098813110000094, 45.319870504000093 ], [ 19.096229289000178, 45.329120585000041 ], [ 19.095402466000166, 45.340489401000113 ], [ 19.091991821000136, 45.349997864000088 ], [ 19.082069946000132, 45.354028626000101 ], [ 19.040832153000139, 45.354028626000101 ], [ 19.020988403000132, 45.357232565000075 ], [ 19.00362512200013, 45.366120911000067 ], [ 18.988742310000163, 45.379246725000129 ], [ 18.975926554000097, 45.394956360000023 ], [ 19.02863651600012, 45.412164612000097 ], [ 19.037421509000097, 45.422293193000215 ], [ 19.031633748000132, 45.434023743000111 ], [ 19.0122576280001, 45.448468396000138 ], [ 19.003005004000158, 45.455366110000043 ], [ 18.996390422000161, 45.473814596000054 ], [ 19.009619588000163, 45.49867095900008 ], [ 19.017926147000168, 45.497807280000117 ], [ 19.077212362000125, 45.491642965000082 ], [ 19.10625451700011, 45.511641745000119 ], [ 19.095092407000095, 45.526059469000117 ], [ 19.082276652000189, 45.531175436000112 ], [ 19.067807251000147, 45.533397522000129 ], [ 19.050960734000085, 45.538926900000021 ], [ 19.040935506000068, 45.545024719000097 ], [ 19.036491333000157, 45.549468893000082 ], [ 19.033390747000112, 45.554636536000018 ], [ 19.027189575000136, 45.562594707000144 ], [ 19.018094523000144, 45.567400614000078 ], [ 19.009206177000152, 45.565488586000058 ], [ 19.0006278890001, 45.561199443000092 ], [ 18.983161255000169, 45.554739888000128 ], [ 18.973136027000152, 45.546264954000023 ], [ 18.960216919000118, 45.539133607000096 ], [ 18.941716757000108, 45.538926900000021 ], [ 18.932001586000155, 45.545541484000111 ], [ 18.912054484000151, 45.568227438000079 ], [ 18.903579549000142, 45.573085022000029 ], [ 18.906990194000173, 45.581663310000053 ], [ 18.908230428000195, 45.60042185500005 ], [ 18.91236454200012, 45.619232076000046 ], [ 18.924456828000103, 45.627707011000055 ], [ 18.9354122310001, 45.633391419000091 ], [ 18.962904093000162, 45.660108134000055 ], [ 18.968485148000184, 45.668738098000105 ], [ 18.962697388000095, 45.683052470000078 ], [ 18.948124634000152, 45.692044170000131 ], [ 18.931071411000119, 45.698917135000087 ], [ 18.917325480000073, 45.706565247000086 ], [ 18.908953898000107, 45.719432679000064 ], [ 18.904819784000097, 45.749766744000098 ], [ 18.900168904000111, 45.764907939000111 ], [ 18.871126750000116, 45.789971009000126 ], [ 18.863995402000086, 45.798549297000065 ], [ 18.848699178000118, 45.80955637600006 ], [ 18.844978475000119, 45.815705872000208 ], [ 18.846735474000099, 45.819995016000107 ], [ 18.850352824000169, 45.824232483000046 ], [ 18.852419881000145, 45.830071920000123 ], [ 18.855313761000133, 45.857357076000127 ], [ 18.887146443000177, 45.859475810000035 ], [ 18.8997554930001, 45.861387838000056 ], [ 18.906990194000173, 45.86795074500013 ], [ 18.903992960000153, 45.875702210000028 ], [ 18.893450969000185, 45.883867086000137 ], [ 18.872883748000106, 45.895235901000049 ], [ 18.881978800000155, 45.902625631000049 ], [ 18.889833619000115, 45.907896627000085 ], [ 18.906990194000173, 45.915699768000096 ], [ 18.901305786000137, 45.931202698 ], [ 18.962697388000095, 45.927947083000035 ], [ 18.98181766800019, 45.921849264000073 ], [ 18.987502076000141, 45.923812969000025 ], [ 18.988742310000163, 45.927016907000066 ], [ 18.986468547000158, 45.931254375000023 ], [ 18.978820434000085, 45.939780986000059 ], [ 18.977683553000162, 45.943501689000058 ], [ 18.978717081000156, 45.947170716000059 ], [ 18.98181766800019, 45.950788066000129 ], [ 19.005588827000167, 45.962570293000041 ], [ 19.030910279000125, 45.960038147000049 ], [ 19.048583618000151, 45.963448792000079 ], [ 19.049720500000149, 45.993111064000047 ], [ 19.065430135000128, 46.012024638000085 ], [ 19.08847782400008, 46.018845927000129 ], [ 19.111008748000103, 46.012954814000111 ], [ 19.125788208000131, 45.993266093000088 ], [ 19.125788208000131, 45.993111064000047 ], [ 19.148009074000157, 45.984067688000081 ], [ 19.235652303000165, 45.977711487000064 ], [ 19.26345422300011, 45.981432190000064 ], [ 19.274823039000125, 45.991612448000112 ], [ 19.279473918000178, 46.003808086000035 ], [ 19.286915324000091, 46.016158753000084 ], [ 19.298314567000119, 46.022122790000097 ], [ 19.306965779000137, 46.026649069000129 ], [ 19.325155884000168, 46.029491273000119 ], [ 19.362156209000148, 46.029646301000056 ], [ 19.378899373000195, 46.033677064000059 ], [ 19.389131307000156, 46.041531881000097 ], [ 19.396572713000182, 46.051557108000097 ], [ 19.40473759000011, 46.060238750000067 ], [ 19.4172432860002, 46.064321188000079 ], [ 19.428302043000201, 46.065509746000103 ], [ 19.43688033000015, 46.067990214000091 ], [ 19.453726847000127, 46.077550355000071 ], [ 19.460858195000156, 46.084474996000054 ], [ 19.465922485000135, 46.091968079000097 ], [ 19.472950480000151, 46.09868601600003 ], [ 19.49930546100012, 46.108607890000101 ], [ 19.4967216390001, 46.116876120000072 ], [ 19.489280233000073, 46.126022848000062 ], [ 19.487523234000093, 46.134239401000073 ], [ 19.501992635000136, 46.145608215000081 ], [ 19.525247029000155, 46.156408590000112 ], [ 19.549948364000159, 46.164160055000096 ], [ 19.568448527000101, 46.166433818000129 ], [ 19.589739217000073, 46.165968730000102 ], [ 19.647823527000156, 46.173875224000128 ], [ 19.6693209230001, 46.173100077000029 ], [ 19.690094848000143, 46.168397522000063 ] ] ] } }, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6.000000, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0.000000, "level": 2.000000, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0.000000, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0.000000, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0.000000, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "brk_group": null, "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "formal_fr": null, "note_adm0": null, "note_brk": null, "name_sort": "Slovenia", "name_alt": null, "mapcolor7": 2.000000, "mapcolor8": 3.000000, "mapcolor9": 2.000000, "mapcolor13": 12.000000, "pop_est": 2005692.000000, "gdp_md_est": 59340.000000, "pop_year": -99.000000, "lastcensus": 2011.000000, "gdp_year": -99.000000, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99.000000, "fips_10": null, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99.000000, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99.000000, "adm0_a3_wb": -99.000000, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8.000000, "long_len": 8.000000, "abbrev_len": 4.000000, "tiny": -99.000000, "homepart": 1.000000 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.343425741000118, 46.714178162000024 ], [ 16.357275024000103, 46.715831808000075 ], [ 16.357585082000156, 46.699011129000013 ], [ 16.365383073000118, 46.696712468000072 ], [ 16.366216373000128, 46.696466831000095 ], [ 16.371434367000148, 46.694928691000086 ], [ 16.390037882000087, 46.694153545000177 ], [ 16.405024048000172, 46.687254741000032 ], [ 16.410501749000161, 46.668367005000079 ], [ 16.402607057000097, 46.663108786000038 ], [ 16.396652466000177, 46.659142762000073 ], [ 16.377635539000124, 46.652864075000082 ], [ 16.368437133000128, 46.64299387599999 ], [ 16.372245692000121, 46.636341263000048 ], [ 16.37639530400017, 46.629092916000019 ], [ 16.394585408000125, 46.61901601200006 ], [ 16.430242147000115, 46.60439158200009 ], [ 16.467139119000137, 46.56470408200002 ], [ 16.500832153000175, 46.544808655000026 ], [ 16.515301554000132, 46.501710510000095 ], [ 16.491116984000143, 46.515146383000058 ], [ 16.481298462000098, 46.519022115000013 ], [ 16.470756469000122, 46.520262350000053 ], [ 16.449052368000139, 46.518350322000117 ], [ 16.440370727000158, 46.519022115000013 ], [ 16.431999145000191, 46.523207906000039 ], [ 16.415152628000129, 46.53555857399999 ], [ 16.406264282000109, 46.539485982000059 ], [ 16.394895467000111, 46.540106100000031 ], [ 16.382183065000163, 46.539382630000034 ], [ 16.369470662000197, 46.540571188000058 ], [ 16.35789514200016, 46.546979065000187 ], [ 16.351693970000071, 46.539485982000059 ], [ 16.351254482000144, 46.539922460000042 ], [ 16.344149210000126, 46.546979065000187 ], [ 16.340276431000149, 46.543827132000075 ], [ 16.329989868000069, 46.535455221000063 ], [ 16.310662883000134, 46.53098520900005 ], [ 16.295366659000166, 46.524448141000079 ], [ 16.263947388000133, 46.515921530000071 ], [ 16.260931084000134, 46.513576112000067 ], [ 16.234905233000148, 46.493338928000043 ], [ 16.234187647000084, 46.484892336000058 ], [ 16.233664999000098, 46.478740336000072 ], [ 16.23748905400015, 46.465071920000042 ], [ 16.249374634000077, 46.437528382000153 ], [ 16.25009810300017, 46.42944102000007 ], [ 16.248237752000165, 46.41334381100009 ], [ 16.250924927000199, 46.404998068000026 ], [ 16.25702274600016, 46.39990793900003 ], [ 16.274075968000176, 46.39210479800002 ], [ 16.278726847000144, 46.387350566000123 ], [ 16.279936481000135, 46.378661362000059 ], [ 16.280277140000152, 46.376214294000107 ], [ 16.275626262000117, 46.373165385000163 ], [ 16.252785279000193, 46.373423767000048 ], [ 16.217128540000203, 46.367351787000104 ], [ 16.208653605000109, 46.36709340400003 ], [ 16.191807088000132, 46.369780579000064 ], [ 16.177544393000147, 46.375594178000028 ], [ 16.153566528000141, 46.391433004000049 ], [ 16.143851359000109, 46.394714458000124 ], [ 16.131552368000143, 46.393060811000169 ], [ 16.123180786000177, 46.386885478000096 ], [ 16.115532674000121, 46.379289042000039 ], [ 16.106024211000118, 46.373733826000034 ], [ 16.094345337000135, 46.372261047000023 ], [ 16.088654305000176, 46.373085600000053 ], [ 16.057965128000149, 46.377532044000048 ], [ 16.057448365000113, 46.359651998 ], [ 16.059722127000128, 46.345311788 ], [ 16.059618774000114, 46.332315166000086 ], [ 16.052384073000155, 46.31859507300004 ], [ 16.04992239800012, 46.31673461500003 ], [ 16.038948201000096, 46.308440654 ], [ 16.019207804000132, 46.298828837000087 ], [ 15.998433879000089, 46.291542460000102 ], [ 15.993668240000147, 46.290613311000044 ], [ 15.982000773000124, 46.288338522000032 ], [ 15.948721150000097, 46.284204407 ], [ 15.918903311000122, 46.272827171000046 ], [ 15.883712199000115, 46.259399720000062 ], [ 15.880894659000148, 46.25934089900008 ], [ 15.879323324000069, 46.259308094000033 ], [ 15.834206176000151, 46.258366191000079 ], [ 15.818289835000144, 46.255523987 ], [ 15.803096965000123, 46.250511373000052 ], [ 15.799526193000162, 46.248606961000036 ], [ 15.789144328000134, 46.243069967000025 ], [ 15.768887166000127, 46.219350484000074 ], [ 15.749766886000117, 46.21077219700004 ], [ 15.677975292000099, 46.214462419000114 ], [ 15.661296834000098, 46.215319723000079 ], [ 15.639799438000153, 46.20767161 ], [ 15.626571312000152, 46.195209748000082 ], [ 15.622849568000134, 46.19170359400016 ], [ 15.604349406000125, 46.167002258000053 ], [ 15.589983358000126, 46.138683574000055 ], [ 15.589880005000083, 46.113517151000025 ], [ 15.603832641000082, 46.090986227000087 ], [ 15.623604838000091, 46.0764152980002 ], [ 15.631531209000116, 46.070574036000068 ], [ 15.643726847000124, 46.065509746000089 ], [ 15.671735474000116, 46.057396546000064 ], [ 15.683931112000124, 46.051143697000072 ], [ 15.692879847000171, 46.041635666000047 ], [ 15.697987101000166, 46.036209208000116 ], [ 15.693646281000071, 46.025770570000077 ], [ 15.681967407000116, 46.013523255000052 ], [ 15.674319295000117, 45.993317770000061 ], [ 15.674215943000178, 45.993162740000031 ], [ 15.675380807000124, 45.972486394000072 ], [ 15.677109822000176, 45.941796366000062 ], [ 15.675559530000072, 45.925156556000047 ], [ 15.670391887000164, 45.912650859000053 ], [ 15.663363892000149, 45.900816956000028 ], [ 15.659436483000093, 45.888828024000077 ], [ 15.663673950000145, 45.876063945000027 ], [ 15.675456177000143, 45.85596181300005 ], [ 15.676076294000097, 45.841699117000076 ], [ 15.666051066000165, 45.831673890000047 ], [ 15.645587199000119, 45.824129130000102 ], [ 15.626053508000126, 45.820201721000046 ], [ 15.587296183000177, 45.819219870000154 ], [ 15.549748079000096, 45.823692780000044 ], [ 15.523527466000161, 45.826816305000023 ], [ 15.513915649000154, 45.82340566100001 ], [ 15.495312133000169, 45.81265696300008 ], [ 15.485390259000098, 45.810176494000103 ], [ 15.473918091000172, 45.811571757000081 ], [ 15.462549275000185, 45.814207255000099 ], [ 15.451283813000117, 45.815137431000068 ], [ 15.440328410000149, 45.811468404000067 ], [ 15.435574178000167, 45.802114970000019 ], [ 15.439501587000137, 45.791676330000087 ], [ 15.441051879000156, 45.782167868000016 ], [ 15.429754502000122, 45.77569135400006 ], [ 15.429062947000176, 45.775294902000041 ], [ 15.331031283000129, 45.75248555400006 ], [ 15.303799276000149, 45.746149394000014 ], [ 15.263491658000106, 45.730388083000037 ], [ 15.255016723000097, 45.723463440000046 ], [ 15.249912989000137, 45.713731743000068 ], [ 15.248918904000135, 45.711836243000079 ], [ 15.250882609000172, 45.707650452000053 ], [ 15.258220663000174, 45.705118307000049 ], [ 15.267832479000077, 45.698452047000046 ], [ 15.277754354000166, 45.685016175000015 ], [ 15.283025350000116, 45.68010691300006 ], [ 15.291913696000137, 45.675559388000124 ], [ 15.304936158000146, 45.672148743 ], [ 15.309070272000099, 45.674164124000043 ], [ 15.310413859000136, 45.678194885000039 ], [ 15.314961385000089, 45.680882060000073 ], [ 15.327053670000168, 45.68315582299999 ], [ 15.330774373000082, 45.684551087000074 ], [ 15.333874960000117, 45.682639059000053 ], [ 15.3500344630001, 45.669619116000064 ], [ 15.351961711000143, 45.668066305000082 ], [ 15.368291463000077, 45.649049378000115 ], [ 15.373769165000169, 45.640212708000035 ], [ 15.353098592000151, 45.640316060000146 ], [ 15.339145955000163, 45.636905417000037 ], [ 15.326743612000172, 45.632254538000154 ], [ 15.297391398000116, 45.62569163100008 ], [ 15.291603637000151, 45.618250224000064 ], [ 15.287882934000123, 45.610343730000011 ], [ 15.281061646000182, 45.60615793900007 ], [ 15.26855594800017, 45.601662089000058 ], [ 15.269589477000153, 45.593445537000036 ], [ 15.276720825000098, 45.58269683899999 ], [ 15.282178582000114, 45.571494074000071 ], [ 15.282611938000088, 45.57060455300001 ], [ 15.288606405000138, 45.54455963200013 ], [ 15.296667928000119, 45.522958883000058 ], [ 15.311033977000108, 45.505905660000025 ], [ 15.361366821000104, 45.482031149000051 ], [ 15.351755004000097, 45.476140036000061 ], [ 15.333874960000117, 45.458518372000071 ], [ 15.325193318000174, 45.452833964 ], [ 15.31403120900012, 45.450508525000089 ], [ 15.281578410000122, 45.450973612000013 ], [ 15.225849152000137, 45.436449693000014 ], [ 15.184220011000065, 45.425600485000103 ], [ 15.139261515000157, 45.430044658000014 ], [ 15.066128234000132, 45.473933723000101 ], [ 15.05616581200016, 45.479912415000058 ], [ 15.007383260000125, 45.480842591000027 ], [ 14.997461385000122, 45.487198792000044 ], [ 14.986299275000192, 45.49086781800014 ], [ 14.977340822000144, 45.491728455000015 ], [ 14.962631470000161, 45.49314158100006 ], [ 14.945371541000071, 45.504510397000047 ], [ 14.922633911000105, 45.514949036000075 ], [ 14.904443807000149, 45.51443227200005 ], [ 14.900826456000146, 45.49314158100006 ], [ 14.881602823000151, 45.469783834000026 ], [ 14.83881473800011, 45.45898346000007 ], [ 14.797163533000088, 45.46518463200016 ], [ 14.781453898000137, 45.49314158100006 ], [ 14.781350545000095, 45.493193258000076 ], [ 14.781247192000166, 45.493348288000021 ], [ 14.781143839000151, 45.493348288000021 ], [ 14.688332967000122, 45.522028707000032 ], [ 14.668489217000143, 45.533965963000071 ], [ 14.668179158000157, 45.539133607000053 ], [ 14.671693156000117, 45.556806946000052 ], [ 14.669832804000094, 45.564558411000064 ], [ 14.664045044000119, 45.570036113000072 ], [ 14.663674874000151, 45.570187028000106 ], [ 14.6573271070001, 45.572774964000189 ], [ 14.650299113000187, 45.574842021000052 ], [ 14.615985962000167, 45.594065654000076 ], [ 14.603066853000144, 45.603574117000079 ], [ 14.593868449000155, 45.616183167000088 ], [ 14.592938273000101, 45.629670716000049 ], [ 14.594075155000127, 45.648015849000046 ], [ 14.591904744000118, 45.663363750000201 ], [ 14.580949341000149, 45.667807922000037 ], [ 14.569094979000141, 45.664251613000033 ], [ 14.563896118000116, 45.662691955000128 ], [ 14.556144654000121, 45.65669749 ], [ 14.543638956000109, 45.63644032900001 ], [ 14.533096964000151, 45.62569163100008 ], [ 14.507878866000112, 45.605847880000084 ], [ 14.498577108000177, 45.596184388000154 ], [ 14.492272583000158, 45.583420309000104 ], [ 14.491501829000157, 45.579164764000069 ], [ 14.487414999000123, 45.556600240000193 ], [ 14.482144002000098, 45.542440898000052 ], [ 14.468914835000106, 45.525594381000076 ], [ 14.429744100000164, 45.505388896000085 ], [ 14.411243937000137, 45.493193258000076 ], [ 14.372796671000089, 45.477845358000195 ], [ 14.326804646000198, 45.474899801000106 ], [ 14.280399211000173, 45.481100973000082 ], [ 14.240608358000173, 45.493348288000021 ], [ 14.218697551000133, 45.497172344000063 ], [ 14.193066040000161, 45.491901347000123 ], [ 14.145523722000149, 45.476243388000086 ], [ 14.11968550600011, 45.472884420000071 ], [ 14.117320712000122, 45.472975725000055 ], [ 14.116747016000176, 45.472997875000033 ], [ 14.092917114000159, 45.473917948000036 ], [ 14.066665487000108, 45.480274150000071 ], [ 14.041550741000094, 45.49314158100006 ], [ 14.041550741000094, 45.493193258000076 ], [ 14.028321574000103, 45.502650045000053 ], [ 14.013955526000188, 45.507972717000087 ], [ 13.987476490000176, 45.511908790000064 ], [ 13.971890910000155, 45.51422556599999 ], [ 13.964966268000182, 45.510969951000106 ], [ 13.961452270000137, 45.503890279000075 ], [ 13.961452270000137, 45.49314158100006 ], [ 13.982639608000085, 45.475313212000117 ], [ 13.969823852000104, 45.462962545000067 ], [ 13.923005004000089, 45.448958232000052 ], [ 13.908432251000136, 45.438881327000018 ], [ 13.89964725700014, 45.429217835000088 ], [ 13.88900191200014, 45.423636779999981 ], [ 13.835568481000138, 45.429114482000159 ], [ 13.819858846000159, 45.432628480000119 ], [ 13.806526327000142, 45.442136943 ], [ 13.759294068000202, 45.463169251000039 ], [ 13.659969793000101, 45.459977951000042 ], [ 13.629017781000101, 45.45898346000007 ], [ 13.589528842000107, 45.488836981000048 ], [ 13.59164472700013, 45.493109442000076 ], [ 13.589121941000116, 45.501613674000112 ], [ 13.595957879000139, 45.511908270000021 ], [ 13.595957879000139, 45.518133856000077 ], [ 13.586192254000082, 45.519476630000071 ], [ 13.578623894000145, 45.523382880000071 ], [ 13.572764519000089, 45.529974677000041 ], [ 13.568614129000053, 45.539252020000077 ], [ 13.58961022200009, 45.535793361000088 ], [ 13.675140821000099, 45.544745184000107 ], [ 13.752940300000091, 45.552883205000029 ], [ 13.752940300000091, 45.559068101 ], [ 13.742360873000052, 45.569769598000022 ], [ 13.727386915000125, 45.581203518000081 ], [ 13.711761915000125, 45.593207098000107 ], [ 13.761051066000078, 45.596236063999982 ], [ 13.800531860000206, 45.581249899 ], [ 13.847764119000146, 45.584660543000041 ], [ 13.867925706000136, 45.602169289000187 ], [ 13.887038208000206, 45.61876698800009 ], [ 13.894686320000091, 45.631841125000051 ], [ 13.89364053000017, 45.633758406000055 ], [ 13.893136027000168, 45.63468332900004 ], [ 13.884144327000115, 45.635148417000039 ], [ 13.869158163000151, 45.641142883999976 ], [ 13.858409465000136, 45.649359436000026 ], [ 13.778724406000094, 45.743410543000067 ], [ 13.709477986000167, 45.765321351000011 ], [ 13.69990841600017, 45.770523736000058 ], [ 13.660333699000205, 45.792038066000089 ], [ 13.643590535000072, 45.795655416000074 ], [ 13.609174032000112, 45.798600973000049 ], [ 13.581268758000135, 45.809246318000049 ], [ 13.574172202000142, 45.819028057000082 ], [ 13.565972534000167, 45.830330302999982 ], [ 13.569279826000155, 45.864540101000074 ], [ 13.599306242000154, 45.912327499000043 ], [ 13.608243856000144, 45.926551819000025 ], [ 13.615325176000141, 45.94591244800003 ], [ 13.622816610000115, 45.966394349000041 ], [ 13.605866740000124, 45.985411276000036 ], [ 13.600734872000146, 45.984574053000017 ], [ 13.571656942000118, 45.9798302210001 ], [ 13.539410848000159, 45.969029847000058 ], [ 13.509438517000206, 45.967427877000034 ], [ 13.48225671300014, 45.98923533200005 ], [ 13.481843302000129, 45.990372213000057 ], [ 13.481223186000136, 45.991354065000024 ], [ 13.480396362000135, 45.992284241000078 ], [ 13.479466186000167, 45.993111064 ], [ 13.474815307000199, 45.995746562000022 ], [ 13.461792846000066, 46.006391907000108 ], [ 13.477089070000119, 46.016055400000056 ], [ 13.48225671300014, 46.018432515000086 ], [ 13.490008179000142, 46.025563863000031 ], [ 13.492798706000173, 46.032488505 ], [ 13.49031823700011, 46.038948059000063 ], [ 13.48225671300014, 46.044839173000071 ], [ 13.505097697000139, 46.066026510000114 ], [ 13.52258529700012, 46.075298023000045 ], [ 13.616408732000167, 46.125040995000063 ], [ 13.645037475000066, 46.161731263000036 ], [ 13.641071451000187, 46.171405145000023 ], [ 13.637389363000182, 46.180386455000104 ], [ 13.627366324000064, 46.181733163000047 ], [ 13.613928264000094, 46.183538717000062 ], [ 13.584472697000194, 46.181316631000044 ], [ 13.559047892000194, 46.184107158000103 ], [ 13.528972208000113, 46.204829407000034 ], [ 13.510161988000107, 46.213976136000014 ], [ 13.48225671300014, 46.217903545000098 ], [ 13.468304077000141, 46.223432923000075 ], [ 13.438331746000188, 46.224879863000069 ], [ 13.422828816000077, 46.228600566000182 ], [ 13.437401570000134, 46.210927226000081 ], [ 13.410116415000118, 46.20798167 ], [ 13.401641480000137, 46.216663310000058 ], [ 13.398127482000177, 46.230512594000032 ], [ 13.384898316000175, 46.243121644000041 ], [ 13.384794963000132, 46.243224996000066 ], [ 13.384691610000118, 46.24332834900008 ], [ 13.378593790000167, 46.268391419000096 ], [ 13.373012736000135, 46.280276998000033 ], [ 13.365261271000151, 46.290302226000051 ], [ 13.391306193000105, 46.301567688000034 ], [ 13.395637648000132, 46.306727928000043 ], [ 13.409806355000143, 46.323607687000106 ], [ 13.423242229000095, 46.34484670000009 ], [ 13.434094279000135, 46.353864238000028 ], [ 13.447323445000137, 46.35484609000008 ], [ 13.459725790000107, 46.35903188100005 ], [ 13.483703654000124, 46.371150004000043 ], [ 13.530005737000096, 46.38833241800009 ], [ 13.554397013000141, 46.40595408100009 ], [ 13.575687703000114, 46.42667633100001 ], [ 13.600182332000173, 46.442644349000062 ], [ 13.634082072000183, 46.44571909700008 ], [ 13.658783407000101, 46.445124817000021 ], [ 13.677490275000167, 46.452075297000107 ], [ 13.685852877000116, 46.46404723100008 ], [ 13.688445678000136, 46.467759095000076 ], [ 13.689892619000148, 46.493338928000043 ], [ 13.695473673000066, 46.498635762000077 ], [ 13.699194376000065, 46.504836935000043 ], [ 13.701054728000173, 46.511890768000058 ], [ 13.700951375000159, 46.519745586 ], [ 13.716092570000171, 46.518867087000075 ], [ 13.782135051000097, 46.507782492000047 ], [ 13.795777629000128, 46.507885844999976 ], [ 13.860683228000141, 46.515249736000072 ], [ 13.890862264000134, 46.511787415000043 ], [ 13.982329549000099, 46.481918437000019 ], [ 13.99876265400016, 46.480523174000041 ], [ 14.014921609000083, 46.482530652000065 ], [ 14.032455688000113, 46.484708964999982 ], [ 14.050025676000189, 46.484398905 ], [ 14.066355428000122, 46.481039937999981 ], [ 14.081031535000108, 46.475949809000099 ], [ 14.137255493000112, 46.44243764300009 ], [ 14.147933084000101, 46.440424654000083 ], [ 14.14986454300012, 46.440060527000043 ], [ 14.242323222000124, 46.438237462000018 ], [ 14.362151327000106, 46.435874736000102 ], [ 14.395844361000144, 46.440990702000107 ], [ 14.406489705000155, 46.439337057000046 ], [ 14.411243937000137, 46.434634502000165 ], [ 14.414447876000111, 46.429001770000042 ], [ 14.420028931000132, 46.424350892000092 ], [ 14.437144752000108, 46.418884133 ], [ 14.450931437000122, 46.414480693000087 ], [ 14.467674601000169, 46.412672018000194 ], [ 14.502194458000162, 46.418356426000059 ], [ 14.515837036000164, 46.405359803000039 ], [ 14.527102498000119, 46.388229065000075 ], [ 14.54033166500011, 46.378643087000057 ], [ 14.55769494600014, 46.383939921 ], [ 14.562108198000146, 46.391736666000043 ], [ 14.566996704000161, 46.400373027000057 ], [ 14.575368286000128, 46.419725851000038 ], [ 14.590147746000156, 46.434427795000033 ], [ 14.599862915000188, 46.437166646000065 ], [ 14.621567017000189, 46.438510234000034 ], [ 14.631695597000146, 46.440577291000096 ], [ 14.64203088400015, 46.445228170000064 ], [ 14.66208133900011, 46.459697571000078 ], [ 14.666628865000121, 46.460524394 ], [ 14.67254584000014, 46.459790506000047 ], [ 14.679961385000155, 46.458870748000152 ], [ 14.6870927330001, 46.47122141600002 ], [ 14.698771607000168, 46.480962423000051 ], [ 14.703732544000104, 46.48775787400001 ], [ 14.709727010000137, 46.492512106000021 ], [ 14.72636682100017, 46.497705587000013 ], [ 14.735255167000076, 46.493338928000043 ], [ 14.760886678000134, 46.496284485000018 ], [ 14.783004191000146, 46.503260804000035 ], [ 14.788585245000149, 46.506645610000135 ], [ 14.796662504000125, 46.519400947000094 ], [ 14.807188762000123, 46.536023662000019 ], [ 14.814519309000104, 46.551337476000015 ], [ 14.82227827900013, 46.56754628499999 ], [ 14.833647095000117, 46.584392802000053 ], [ 14.850390259000164, 46.601135967000033 ], [ 14.862999308000099, 46.604830831000015 ], [ 14.877055298000101, 46.603642274000094 ], [ 14.894062722000172, 46.605215461000057 ], [ 14.897725871000119, 46.605554302000201 ], [ 14.919506769000179, 46.615016752000116 ], [ 14.933589315000148, 46.621134746000052 ], [ 14.947955362000158, 46.619274394000058 ], [ 14.967178995000097, 46.600257467000063 ], [ 15.004386027000095, 46.636844381000031 ], [ 15.061953572000135, 46.649556783000065 ], [ 15.085722504000103, 46.647795167000055 ], [ 15.105591442000133, 46.64632259600009 ], [ 15.172556751000144, 46.641359513000026 ], [ 15.204890585000072, 46.638963115000081 ], [ 15.332783734000174, 46.643579675000069 ], [ 15.388135214000073, 46.645577698000096 ], [ 15.417590780000154, 46.637955424000012 ], [ 15.435380874000145, 46.627195287000035 ], [ 15.440018352000067, 46.624390361000025 ], [ 15.462652628000114, 46.614649353000175 ], [ 15.492624959000153, 46.618292542000063 ], [ 15.511228475000109, 46.628369446000107 ], [ 15.513939450000152, 46.632545221000015 ], [ 15.517636353000142, 46.638239645 ], [ 15.520308138000161, 46.647720171000088 ], [ 15.520840292000116, 46.649608460000081 ], [ 15.530658814000105, 46.663845317000067 ], [ 15.545955037000141, 46.671881002000049 ], [ 15.567349080000071, 46.67575673499999 ], [ 15.588639771000146, 46.675963440000061 ], [ 15.603729288000153, 46.673017884000046 ], [ 15.616648397000148, 46.675550028000032 ], [ 15.621745271000151, 46.678174918000053 ], [ 15.626983684000066, 46.680872701000169 ], [ 15.632978150000099, 46.689631857000052 ], [ 15.632874796000152, 46.702473450000042 ], [ 15.635975382000112, 46.717562968000038 ], [ 15.652098429000176, 46.710819193000106 ], [ 15.728682902000088, 46.702990215000085 ], [ 15.755141235000082, 46.704023743000079 ], [ 15.784609910000114, 46.712199503000107 ], [ 15.822940714000111, 46.722833964000074 ], [ 15.850742635000159, 46.724487611000029 ], [ 15.878544555000104, 46.720715231000014 ], [ 15.946344034000134, 46.697150777000019 ], [ 15.986961710000173, 46.692189840000054 ], [ 15.99791711400016, 46.686918844000019 ], [ 16.016593059000144, 46.670756969000024 ], [ 16.016727336000145, 46.670640768 ], [ 16.016722579000117, 46.670691342000026 ], [ 16.014556925000164, 46.693714295000063 ], [ 16.003291463000124, 46.709191386000072 ], [ 15.982000773000124, 46.718544820000034 ], [ 15.970528606000101, 46.743013611000066 ], [ 15.969701782000186, 46.760531922000041 ], [ 15.970984665000088, 46.775049879000079 ], [ 15.971252075000109, 46.778076070000083 ], [ 15.978176717000082, 46.809133607000035 ], [ 15.977349894000071, 46.816213277000145 ], [ 15.97290572100016, 46.818435364000067 ], [ 15.971975545000106, 46.820631612000057 ], [ 15.981690715000127, 46.827685445999975 ], [ 15.987581828000145, 46.830010885 ], [ 16.02844094500017, 46.836947433000091 ], [ 16.032023560000113, 46.837555644000048 ], [ 16.052935546000128, 46.846059852000081 ], [ 16.094035278000149, 46.86277374300002 ], [ 16.130245696000145, 46.856708498000074 ], [ 16.1353764240001, 46.855849101000018 ], [ 16.179486395000168, 46.858468339000041 ], [ 16.272008911000114, 46.863962301000043 ], [ 16.282240845000103, 46.85993153900003 ], [ 16.297392209000151, 46.847032943000045 ], [ 16.301877889000139, 46.843214213000095 ], [ 16.310662883000134, 46.840010275000026 ], [ 16.325338989000102, 46.83944183400007 ], [ 16.329783162000126, 46.83440338200009 ], [ 16.32750940000011, 46.825463359000054 ], [ 16.32182499200016, 46.813267721000045 ], [ 16.314900350000158, 46.802002259000091 ], [ 16.311097363000101, 46.797519062000049 ], [ 16.302187948000125, 46.787016093000034 ], [ 16.299489884000167, 46.779509942000061 ], [ 16.29815718600014, 46.775802308000067 ], [ 16.300430949000145, 46.772081605000153 ], [ 16.314176879000087, 46.743323670000052 ], [ 16.325545695000159, 46.733272604000035 ], [ 16.334123983000097, 46.721748759 ], [ 16.343425741000118, 46.714178162000024 ] ] ] } }, diff --git a/tests/border/out/-z1_--detect-shared-borders.json b/tests/border/out/-z1_--detect-shared-borders.json new file mode 100644 index 0000000..aa5b10b --- /dev/null +++ b/tests/border/out/-z1_--detect-shared-borders.json @@ -0,0 +1,52 @@ +{ "type": "FeatureCollection", "properties": { +"bounds": "13.365261,39.637013,23.009582,46.863962", +"center": "23.009582,42.525564,1", +"description": "tests/border/out/-z1_--detect-shared-borders.json.check.mbtiles", +"format": "pbf", +"json": "{\"vector_layers\": [ { \"id\": \"in\", \"description\": \"\", \"minzoom\": 0, \"maxzoom\": 1, \"fields\": {\"abbrev\": \"String\", \"abbrev_len\": \"Number\", \"adm0_a3\": \"String\", \"adm0_a3_is\": \"String\", \"adm0_a3_un\": \"Number\", \"adm0_a3_us\": \"String\", \"adm0_a3_wb\": \"Number\", \"adm0_dif\": \"Number\", \"admin\": \"String\", \"brk_a3\": \"String\", \"brk_diff\": \"Number\", \"brk_name\": \"String\", \"continent\": \"String\", \"economy\": \"String\", \"featurecla\": \"String\", \"formal_en\": \"String\", \"gdp_md_est\": \"Number\", \"gdp_year\": \"Number\", \"geou_dif\": \"Number\", \"geounit\": \"String\", \"gu_a3\": \"String\", \"homepart\": \"Number\", \"income_grp\": \"String\", \"iso_a2\": \"String\", \"iso_a3\": \"String\", \"iso_n3\": \"String\", \"labelrank\": \"Number\", \"lastcensus\": \"Number\", \"level\": \"Number\", \"long_len\": \"Number\", \"mapcolor13\": \"Number\", \"mapcolor7\": \"Number\", \"mapcolor8\": \"Number\", \"mapcolor9\": \"Number\", \"name\": \"String\", \"name_len\": \"Number\", \"name_long\": \"String\", \"name_sort\": \"String\", \"note_brk\": \"String\", \"pop_est\": \"Number\", \"pop_year\": \"Number\", \"postal\": \"String\", \"region_un\": \"String\", \"region_wb\": \"String\", \"scalerank\": \"Number\", \"sov_a3\": \"String\", \"sovereignt\": \"String\", \"su_a3\": \"String\", \"su_dif\": \"Number\", \"subregion\": \"String\", \"subunit\": \"String\", \"tiny\": \"Number\", \"type\": \"String\", \"un_a3\": \"String\", \"wb_a2\": \"String\", \"wb_a3\": \"String\", \"wikipedia\": \"Number\", \"woe_id\": \"Number\"} } ] }", +"maxzoom": "1", +"minzoom": "0", +"name": "tests/border/out/-z1_--detect-shared-borders.json.check.mbtiles", +"type": "overlay", +"version": "2" +}, "features": [ +{ "type": "FeatureCollection", "properties": { "zoom": 0, "x": 0, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.435547, 46.558860 ], [ 16.259766, 46.558860 ], [ 16.259766, 46.377254 ], [ 15.996094, 46.437857 ], [ 15.996094, 46.316584 ], [ 15.556641, 46.255847 ], [ 15.644531, 45.828799 ], [ 15.205078, 45.767523 ], [ 15.292969, 45.521744 ], [ 15.117188, 45.460131 ], [ 14.941406, 45.521744 ], [ 14.765625, 45.460131 ], [ 14.589844, 45.706179 ], [ 14.326172, 45.521744 ], [ 13.535156, 45.521744 ], [ 13.535156, 45.583290 ], [ 13.886719, 45.644768 ], [ 13.535156, 45.828799 ], [ 13.535156, 46.012224 ], [ 13.447266, 46.073231 ], [ 13.623047, 46.195042 ], [ 13.359375, 46.255847 ], [ 13.359375, 46.377254 ], [ 13.623047, 46.558860 ], [ 14.501953, 46.437857 ], [ 15.029297, 46.679594 ], [ 15.468750, 46.619261 ], [ 15.556641, 46.739861 ], [ 15.996094, 46.739861 ], [ 15.908203, 46.860191 ], [ 16.259766, 46.920255 ], [ 16.435547, 46.558860 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.490234, 42.940339 ], [ 17.753906, 42.940339 ], [ 17.929688, 42.747012 ], [ 18.369141, 42.617791 ], [ 18.457031, 42.488302 ], [ 18.017578, 42.682435 ], [ 17.753906, 42.811522 ], [ 16.962891, 43.068888 ], [ 17.490234, 42.940339 ] ] ], [ [ [ 17.138672, 42.940339 ], [ 16.611328, 42.940339 ], [ 16.611328, 43.004647 ], [ 17.138672, 42.940339 ] ] ], [ [ [ 15.468750, 43.961191 ], [ 15.468750, 43.897892 ], [ 15.292969, 43.897892 ], [ 15.292969, 44.024422 ], [ 15.380859, 44.024422 ], [ 15.468750, 43.961191 ] ] ], [ [ [ 16.259766, 43.068888 ], [ 16.083984, 43.068888 ], [ 16.083984, 43.197167 ], [ 16.259766, 43.197167 ], [ 16.259766, 43.068888 ] ] ], [ [ [ 17.138672, 43.133061 ], [ 16.347656, 43.197167 ], [ 16.435547, 43.261206 ], [ 16.523438, 43.261206 ], [ 17.138672, 43.133061 ] ] ], [ [ [ 16.875000, 43.325178 ], [ 16.347656, 43.389082 ], [ 16.435547, 43.389082 ], [ 16.347656, 43.452919 ], [ 16.875000, 43.325178 ] ] ], [ [ [ 15.029297, 44.087585 ], [ 14.853516, 44.087585 ], [ 14.853516, 44.213710 ], [ 15.029297, 44.213710 ], [ 15.029297, 44.087585 ] ] ], [ [ [ 15.029297, 44.465151 ], [ 15.205078, 44.402392 ], [ 15.117188, 44.339565 ], [ 15.029297, 44.402392 ], [ 14.853516, 44.590467 ], [ 15.029297, 44.465151 ] ] ], [ [ [ 14.414062, 45.026950 ], [ 14.501953, 44.653024 ], [ 14.326172, 44.777936 ], [ 14.238281, 45.213004 ], [ 14.414062, 45.026950 ] ] ], [ [ [ 14.765625, 45.026950 ], [ 14.589844, 45.026950 ], [ 14.414062, 45.089036 ], [ 14.589844, 45.274886 ], [ 14.765625, 45.026950 ] ] ], [ [ [ 14.238281, 45.398450 ], [ 14.150391, 45.151053 ], [ 14.150391, 45.089036 ], [ 14.062500, 45.026950 ], [ 13.974609, 44.902578 ], [ 13.974609, 44.840291 ], [ 13.798828, 44.840291 ], [ 13.798828, 44.902578 ], [ 13.710938, 44.964798 ], [ 13.447266, 45.521744 ], [ 14.326172, 45.521744 ], [ 14.589844, 45.706179 ], [ 14.765625, 45.460131 ], [ 14.941406, 45.521744 ], [ 15.117188, 45.460131 ], [ 15.292969, 45.521744 ], [ 15.205078, 45.767523 ], [ 15.644531, 45.828799 ], [ 15.556641, 46.255847 ], [ 15.996094, 46.316584 ], [ 15.996094, 46.437857 ], [ 16.259766, 46.377254 ], [ 16.259766, 46.558860 ], [ 16.435547, 46.558860 ], [ 16.787109, 46.437857 ], [ 17.226562, 46.012224 ], [ 17.314453, 46.012224 ], [ 18.193359, 45.767523 ], [ 18.896484, 45.951150 ], [ 18.808594, 45.890008 ], [ 18.896484, 45.583290 ], [ 19.072266, 45.583290 ], [ 18.896484, 45.398450 ], [ 19.335938, 45.274886 ], [ 18.984375, 45.151053 ], [ 19.072266, 44.964798 ], [ 18.984375, 44.902578 ], [ 18.544922, 45.151053 ], [ 18.457031, 45.089036 ], [ 18.193359, 45.213004 ], [ 17.841797, 45.089036 ], [ 17.490234, 45.151053 ], [ 17.402344, 45.151053 ], [ 16.962891, 45.274886 ], [ 16.523438, 45.274886 ], [ 16.259766, 45.026950 ], [ 15.996094, 45.274886 ], [ 15.732422, 45.213004 ], [ 15.644531, 44.777936 ], [ 15.996094, 44.653024 ], [ 16.259766, 44.087585 ], [ 17.226562, 43.452919 ], [ 17.226562, 43.389082 ], [ 17.578125, 43.068888 ], [ 17.578125, 43.004647 ], [ 17.402344, 43.068888 ], [ 16.875000, 43.452919 ], [ 16.347656, 43.516689 ], [ 16.347656, 43.580391 ], [ 15.908203, 43.516689 ], [ 15.908203, 43.707594 ], [ 15.644531, 43.834527 ], [ 15.468750, 43.961191 ], [ 15.468750, 44.024422 ], [ 15.380859, 44.024422 ], [ 15.117188, 44.276671 ], [ 15.117188, 44.339565 ], [ 15.205078, 44.339565 ], [ 15.468750, 44.276671 ], [ 14.941406, 44.590467 ], [ 14.853516, 44.777936 ], [ 14.853516, 45.089036 ], [ 14.501953, 45.336702 ], [ 14.238281, 45.398450 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.402344, 45.151053 ], [ 17.490234, 45.151053 ], [ 17.841797, 45.089036 ], [ 18.193359, 45.213004 ], [ 18.457031, 45.089036 ], [ 18.544922, 45.151053 ], [ 18.984375, 44.902578 ], [ 19.335938, 44.902578 ], [ 19.072266, 44.402392 ], [ 19.423828, 44.213710 ], [ 19.511719, 44.087585 ], [ 19.511719, 44.024422 ], [ 19.160156, 44.024422 ], [ 19.423828, 43.771094 ], [ 19.335938, 43.580391 ], [ 18.896484, 43.580391 ], [ 18.984375, 43.325178 ], [ 18.808594, 43.389082 ], [ 18.632812, 43.261206 ], [ 18.632812, 43.068888 ], [ 18.369141, 43.004647 ], [ 18.544922, 42.682435 ], [ 18.369141, 42.617791 ], [ 17.929688, 42.747012 ], [ 17.753906, 42.940339 ], [ 17.578125, 42.940339 ], [ 17.578125, 43.068888 ], [ 17.226562, 43.389082 ], [ 17.226562, 43.452919 ], [ 16.259766, 44.087585 ], [ 15.996094, 44.653024 ], [ 15.644531, 44.777936 ], [ 15.732422, 45.213004 ], [ 15.996094, 45.274886 ], [ 16.259766, 45.026950 ], [ 16.523438, 45.274886 ], [ 16.962891, 45.274886 ], [ 17.402344, 45.151053 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.511719, 43.197167 ], [ 19.863281, 43.133061 ], [ 20.302734, 42.940339 ], [ 20.302734, 42.875964 ], [ 20.126953, 42.747012 ], [ 19.951172, 42.811522 ], [ 20.039062, 42.617791 ], [ 19.863281, 42.488302 ], [ 19.687500, 42.553080 ], [ 19.687500, 42.682435 ], [ 19.511719, 42.617791 ], [ 19.248047, 42.228517 ], [ 19.335938, 41.902277 ], [ 18.808594, 42.293564 ], [ 18.544922, 42.423457 ], [ 18.632812, 42.488302 ], [ 18.457031, 42.423457 ], [ 18.457031, 42.488302 ], [ 18.369141, 42.617791 ], [ 18.544922, 42.682435 ], [ 18.369141, 43.004647 ], [ 18.632812, 43.068888 ], [ 18.632812, 43.261206 ], [ 18.808594, 43.389082 ], [ 18.984375, 43.325178 ], [ 18.896484, 43.580391 ], [ 19.160156, 43.580391 ], [ 19.511719, 43.197167 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.742188, 45.767523 ], [ 20.742188, 45.521744 ], [ 21.445312, 45.151053 ], [ 21.269531, 45.026950 ], [ 21.533203, 44.902578 ], [ 21.357422, 44.902578 ], [ 21.357422, 44.840291 ], [ 21.972656, 44.715514 ], [ 22.060547, 44.527843 ], [ 22.412109, 44.777936 ], [ 22.763672, 44.590467 ], [ 22.412109, 44.527843 ], [ 22.675781, 44.276671 ], [ 22.587891, 44.087585 ], [ 22.324219, 44.024422 ], [ 22.324219, 43.834527 ], [ 22.500000, 43.516689 ], [ 22.939453, 43.197167 ], [ 22.675781, 42.940339 ], [ 22.412109, 42.875964 ], [ 22.500000, 42.423457 ], [ 22.324219, 42.358544 ], [ 22.236328, 42.423457 ], [ 21.533203, 42.293564 ], [ 21.445312, 42.358544 ], [ 21.708984, 42.682435 ], [ 21.357422, 42.747012 ], [ 21.357422, 42.875964 ], [ 20.742188, 43.325178 ], [ 20.566406, 43.261206 ], [ 20.654297, 43.133061 ], [ 20.302734, 42.875964 ], [ 20.302734, 42.940339 ], [ 19.863281, 43.133061 ], [ 19.511719, 43.197167 ], [ 19.160156, 43.580391 ], [ 19.335938, 43.580391 ], [ 19.423828, 43.771094 ], [ 19.160156, 44.024422 ], [ 19.511719, 44.024422 ], [ 19.511719, 44.087585 ], [ 19.423828, 44.213710 ], [ 19.072266, 44.402392 ], [ 19.335938, 44.902578 ], [ 18.984375, 44.902578 ], [ 19.072266, 44.964798 ], [ 18.984375, 45.151053 ], [ 19.335938, 45.274886 ], [ 18.896484, 45.398450 ], [ 19.072266, 45.583290 ], [ 18.896484, 45.583290 ], [ 18.808594, 45.890008 ], [ 19.072266, 46.073231 ], [ 19.248047, 46.012224 ], [ 19.511719, 46.195042 ], [ 20.126953, 46.195042 ], [ 20.742188, 45.767523 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.357422, 42.875964 ], [ 21.357422, 42.747012 ], [ 21.708984, 42.682435 ], [ 21.445312, 42.358544 ], [ 21.533203, 42.293564 ], [ 21.269531, 42.228517 ], [ 21.269531, 42.098222 ], [ 21.093750, 42.228517 ], [ 20.742188, 42.098222 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.293564 ], [ 20.214844, 42.358544 ], [ 20.039062, 42.553080 ], [ 20.039062, 42.617791 ], [ 19.951172, 42.811522 ], [ 20.126953, 42.747012 ], [ 20.654297, 43.133061 ], [ 20.566406, 43.261206 ], [ 20.742188, 43.325178 ], [ 21.357422, 42.875964 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.687500, 42.553080 ], [ 19.863281, 42.488302 ], [ 20.039062, 42.617791 ], [ 20.039062, 42.553080 ], [ 20.214844, 42.358544 ], [ 20.478516, 42.293564 ], [ 20.566406, 41.902277 ], [ 20.390625, 41.574361 ], [ 20.478516, 41.244772 ], [ 20.654297, 40.913513 ], [ 20.917969, 40.913513 ], [ 21.005859, 40.580585 ], [ 20.742188, 40.446947 ], [ 20.654297, 40.178873 ], [ 20.302734, 40.044438 ], [ 20.390625, 39.842286 ], [ 20.214844, 39.707187 ], [ 19.951172, 39.707187 ], [ 19.863281, 40.111689 ], [ 19.423828, 40.245992 ], [ 19.248047, 40.446947 ], [ 19.423828, 40.380028 ], [ 19.248047, 40.647304 ], [ 19.423828, 40.979898 ], [ 19.423828, 41.046217 ], [ 19.511719, 41.310824 ], [ 19.335938, 41.442726 ], [ 19.511719, 41.574361 ], [ 19.423828, 41.640078 ], [ 19.511719, 41.640078 ], [ 19.599609, 41.836828 ], [ 19.335938, 41.902277 ], [ 19.248047, 42.228517 ], [ 19.511719, 42.617791 ], [ 19.687500, 42.682435 ], [ 19.687500, 42.553080 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.324219, 42.358544 ], [ 22.500000, 42.163403 ], [ 22.851562, 42.032974 ], [ 22.939453, 41.771312 ], [ 22.939453, 41.376809 ], [ 22.675781, 41.376809 ], [ 22.675781, 41.178654 ], [ 21.972656, 41.178654 ], [ 21.533203, 40.913513 ], [ 20.654297, 40.913513 ], [ 20.478516, 41.244772 ], [ 20.390625, 41.574361 ], [ 20.566406, 41.902277 ], [ 20.742188, 42.098222 ], [ 21.093750, 42.228517 ], [ 21.269531, 42.098222 ], [ 21.269531, 42.228517 ], [ 21.533203, 42.293564 ], [ 22.236328, 42.423457 ], [ 22.324219, 42.358544 ] ] ] } } +] } +] } +, +{ "type": "FeatureCollection", "properties": { "zoom": 1, "x": 1, "y": 0 }, "features": [ +{ "type": "FeatureCollection", "properties": { "layer": "in", "version": 2, "extent": 4096 }, "features": [ +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Slovenia", "sov_a3": "SVN", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Slovenia", "adm0_a3": "SVN", "geou_dif": 0, "geounit": "Slovenia", "gu_a3": "SVN", "su_dif": 0, "subunit": "Slovenia", "su_a3": "SVN", "brk_diff": 0, "name": "Slovenia", "name_long": "Slovenia", "brk_a3": "SVN", "brk_name": "Slovenia", "abbrev": "Slo.", "postal": "SLO", "formal_en": "Republic of Slovenia", "name_sort": "Slovenia", "mapcolor7": 2, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 12, "pop_est": 2005692, "gdp_md_est": 59340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "1. High income: OECD", "wikipedia": -99, "iso_a2": "SI", "iso_a3": "SVN", "iso_n3": "705", "un_a3": "705", "wb_a2": "SI", "wb_a3": "SVN", "woe_id": -99, "adm0_a3_is": "SVN", "adm0_a3_us": "SVN", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 8, "long_len": 8, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.259766, 46.800059 ], [ 16.391602, 46.709736 ], [ 16.347656, 46.649436 ], [ 16.479492, 46.528635 ], [ 16.303711, 46.558860 ], [ 16.215820, 46.498392 ], [ 16.259766, 46.377254 ], [ 16.040039, 46.407564 ], [ 15.996094, 46.316584 ], [ 15.600586, 46.225453 ], [ 15.556641, 46.134170 ], [ 15.688477, 46.042736 ], [ 15.644531, 45.828799 ], [ 15.424805, 45.828799 ], [ 15.249023, 45.736860 ], [ 15.336914, 45.675482 ], [ 15.249023, 45.644768 ], [ 15.249023, 45.552525 ], [ 15.336914, 45.490946 ], [ 15.161133, 45.429299 ], [ 14.941406, 45.521744 ], [ 14.809570, 45.460131 ], [ 14.765625, 45.521744 ], [ 14.633789, 45.552525 ], [ 14.589844, 45.675482 ], [ 14.458008, 45.614037 ], [ 14.370117, 45.490946 ], [ 13.930664, 45.521744 ], [ 13.974609, 45.490946 ], [ 13.886719, 45.429299 ], [ 13.798828, 45.429299 ], [ 13.754883, 45.490946 ], [ 13.579102, 45.490946 ], [ 13.535156, 45.552525 ], [ 13.666992, 45.552525 ], [ 13.710938, 45.614037 ], [ 13.798828, 45.583290 ], [ 13.886719, 45.644768 ], [ 13.754883, 45.767523 ], [ 13.535156, 45.828799 ], [ 13.579102, 46.012224 ], [ 13.491211, 45.981695 ], [ 13.447266, 46.042736 ], [ 13.623047, 46.195042 ], [ 13.403320, 46.225453 ], [ 13.403320, 46.377254 ], [ 13.666992, 46.468133 ], [ 13.666992, 46.528635 ], [ 14.326172, 46.437857 ], [ 14.370117, 46.468133 ], [ 14.545898, 46.407564 ], [ 14.809570, 46.558860 ], [ 14.809570, 46.619261 ], [ 14.941406, 46.619261 ], [ 15.029297, 46.679594 ], [ 15.468750, 46.619261 ], [ 15.512695, 46.679594 ], [ 15.600586, 46.679594 ], [ 15.600586, 46.739861 ], [ 15.996094, 46.709736 ], [ 15.952148, 46.830134 ], [ 16.083984, 46.890232 ], [ 16.259766, 46.890232 ], [ 16.259766, 46.800059 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Croatia", "sov_a3": "HRV", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Croatia", "adm0_a3": "HRV", "geou_dif": 0, "geounit": "Croatia", "gu_a3": "HRV", "su_dif": 0, "subunit": "Croatia", "su_a3": "HRV", "brk_diff": 0, "name": "Croatia", "name_long": "Croatia", "brk_a3": "HRV", "brk_name": "Croatia", "abbrev": "Cro.", "postal": "HR", "formal_en": "Republic of Croatia", "name_sort": "Croatia", "mapcolor7": 5, "mapcolor8": 4, "mapcolor9": 5, "mapcolor13": 1, "pop_est": 4489409, "gdp_md_est": 82390, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "2. Developed region: nonG7", "income_grp": "2. High income: nonOECD", "wikipedia": -99, "iso_a2": "HR", "iso_a3": "HRV", "iso_n3": "191", "un_a3": "191", "wb_a2": "HR", "wb_a3": "HRV", "woe_id": -99, "adm0_a3_is": "HRV", "adm0_a3_us": "HRV", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 17.797852, 42.940339 ], [ 17.797852, 42.875964 ], [ 17.885742, 42.811522 ], [ 17.797852, 42.811522 ], [ 17.709961, 42.843751 ], [ 17.709961, 42.779275 ], [ 17.666016, 42.843751 ], [ 17.402344, 42.875964 ], [ 17.402344, 42.940339 ], [ 17.006836, 43.004647 ], [ 17.006836, 43.068888 ], [ 17.490234, 42.940339 ], [ 17.622070, 42.908160 ], [ 17.797852, 42.940339 ] ], [ [ 17.666016, 42.875964 ], [ 17.709961, 42.908160 ], [ 17.622070, 42.908160 ], [ 17.666016, 42.875964 ] ] ], [ [ [ 16.918945, 42.747012 ], [ 16.787109, 42.747012 ], [ 16.787109, 42.811522 ], [ 16.918945, 42.747012 ] ] ], [ [ [ 17.182617, 42.940339 ], [ 16.831055, 42.908160 ], [ 16.611328, 42.940339 ], [ 16.699219, 42.972502 ], [ 16.655273, 43.004647 ], [ 17.006836, 43.004647 ], [ 17.182617, 42.940339 ] ] ], [ [ [ 16.171875, 43.036776 ], [ 16.083984, 43.036776 ], [ 16.040039, 43.100983 ], [ 16.215820, 43.100983 ], [ 16.171875, 43.036776 ] ] ], [ [ [ 16.699219, 43.165123 ], [ 16.831055, 43.197167 ], [ 17.182617, 43.133061 ], [ 16.655273, 43.133061 ], [ 16.347656, 43.197167 ], [ 16.479492, 43.229195 ], [ 16.655273, 43.229195 ], [ 16.699219, 43.165123 ] ] ], [ [ [ 16.875000, 43.325178 ], [ 16.479492, 43.293200 ], [ 16.391602, 43.357138 ], [ 16.435547, 43.357138 ], [ 16.391602, 43.421009 ], [ 16.875000, 43.325178 ] ] ], [ [ [ 16.259766, 43.484812 ], [ 16.259766, 43.548548 ], [ 16.347656, 43.548548 ], [ 16.347656, 43.484812 ], [ 16.259766, 43.484812 ] ] ], [ [ [ 15.380859, 43.771094 ], [ 15.292969, 43.771094 ], [ 15.292969, 43.834527 ], [ 15.380859, 43.834527 ], [ 15.380859, 43.771094 ] ] ], [ [ [ 15.117188, 44.276671 ], [ 15.205078, 44.276671 ], [ 15.161133, 44.308127 ], [ 15.205078, 44.308127 ], [ 15.292969, 44.276671 ], [ 15.249023, 44.308127 ], [ 15.292969, 44.339565 ], [ 15.380859, 44.276671 ], [ 15.512695, 44.276671 ], [ 14.985352, 44.590467 ], [ 14.853516, 44.746733 ], [ 14.853516, 45.089036 ], [ 14.545898, 45.305803 ], [ 14.282227, 45.367584 ], [ 14.194336, 45.151053 ], [ 14.150391, 45.058001 ], [ 14.150391, 44.995883 ], [ 14.062500, 44.995883 ], [ 13.974609, 44.902578 ], [ 13.974609, 44.840291 ], [ 13.842773, 44.840291 ], [ 13.798828, 44.871443 ], [ 13.754883, 44.933696 ], [ 13.579102, 45.120053 ], [ 13.710938, 45.151053 ], [ 13.579102, 45.151053 ], [ 13.491211, 45.521744 ], [ 13.579102, 45.490946 ], [ 13.754883, 45.490946 ], [ 13.798828, 45.429299 ], [ 13.886719, 45.429299 ], [ 13.974609, 45.490946 ], [ 13.930664, 45.521744 ], [ 14.370117, 45.490946 ], [ 14.458008, 45.614037 ], [ 14.589844, 45.675482 ], [ 14.633789, 45.552525 ], [ 14.765625, 45.521744 ], [ 14.809570, 45.460131 ], [ 14.941406, 45.521744 ], [ 15.161133, 45.429299 ], [ 15.336914, 45.490946 ], [ 15.249023, 45.552525 ], [ 15.249023, 45.644768 ], [ 15.336914, 45.675482 ], [ 15.249023, 45.736860 ], [ 15.424805, 45.828799 ], [ 15.644531, 45.828799 ], [ 15.688477, 46.042736 ], [ 15.556641, 46.134170 ], [ 15.600586, 46.225453 ], [ 15.996094, 46.316584 ], [ 16.040039, 46.407564 ], [ 16.259766, 46.377254 ], [ 16.215820, 46.498392 ], [ 16.303711, 46.558860 ], [ 16.479492, 46.528635 ], [ 16.787109, 46.407564 ], [ 17.006836, 46.164614 ], [ 17.182617, 46.134170 ], [ 17.270508, 46.012224 ], [ 17.314453, 45.981695 ], [ 17.490234, 45.981695 ], [ 17.622070, 45.920587 ], [ 17.622070, 45.859412 ], [ 17.841797, 45.798170 ], [ 18.237305, 45.767523 ], [ 18.413086, 45.767523 ], [ 18.632812, 45.920587 ], [ 18.764648, 45.890008 ], [ 18.896484, 45.951150 ], [ 18.808594, 45.828799 ], [ 18.940430, 45.706179 ], [ 18.896484, 45.552525 ], [ 19.072266, 45.552525 ], [ 18.984375, 45.521744 ], [ 19.028320, 45.429299 ], [ 18.940430, 45.398450 ], [ 19.379883, 45.243953 ], [ 19.379883, 45.182037 ], [ 19.116211, 45.213004 ], [ 19.116211, 45.151053 ], [ 19.028320, 45.151053 ], [ 19.116211, 44.964798 ], [ 18.984375, 44.933696 ], [ 18.984375, 44.871443 ], [ 18.852539, 44.871443 ], [ 18.764648, 44.933696 ], [ 18.764648, 45.026950 ], [ 18.588867, 45.120053 ], [ 18.500977, 45.120053 ], [ 18.500977, 45.058001 ], [ 18.237305, 45.182037 ], [ 18.193359, 45.120053 ], [ 17.973633, 45.151053 ], [ 17.885742, 45.089036 ], [ 17.753906, 45.089036 ], [ 17.709961, 45.182037 ], [ 17.534180, 45.151053 ], [ 17.446289, 45.151053 ], [ 17.226562, 45.213004 ], [ 17.182617, 45.151053 ], [ 17.006836, 45.274886 ], [ 16.962891, 45.243953 ], [ 16.918945, 45.305803 ], [ 16.787109, 45.243953 ], [ 16.787109, 45.182037 ], [ 16.523438, 45.243953 ], [ 16.303711, 45.026950 ], [ 16.215820, 45.026950 ], [ 15.996094, 45.182037 ], [ 15.996094, 45.243953 ], [ 15.776367, 45.213004 ], [ 15.688477, 44.777936 ], [ 15.776367, 44.715514 ], [ 15.864258, 44.746733 ], [ 16.040039, 44.621754 ], [ 15.996094, 44.527843 ], [ 16.083984, 44.559163 ], [ 16.171875, 44.213710 ], [ 16.303711, 44.087585 ], [ 16.391602, 44.087585 ], [ 16.523438, 43.992815 ], [ 16.655273, 43.802819 ], [ 17.050781, 43.516689 ], [ 17.270508, 43.452919 ], [ 17.226562, 43.357138 ], [ 17.402344, 43.229195 ], [ 17.402344, 43.165123 ], [ 17.622070, 43.068888 ], [ 17.578125, 42.972502 ], [ 17.490234, 42.972502 ], [ 17.446289, 43.036776 ], [ 17.402344, 43.036776 ], [ 16.875000, 43.421009 ], [ 16.347656, 43.516689 ], [ 16.435547, 43.548548 ], [ 16.391602, 43.580391 ], [ 16.083984, 43.548548 ], [ 16.171875, 43.516689 ], [ 16.083984, 43.484812 ], [ 15.952148, 43.516689 ], [ 15.908203, 43.675818 ], [ 15.952148, 43.707594 ], [ 15.688477, 43.771094 ], [ 15.644531, 43.834527 ], [ 15.512695, 43.929550 ], [ 15.424805, 43.929550 ], [ 15.424805, 43.897892 ], [ 15.249023, 44.024422 ], [ 15.380859, 43.992815 ], [ 15.380859, 44.024422 ], [ 15.117188, 44.213710 ], [ 15.117188, 44.276671 ] ] ], [ [ [ 15.205078, 43.929550 ], [ 15.161133, 43.897892 ], [ 15.117188, 43.929550 ], [ 14.853516, 44.182204 ], [ 15.205078, 43.929550 ] ] ], [ [ [ 15.249023, 44.056012 ], [ 15.161133, 44.056012 ], [ 15.161133, 44.119142 ], [ 15.249023, 44.119142 ], [ 15.249023, 44.056012 ] ] ], [ [ [ 14.853516, 44.590467 ], [ 14.897461, 44.621754 ], [ 15.073242, 44.496505 ], [ 14.897461, 44.559163 ], [ 15.029297, 44.465151 ], [ 15.249023, 44.370987 ], [ 15.161133, 44.370987 ], [ 15.161133, 44.308127 ], [ 15.073242, 44.339565 ], [ 15.073242, 44.402392 ], [ 14.897461, 44.496505 ], [ 14.809570, 44.621754 ], [ 14.853516, 44.590467 ] ] ], [ [ [ 14.853516, 44.339565 ], [ 14.765625, 44.339565 ], [ 14.765625, 44.402392 ], [ 14.853516, 44.402392 ], [ 14.853516, 44.339565 ] ] ], [ [ [ 14.414062, 44.590467 ], [ 14.326172, 44.590467 ], [ 14.326172, 44.653024 ], [ 14.414062, 44.653024 ], [ 14.414062, 44.590467 ] ] ], [ [ [ 14.370117, 45.026950 ], [ 14.458008, 44.995883 ], [ 14.414062, 44.809122 ], [ 14.501953, 44.621754 ], [ 14.326172, 44.777936 ], [ 14.282227, 44.964798 ], [ 14.370117, 44.933696 ], [ 14.370117, 44.995883 ], [ 14.238281, 45.120053 ], [ 14.282227, 45.151053 ], [ 14.370117, 45.026950 ] ] ], [ [ [ 14.853516, 44.746733 ], [ 14.809570, 44.715514 ], [ 14.677734, 44.809122 ], [ 14.677734, 44.871443 ], [ 14.853516, 44.746733 ] ] ], [ [ [ 14.633789, 45.089036 ], [ 14.721680, 45.089036 ], [ 14.809570, 44.995883 ], [ 14.677734, 44.964798 ], [ 14.589844, 45.026950 ], [ 14.414062, 45.089036 ], [ 14.545898, 45.213004 ], [ 14.501953, 45.243953 ], [ 14.589844, 45.243953 ], [ 14.633789, 45.089036 ] ] ], [ [ [ 17.973633, 42.747012 ], [ 18.413086, 42.585444 ], [ 18.457031, 42.455888 ], [ 18.193359, 42.585444 ], [ 18.193359, 42.650122 ], [ 18.061523, 42.682435 ], [ 17.841797, 42.779275 ], [ 17.885742, 42.811522 ], [ 17.973633, 42.747012 ] ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Bosnia and Herzegovina", "sov_a3": "BIH", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Bosnia and Herzegovina", "adm0_a3": "BIH", "geou_dif": 0, "geounit": "Bosnia and Herzegovina", "gu_a3": "BIH", "su_dif": 0, "subunit": "Bosnia and Herzegovina", "su_a3": "BIH", "brk_diff": 0, "name": "Bosnia and Herz.", "name_long": "Bosnia and Herzegovina", "brk_a3": "BIH", "brk_name": "Bosnia and Herz.", "abbrev": "B.H.", "postal": "BiH", "formal_en": "Bosnia and Herzegovina", "name_sort": "Bosnia and Herzegovina", "mapcolor7": 1, "mapcolor8": 1, "mapcolor9": 1, "mapcolor13": 2, "pop_est": 4613414, "gdp_md_est": 29700, "pop_year": -99, "lastcensus": 1991, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "BA", "iso_a3": "BIH", "iso_n3": "070", "un_a3": "070", "wb_a2": "BA", "wb_a3": "BIH", "woe_id": -99, "adm0_a3_is": "BIH", "adm0_a3_us": "BIH", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 16, "long_len": 22, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.962891, 45.243953 ], [ 17.006836, 45.274886 ], [ 17.182617, 45.151053 ], [ 17.226562, 45.213004 ], [ 17.446289, 45.151053 ], [ 17.534180, 45.151053 ], [ 17.709961, 45.182037 ], [ 17.753906, 45.089036 ], [ 17.885742, 45.089036 ], [ 17.973633, 45.151053 ], [ 18.193359, 45.120053 ], [ 18.237305, 45.182037 ], [ 18.500977, 45.058001 ], [ 18.500977, 45.120053 ], [ 18.588867, 45.120053 ], [ 18.764648, 45.026950 ], [ 18.764648, 44.933696 ], [ 18.852539, 44.871443 ], [ 18.984375, 44.871443 ], [ 19.160156, 44.933696 ], [ 19.335938, 44.902578 ], [ 19.291992, 44.715514 ], [ 19.116211, 44.527843 ], [ 19.072266, 44.370987 ], [ 19.116211, 44.308127 ], [ 19.335938, 44.276671 ], [ 19.335938, 44.213710 ], [ 19.423828, 44.182204 ], [ 19.555664, 44.087585 ], [ 19.599609, 44.024422 ], [ 19.511719, 43.992815 ], [ 19.204102, 44.024422 ], [ 19.204102, 43.961191 ], [ 19.467773, 43.739352 ], [ 19.467773, 43.580391 ], [ 19.379883, 43.580391 ], [ 19.248047, 43.612217 ], [ 19.160156, 43.548548 ], [ 18.896484, 43.548548 ], [ 19.028320, 43.325178 ], [ 18.940430, 43.293200 ], [ 18.940430, 43.357138 ], [ 18.808594, 43.357138 ], [ 18.632812, 43.261206 ], [ 18.632812, 43.036776 ], [ 18.413086, 43.004647 ], [ 18.413086, 42.811522 ], [ 18.544922, 42.682435 ], [ 18.413086, 42.585444 ], [ 17.973633, 42.747012 ], [ 17.797852, 42.875964 ], [ 17.797852, 42.940339 ], [ 17.622070, 42.908160 ], [ 17.534180, 42.940339 ], [ 17.578125, 42.972502 ], [ 17.622070, 43.068888 ], [ 17.402344, 43.165123 ], [ 17.402344, 43.229195 ], [ 17.226562, 43.357138 ], [ 17.270508, 43.452919 ], [ 17.050781, 43.516689 ], [ 16.655273, 43.802819 ], [ 16.523438, 43.992815 ], [ 16.391602, 44.087585 ], [ 16.303711, 44.087585 ], [ 16.171875, 44.213710 ], [ 16.083984, 44.559163 ], [ 15.996094, 44.527843 ], [ 16.040039, 44.621754 ], [ 15.864258, 44.746733 ], [ 15.776367, 44.715514 ], [ 15.688477, 44.777936 ], [ 15.776367, 45.213004 ], [ 15.996094, 45.243953 ], [ 15.996094, 45.182037 ], [ 16.215820, 45.026950 ], [ 16.303711, 45.026950 ], [ 16.523438, 45.243953 ], [ 16.787109, 45.182037 ], [ 16.787109, 45.243953 ], [ 16.918945, 45.305803 ], [ 16.962891, 45.243953 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Montenegro", "sov_a3": "MNE", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Montenegro", "adm0_a3": "MNE", "geou_dif": 0, "geounit": "Montenegro", "gu_a3": "MNE", "su_dif": 0, "subunit": "Montenegro", "su_a3": "MNE", "brk_diff": 0, "name": "Montenegro", "name_long": "Montenegro", "brk_a3": "MNE", "brk_name": "Montenegro", "abbrev": "Mont.", "postal": "ME", "formal_en": "Montenegro", "name_sort": "Montenegro", "mapcolor7": 4, "mapcolor8": 1, "mapcolor9": 4, "mapcolor13": 5, "pop_est": 672180, "gdp_md_est": 6816, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "ME", "iso_a3": "MNE", "iso_n3": "499", "un_a3": "499", "wb_a2": "ME", "wb_a3": "MNE", "woe_id": -99, "adm0_a3_is": "MNE", "adm0_a3_us": "MNE", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 10, "long_len": 10, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.457031, 42.455888 ], [ 18.413086, 42.585444 ], [ 18.544922, 42.682435 ], [ 18.413086, 42.811522 ], [ 18.413086, 43.004647 ], [ 18.632812, 43.036776 ], [ 18.632812, 43.261206 ], [ 18.808594, 43.357138 ], [ 18.940430, 43.357138 ], [ 18.940430, 43.293200 ], [ 19.028320, 43.325178 ], [ 18.896484, 43.548548 ], [ 19.160156, 43.548548 ], [ 19.160156, 43.484812 ], [ 19.335938, 43.421009 ], [ 19.555664, 43.197167 ], [ 19.687500, 43.197167 ], [ 19.775391, 43.100983 ], [ 19.907227, 43.133061 ], [ 20.126953, 42.972502 ], [ 20.346680, 42.908160 ], [ 20.302734, 42.843751 ], [ 20.170898, 42.811522 ], [ 20.170898, 42.747012 ], [ 19.995117, 42.779275 ], [ 19.995117, 42.714732 ], [ 20.083008, 42.682435 ], [ 20.039062, 42.585444 ], [ 19.863281, 42.488302 ], [ 19.687500, 42.553080 ], [ 19.687500, 42.682435 ], [ 19.555664, 42.585444 ], [ 19.555664, 42.520700 ], [ 19.248047, 42.195969 ], [ 19.335938, 42.130821 ], [ 19.335938, 41.869561 ], [ 19.160156, 41.934977 ], [ 19.072266, 42.130821 ], [ 18.852539, 42.293564 ], [ 18.720703, 42.293564 ], [ 18.676758, 42.391009 ], [ 18.544922, 42.391009 ], [ 18.544922, 42.455888 ], [ 18.457031, 42.423457 ], [ 18.457031, 42.455888 ] ], [ [ 18.544922, 42.455888 ], [ 18.676758, 42.423457 ], [ 18.676758, 42.488302 ], [ 18.544922, 42.455888 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 5, "sovereignt": "Republic of Serbia", "sov_a3": "SRB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Republic of Serbia", "adm0_a3": "SRB", "geou_dif": 0, "geounit": "Republic of Serbia", "gu_a3": "SRB", "su_dif": 0, "subunit": "Republic of Serbia", "su_a3": "SRB", "brk_diff": 0, "name": "Serbia", "name_long": "Serbia", "brk_a3": "SRB", "brk_name": "Serbia", "abbrev": "Serb.", "postal": "RS", "formal_en": "Republic of Serbia", "name_sort": "Serbia", "mapcolor7": 3, "mapcolor8": 3, "mapcolor9": 2, "mapcolor13": 10, "pop_est": 7379339, "gdp_md_est": 80340, "pop_year": -99, "lastcensus": 2011, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "RS", "iso_a3": "SRB", "iso_n3": "688", "un_a3": "688", "wb_a2": "YF", "wb_a3": "SRB", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "SRB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 5, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.731445, 46.134170 ], [ 20.170898, 46.164614 ], [ 20.302734, 46.073231 ], [ 20.302734, 46.012224 ], [ 20.522461, 45.920587 ], [ 20.698242, 45.736860 ], [ 20.742188, 45.767523 ], [ 20.742188, 45.490946 ], [ 20.961914, 45.336702 ], [ 21.489258, 45.151053 ], [ 21.313477, 44.995883 ], [ 21.489258, 44.964798 ], [ 21.533203, 44.902578 ], [ 21.357422, 44.902578 ], [ 21.357422, 44.809122 ], [ 21.533203, 44.809122 ], [ 21.665039, 44.684277 ], [ 21.972656, 44.684277 ], [ 22.060547, 44.527843 ], [ 22.148438, 44.527843 ], [ 22.280273, 44.715514 ], [ 22.412109, 44.746733 ], [ 22.763672, 44.590467 ], [ 22.543945, 44.590467 ], [ 22.543945, 44.527843 ], [ 22.456055, 44.527843 ], [ 22.543945, 44.339565 ], [ 22.631836, 44.339565 ], [ 22.675781, 44.245199 ], [ 22.587891, 44.213710 ], [ 22.587891, 44.087585 ], [ 22.500000, 44.087585 ], [ 22.500000, 44.024422 ], [ 22.368164, 44.024422 ], [ 22.324219, 43.802819 ], [ 22.456055, 43.675818 ], [ 22.500000, 43.484812 ], [ 22.631836, 43.452919 ], [ 22.983398, 43.197167 ], [ 22.895508, 43.068888 ], [ 22.719727, 42.972502 ], [ 22.719727, 42.908160 ], [ 22.543945, 42.908160 ], [ 22.412109, 42.843751 ], [ 22.412109, 42.585444 ], [ 22.500000, 42.520700 ], [ 22.500000, 42.423457 ], [ 22.412109, 42.391009 ], [ 22.412109, 42.326062 ], [ 22.324219, 42.326062 ], [ 22.236328, 42.391009 ], [ 21.533203, 42.261049 ], [ 21.489258, 42.358544 ], [ 21.621094, 42.423457 ], [ 21.577148, 42.455888 ], [ 21.708984, 42.553080 ], [ 21.752930, 42.682435 ], [ 21.357422, 42.747012 ], [ 21.401367, 42.875964 ], [ 21.225586, 42.908160 ], [ 21.093750, 43.100983 ], [ 20.961914, 43.100983 ], [ 20.786133, 43.293200 ], [ 20.566406, 43.229195 ], [ 20.654297, 43.100983 ], [ 20.434570, 42.972502 ], [ 20.478516, 42.908160 ], [ 20.302734, 42.843751 ], [ 20.346680, 42.908160 ], [ 20.126953, 42.972502 ], [ 19.907227, 43.133061 ], [ 19.775391, 43.100983 ], [ 19.687500, 43.197167 ], [ 19.555664, 43.197167 ], [ 19.335938, 43.421009 ], [ 19.160156, 43.484812 ], [ 19.160156, 43.548548 ], [ 19.248047, 43.612217 ], [ 19.379883, 43.580391 ], [ 19.467773, 43.580391 ], [ 19.467773, 43.739352 ], [ 19.204102, 43.961191 ], [ 19.204102, 44.024422 ], [ 19.511719, 43.992815 ], [ 19.599609, 44.024422 ], [ 19.555664, 44.087585 ], [ 19.423828, 44.182204 ], [ 19.335938, 44.213710 ], [ 19.335938, 44.276671 ], [ 19.116211, 44.308127 ], [ 19.072266, 44.370987 ], [ 19.116211, 44.527843 ], [ 19.291992, 44.715514 ], [ 19.335938, 44.902578 ], [ 19.160156, 44.933696 ], [ 18.984375, 44.871443 ], [ 18.984375, 44.933696 ], [ 19.116211, 44.964798 ], [ 19.028320, 45.151053 ], [ 19.116211, 45.151053 ], [ 19.116211, 45.213004 ], [ 19.379883, 45.182037 ], [ 19.379883, 45.243953 ], [ 18.940430, 45.398450 ], [ 19.028320, 45.429299 ], [ 18.984375, 45.521744 ], [ 19.072266, 45.552525 ], [ 18.896484, 45.552525 ], [ 18.940430, 45.706179 ], [ 18.808594, 45.828799 ], [ 18.896484, 45.951150 ], [ 18.940430, 45.951150 ], [ 19.072266, 46.042736 ], [ 19.248047, 45.981695 ], [ 19.248047, 46.042736 ], [ 19.379883, 46.042736 ], [ 19.555664, 46.195042 ], [ 19.687500, 46.195042 ], [ 19.731445, 46.134170 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Kosovo", "sov_a3": "KOS", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Kosovo", "adm0_a3": "KOS", "geou_dif": 0, "geounit": "Kosovo", "gu_a3": "KOS", "su_dif": 0, "subunit": "Kosovo", "su_a3": "KOS", "brk_diff": 1, "name": "Kosovo", "name_long": "Kosovo", "brk_a3": "B57", "brk_name": "Kosovo", "abbrev": "Kos.", "postal": "KO", "formal_en": "Republic of Kosovo", "note_brk": "Self admin.; Claimed by Serbia", "name_sort": "Kosovo", "mapcolor7": 2, "mapcolor8": 2, "mapcolor9": 3, "mapcolor13": 11, "pop_est": 1804838, "gdp_md_est": 5352, "pop_year": -99, "lastcensus": 1981, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "-99", "iso_a3": "-99", "iso_n3": "-99", "un_a3": "-099", "wb_a2": "KV", "wb_a3": "KSV", "woe_id": -99, "adm0_a3_is": "SRB", "adm0_a3_us": "KOS", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 6, "long_len": 6, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.961914, 43.100983 ], [ 21.093750, 43.100983 ], [ 21.225586, 42.908160 ], [ 21.401367, 42.875964 ], [ 21.357422, 42.747012 ], [ 21.752930, 42.682435 ], [ 21.708984, 42.553080 ], [ 21.577148, 42.455888 ], [ 21.621094, 42.423457 ], [ 21.489258, 42.358544 ], [ 21.533203, 42.261049 ], [ 21.313477, 42.228517 ], [ 21.269531, 42.098222 ], [ 21.137695, 42.195969 ], [ 20.742188, 42.098222 ], [ 20.742188, 41.934977 ], [ 20.698242, 41.869561 ], [ 20.610352, 41.869561 ], [ 20.566406, 41.902277 ], [ 20.478516, 42.261049 ], [ 20.214844, 42.326062 ], [ 20.126953, 42.520700 ], [ 20.039062, 42.553080 ], [ 20.039062, 42.585444 ], [ 20.083008, 42.682435 ], [ 19.995117, 42.714732 ], [ 19.995117, 42.779275 ], [ 20.170898, 42.747012 ], [ 20.170898, 42.811522 ], [ 20.302734, 42.843751 ], [ 20.478516, 42.908160 ], [ 20.434570, 42.972502 ], [ 20.654297, 43.100983 ], [ 20.566406, 43.229195 ], [ 20.786133, 43.293200 ], [ 20.961914, 43.100983 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Albania", "sov_a3": "ALB", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Albania", "adm0_a3": "ALB", "geou_dif": 0, "geounit": "Albania", "gu_a3": "ALB", "su_dif": 0, "subunit": "Albania", "su_a3": "ALB", "brk_diff": 0, "name": "Albania", "name_long": "Albania", "brk_a3": "ALB", "brk_name": "Albania", "abbrev": "Alb.", "postal": "AL", "formal_en": "Republic of Albania", "name_sort": "Albania", "mapcolor7": 1, "mapcolor8": 4, "mapcolor9": 1, "mapcolor13": 6, "pop_est": 3639453, "gdp_md_est": 21810, "pop_year": -99, "lastcensus": 2001, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "4. Lower middle income", "wikipedia": -99, "iso_a2": "AL", "iso_a3": "ALB", "iso_n3": "008", "un_a3": "008", "wb_a2": "AL", "wb_a3": "ALB", "woe_id": -99, "adm0_a3_is": "ALB", "adm0_a3_us": "ALB", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 7, "long_len": 7, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.467773, 41.013066 ], [ 19.423828, 41.178654 ], [ 19.511719, 41.277806 ], [ 19.467773, 41.343825 ], [ 19.379883, 41.343825 ], [ 19.379883, 41.409776 ], [ 19.511719, 41.541478 ], [ 19.423828, 41.607228 ], [ 19.555664, 41.607228 ], [ 19.599609, 41.804078 ], [ 19.335938, 41.869561 ], [ 19.335938, 42.130821 ], [ 19.248047, 42.195969 ], [ 19.555664, 42.520700 ], [ 19.555664, 42.585444 ], [ 19.687500, 42.682435 ], [ 19.687500, 42.553080 ], [ 19.863281, 42.488302 ], [ 20.039062, 42.585444 ], [ 20.039062, 42.553080 ], [ 20.126953, 42.520700 ], [ 20.214844, 42.326062 ], [ 20.478516, 42.261049 ], [ 20.566406, 41.902277 ], [ 20.478516, 41.771312 ], [ 20.522461, 41.607228 ], [ 20.434570, 41.574361 ], [ 20.522461, 41.442726 ], [ 20.522461, 41.376809 ], [ 20.434570, 41.343825 ], [ 20.478516, 41.211722 ], [ 20.654297, 41.079351 ], [ 20.698242, 40.913513 ], [ 20.874023, 40.946714 ], [ 20.961914, 40.880295 ], [ 20.917969, 40.747257 ], [ 21.005859, 40.713956 ], [ 21.005859, 40.547200 ], [ 20.742188, 40.446947 ], [ 20.654297, 40.145289 ], [ 20.302734, 40.010787 ], [ 20.390625, 39.842286 ], [ 20.258789, 39.808536 ], [ 20.258789, 39.707187 ], [ 20.170898, 39.639538 ], [ 20.083008, 39.707187 ], [ 19.951172, 39.707187 ], [ 19.995117, 39.876019 ], [ 19.863281, 39.909736 ], [ 19.863281, 40.078071 ], [ 19.731445, 40.078071 ], [ 19.687500, 40.145289 ], [ 19.467773, 40.212441 ], [ 19.335938, 40.313043 ], [ 19.291992, 40.446947 ], [ 19.379883, 40.413496 ], [ 19.379883, 40.346544 ], [ 19.467773, 40.380028 ], [ 19.467773, 40.480381 ], [ 19.379883, 40.513799 ], [ 19.423828, 40.580585 ], [ 19.335938, 40.580585 ], [ 19.291992, 40.647304 ], [ 19.423828, 40.913513 ], [ 19.511719, 40.946714 ], [ 19.467773, 41.013066 ] ] ] } } +, +{ "type": "Feature", "properties": { "scalerank": 0, "featurecla": "Admin-0 country", "labelrank": 6, "sovereignt": "Macedonia", "sov_a3": "MKD", "adm0_dif": 0, "level": 2, "type": "Sovereign country", "admin": "Macedonia", "adm0_a3": "MKD", "geou_dif": 0, "geounit": "Macedonia", "gu_a3": "MKD", "su_dif": 0, "subunit": "Macedonia", "su_a3": "MKD", "brk_diff": 0, "name": "Macedonia", "name_long": "Macedonia", "brk_a3": "MKD", "brk_name": "Macedonia", "abbrev": "Mkd.", "postal": "MK", "formal_en": "Former Yugoslav Republic of Macedonia", "name_sort": "Macedonia, FYR", "mapcolor7": 5, "mapcolor8": 3, "mapcolor9": 7, "mapcolor13": 3, "pop_est": 2066718, "gdp_md_est": 18780, "pop_year": -99, "lastcensus": 2010, "gdp_year": -99, "economy": "6. Developing region", "income_grp": "3. Upper middle income", "wikipedia": -99, "iso_a2": "MK", "iso_a3": "MKD", "iso_n3": "807", "un_a3": "807", "wb_a2": "MK", "wb_a3": "MKD", "woe_id": -99, "adm0_a3_is": "MKD", "adm0_a3_us": "MKD", "adm0_a3_un": -99, "adm0_a3_wb": -99, "continent": "Europe", "region_un": "Europe", "subregion": "Southern Europe", "region_wb": "Europe & Central Asia", "name_len": 9, "long_len": 9, "abbrev_len": 4, "tiny": -99, "homepart": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.324219, 42.326062 ], [ 22.500000, 42.130821 ], [ 22.851562, 42.000325 ], [ 22.851562, 41.869561 ], [ 22.983398, 41.771312 ], [ 22.895508, 41.640078 ], [ 22.939453, 41.376809 ], [ 22.719727, 41.343825 ], [ 22.675781, 41.145570 ], [ 22.631836, 41.211722 ], [ 22.587891, 41.145570 ], [ 21.928711, 41.145570 ], [ 21.840820, 41.013066 ], [ 21.752930, 40.946714 ], [ 21.621094, 40.946714 ], [ 21.577148, 40.880295 ], [ 20.961914, 40.880295 ], [ 20.874023, 40.946714 ], [ 20.698242, 40.913513 ], [ 20.654297, 41.079351 ], [ 20.478516, 41.211722 ], [ 20.434570, 41.343825 ], [ 20.522461, 41.376809 ], [ 20.522461, 41.442726 ], [ 20.434570, 41.574361 ], [ 20.522461, 41.607228 ], [ 20.478516, 41.771312 ], [ 20.566406, 41.902277 ], [ 20.610352, 41.869561 ], [ 20.698242, 41.869561 ], [ 20.742188, 41.934977 ], [ 20.742188, 42.098222 ], [ 21.137695, 42.195969 ], [ 21.269531, 42.098222 ], [ 21.313477, 42.228517 ], [ 21.533203, 42.261049 ], [ 22.236328, 42.391009 ], [ 22.324219, 42.326062 ] ] ] } } +] } +] } +] } diff --git a/tile.cpp b/tile.cpp index 9465b79..09f7a48 100644 --- a/tile.cpp +++ b/tile.cpp @@ -19,6 +19,7 @@ #include #include #include +#include #include "mvt.hpp" #include "mbtiles.hpp" #include "geometry.hpp" @@ -372,6 +373,7 @@ struct partial { std::vector geoms; std::vector keys; std::vector values; + std::vector arc_polygon; char *meta; long long layer; long long original_seq; @@ -460,10 +462,17 @@ void *partial_feature_worker(void *v) { geom = remove_noop(geom, t, 32 - z - line_detail); } - drawvec ngeom = simplify_lines(geom, z, line_detail, !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), (*partials)[i].simplification); + bool already_marked = false; + if (additional[A_DETECT_SHARED_BORDERS] && t == VT_POLYGON) { + already_marked = true; + } - if (t != VT_POLYGON || ngeom.size() >= 3) { - geom = ngeom; + if (!already_marked) { + drawvec ngeom = simplify_lines(geom, z, line_detail, !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), (*partials)[i].simplification, already_marked); + + if (t != VT_POLYGON || ngeom.size() >= 3) { + geom = ngeom; + } } } } @@ -561,6 +570,398 @@ int manage_gap(unsigned long long index, unsigned long long *previndex, double s return 0; } +// Does not fix up moveto/lineto +static drawvec reverse_subring(drawvec const &dv) { + drawvec out; + + for (size_t i = dv.size(); i > 0; i--) { + out.push_back(dv[i - 1]); + } + + return out; +} + +struct edge { + unsigned x1; + unsigned y1; + unsigned x2; + unsigned y2; + unsigned ring; + + edge(unsigned _x1, unsigned _y1, unsigned _x2, unsigned _y2, unsigned _ring) { + x1 = _x1; + y1 = _y1; + x2 = _x2; + y2 = _y2; + ring = _ring; + } + + bool operator<(const edge &s) const { + long long cmp = (long long) y1 - s.y1; + if (cmp == 0) { + cmp = (long long) x1 - s.x1; + } + if (cmp == 0) { + cmp = (long long) y2 - s.y2; + } + if (cmp == 0) { + cmp = (long long) x2 - s.x2; + } + return cmp < 0; + } +}; + +struct edgecmp_ring { + bool operator()(const edge &a, const edge &b) { + long long cmp = (long long) a.y1 - b.y1; + if (cmp == 0) { + cmp = (long long) a.x1 - b.x1; + } + if (cmp == 0) { + cmp = (long long) a.y2 - b.y2; + } + if (cmp == 0) { + cmp = (long long) a.x2 - b.x2; + } + if (cmp == 0) { + cmp = (long long) a.ring - b.ring; + } + return cmp < 0; + } +} edgecmp_ring; + +bool edges_same(std::pair::iterator, std::vector::iterator> e1, std::pair::iterator, std::vector::iterator> e2) { + if ((e2.second - e2.first) != (e1.second - e1.first)) { + return false; + } + + while (e1.first != e1.second) { + if (e1.first->ring != e2.first->ring) { + return false; + } + + ++e1.first; + ++e2.first; + } + + return true; +} + +void find_common_edges(std::vector &partials, int z, int line_detail, double simplification, int maxzoom) { + for (size_t i = 0; i < partials.size(); i++) { + if (partials[i].t == VT_POLYGON) { + for (size_t j = 0; j < partials[i].geoms.size(); j++) { + drawvec &g = partials[i].geoms[j]; + drawvec out; + + for (size_t k = 0; k < g.size(); k++) { + if (g[k].op == VT_LINETO && k > 0 && g[k - 1] == g[k]) { + ; + } else { + out.push_back(g[k]); + } + } + + partials[i].geoms[j] = out; + } + } + } + + // Construct a mapping from all polygon edges to the set of rings + // that each edge appears in. (The ring number is across all polygons; + // we don't need to look it back up, just to tell where it changes.) + + std::vector edges; + size_t ring = 0; + for (size_t i = 0; i < partials.size(); i++) { + if (partials[i].t == VT_POLYGON) { + for (size_t j = 0; j < partials[i].geoms.size(); j++) { + for (size_t k = 0; k + 1 < partials[i].geoms[j].size(); k++) { + if (partials[i].geoms[j][k].op == VT_MOVETO) { + ring++; + } + + if (partials[i].geoms[j][k + 1].op == VT_LINETO) { + drawvec dv; + if (partials[i].geoms[j][k] < partials[i].geoms[j][k + 1]) { + dv.push_back(partials[i].geoms[j][k]); + dv.push_back(partials[i].geoms[j][k + 1]); + } else { + dv.push_back(partials[i].geoms[j][k + 1]); + dv.push_back(partials[i].geoms[j][k]); + } + + edges.push_back(edge(dv[0].x, dv[0].y, dv[1].x, dv[1].y, ring)); + } + } + } + } + } + + std::sort(edges.begin(), edges.end(), edgecmp_ring); + std::set necessaries; + + // Now mark all the points where the set of rings using the edge on one side + // is not the same as the set of rings using the edge on the other side. + + for (size_t i = 0; i < partials.size(); i++) { + if (partials[i].t == VT_POLYGON) { + for (size_t j = 0; j < partials[i].geoms.size(); j++) { + drawvec &g = partials[i].geoms[j]; + + for (size_t k = 0; k < g.size(); k++) { + g[k].necessary = 0; + } + + for (size_t a = 0; a < g.size(); a++) { + if (g[a].op == VT_MOVETO) { + size_t b; + + for (b = a + 1; b < g.size(); b++) { + if (g[b].op != VT_LINETO) { + break; + } + } + + // -1 because of duplication at the end + size_t s = b - a - 1; + + if (s > 0) { + drawvec left; + if (g[a + (0 - 1 + s) % s] < g[a + 0]) { + left.push_back(g[a + (0 - 1 + s) % s]); + left.push_back(g[a + 0]); + } else { + left.push_back(g[a + 0]); + left.push_back(g[a + (0 - 1 + s) % s]); + } + if (left[1] < left[0]) { + fprintf(stderr, "left misordered\n"); + } + std::pair::iterator, std::vector::iterator> e1 = std::equal_range(edges.begin(), edges.end(), edge(left[0].x, left[0].y, left[1].x, left[1].y, 0)); + + for (size_t k = 0; k < s; k++) { + drawvec right; + + if (g[a + k] < g[a + k + 1]) { + right.push_back(g[a + k]); + right.push_back(g[a + k + 1]); + } else { + right.push_back(g[a + k + 1]); + right.push_back(g[a + k]); + } + + std::pair::iterator, std::vector::iterator> e2 = std::equal_range(edges.begin(), edges.end(), edge(right[0].x, right[0].y, right[1].x, right[1].y, 0)); + + if (right[1] < right[0]) { + fprintf(stderr, "left misordered\n"); + } + + if (e1.first == e1.second || e2.first == e2.second) { + fprintf(stderr, "Internal error: polygon edge lookup failed for %lld,%lld to %lld,%lld or %lld,%lld to %lld,%lld\n", left[0].x, left[0].y, left[1].x, left[1].y, right[0].x, right[0].y, right[1].x, right[1].y); + exit(EXIT_FAILURE); + } + + if (!edges_same(e1, e2)) { + g[a + k].necessary = 1; + necessaries.insert(g[a + k]); + } + + e1 = e2; + } + } + + a = b - 1; + } + } + } + } + } + + edges.clear(); + std::map arcs; + + // Roll rings that include a necessary point around so they start at one + + for (size_t i = 0; i < partials.size(); i++) { + if (partials[i].t == VT_POLYGON) { + for (size_t j = 0; j < partials[i].geoms.size(); j++) { + drawvec &g = partials[i].geoms[j]; + + for (size_t k = 0; k < g.size(); k++) { + if (necessaries.count(g[k]) != 0) { + g[k].necessary = 1; + } + } + + for (size_t k = 0; k < g.size(); k++) { + if (g[k].op == VT_MOVETO) { + ssize_t necessary = -1; + ssize_t lowest = k; + size_t l; + for (l = k + 1; l < g.size(); l++) { + if (g[l].op != VT_LINETO) { + break; + } + + if (g[l].necessary) { + necessary = l; + } + if (g[l] < g[lowest]) { + lowest = l; + } + } + + if (necessary < 0) { + necessary = lowest; + // Add a necessary marker if there was none in the ring, + // so the arc code below can find it. + g[lowest].necessary = 1; + } + + { + drawvec tmp; + + // l - 1 because the endpoint is duplicated + for (size_t m = necessary; m < l - 1; m++) { + tmp.push_back(g[m]); + } + for (size_t m = k; m < necessary; m++) { + tmp.push_back(g[m]); + } + + // replace the endpoint + tmp.push_back(g[necessary]); + + if (tmp.size() != l - k) { + fprintf(stderr, "internal error shifting ring\n"); + exit(EXIT_FAILURE); + } + + for (size_t m = 0; m < tmp.size(); m++) { + if (m == 0) { + tmp[m].op = VT_MOVETO; + } else { + tmp[m].op = VT_LINETO; + } + + g[k + m] = tmp[m]; + } + } + + // Now peel off each set of segments from one necessary point to the next + // into an "arc" as in TopoJSON + + for (size_t m = k; m < l; m++) { + if (!g[m].necessary) { + fprintf(stderr, "internal error in arc building\n"); + exit(EXIT_FAILURE); + } + + drawvec arc; + size_t n; + for (n = m; n < l; n++) { + arc.push_back(g[n]); + if (n > m && g[n].necessary) { + break; + } + } + + auto f = arcs.find(arc); + if (f == arcs.end()) { + drawvec arc2 = reverse_subring(arc); + + auto f2 = arcs.find(arc2); + if (f2 == arcs.end()) { + // Add new arc + size_t added = arcs.size() + 1; + arcs.insert(std::pair(arc, added)); + partials[i].arc_polygon.push_back(added); + } else { + partials[i].arc_polygon.push_back(-f2->second); + } + } else { + partials[i].arc_polygon.push_back(f->second); + } + + m = n - 1; + } + + partials[i].arc_polygon.push_back(0); + + k = l - 1; + } + } + } + } + } + + std::vector simplified_arcs; + + size_t count = 0; + for (auto ai = arcs.begin(); ai != arcs.end(); ++ai) { + if (simplified_arcs.size() < ai->second + 1) { + simplified_arcs.resize(ai->second + 1); + } + + drawvec dv = ai->first; + for (size_t i = 0; i < dv.size(); i++) { + if (i == 0) { + dv[i].op = VT_MOVETO; + } else { + dv[i].op = VT_LINETO; + } + } + if (!(prevent[P_SIMPLIFY] || (z == maxzoom && prevent[P_SIMPLIFY_LOW]))) { + simplified_arcs[ai->second] = simplify_lines(dv, z, line_detail, !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), simplification, false); + } else { + simplified_arcs[ai->second] = dv; + } + count++; + } + + for (size_t i = 0; i < partials.size(); i++) { + if (partials[i].t == VT_POLYGON) { + partials[i].geoms.resize(0); + partials[i].geoms.push_back(drawvec()); + bool at_start = true; + draw first(-1, 0, 0); + + for (size_t j = 0; j < partials[i].arc_polygon.size(); j++) { + ssize_t p = partials[i].arc_polygon[j]; + + if (p == 0) { + if (first.op >= 0) { + partials[i].geoms[0].push_back(first); + first = draw(-1, 0, 0); + } + at_start = true; + } else if (p > 0) { + for (size_t k = 0; k + 1 < simplified_arcs[p].size(); k++) { + if (at_start) { + partials[i].geoms[0].push_back(draw(VT_MOVETO, simplified_arcs[p][k].x, simplified_arcs[p][k].y)); + first = draw(VT_LINETO, simplified_arcs[p][k].x, simplified_arcs[p][k].y); + } else { + partials[i].geoms[0].push_back(draw(VT_LINETO, simplified_arcs[p][k].x, simplified_arcs[p][k].y)); + } + at_start = 0; + } + } else { /* p < 0 */ + for (ssize_t k = simplified_arcs[-p].size() - 1; k > 0; k--) { + if (at_start) { + partials[i].geoms[0].push_back(draw(VT_MOVETO, simplified_arcs[-p][k].x, simplified_arcs[-p][k].y)); + first = draw(VT_LINETO, simplified_arcs[-p][k].x, simplified_arcs[-p][k].y); + } else { + partials[i].geoms[0].push_back(draw(VT_LINETO, simplified_arcs[-p][k].x, simplified_arcs[-p][k].y)); + } + at_start = 0; + } + } + } + } + } +} + long long write_tile(FILE *geoms, long long *geompos_in, char *metabase, char *stringpool, int z, unsigned tx, unsigned ty, int detail, int min_detail, int basezoom, sqlite3 *outdb, double droprate, int buffer, const char *fname, FILE **geomfile, int minzoom, int maxzoom, double todo, volatile long long *along, long long alongminus, double gamma, int child_shards, long long *meta_off, long long *pool_off, unsigned *initial_x, unsigned *initial_y, volatile int *running, double simplification, std::vector> *layermaps, std::vector> *layer_unmaps) { int line_detail; double fraction = 1; @@ -868,6 +1269,10 @@ long long write_tile(FILE *geoms, long long *geompos_in, char *metabase, char *s } } + if (additional[A_DETECT_SHARED_BORDERS]) { + find_common_edges(partials, z, line_detail, simplification, maxzoom); + } + int tasks = ceil((double) CPUS / *running); if (tasks < 1) { tasks = 1; @@ -987,7 +1392,7 @@ long long write_tile(FILE *geoms, long long *geompos_in, char *metabase, char *s if (layer_features[x].coalesced && layer_features[x].type == VT_LINE) { layer_features[x].geom = remove_noop(layer_features[x].geom, layer_features[x].type, 0); layer_features[x].geom = simplify_lines(layer_features[x].geom, 32, 0, - !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), simplification); + !(prevent[P_CLIPPING] || prevent[P_DUPLICATION]), simplification, false); } if (layer_features[x].type == VT_POLYGON) { diff --git a/version.hpp b/version.hpp index 08c7cec..53ec6fb 100644 --- a/version.hpp +++ b/version.hpp @@ -1 +1 @@ -#define VERSION "tippecanoe v1.14.2\n" +#define VERSION "tippecanoe v1.14.3\n"