diff --git a/docs/examples/geo_schelling.md b/docs/examples/geo_schelling.md index eba950d3..a843a1a4 100644 --- a/docs/examples/geo_schelling.md +++ b/docs/examples/geo_schelling.md @@ -8,8 +8,24 @@ allowfullscreen> -```{include} ../../examples/geo_schelling/README.md ---- -start-line: 3 ---- +## Summary + +This is a geoversion of a simplified Schelling example. For the original implementation details please see the Mesa Schelling examples. + +### GeoSpace + +Instead of an abstract grid space, we represent the space using NUTS-2 regions to create the GeoSpace in the model. + +### GeoAgent + +NUTS-2 regions are the GeoAgents. The neighbors of a polygon are considered those polygons that touch its border (i.e., edge neighbours). During the running of the model, a polygon queries the colors of the surrounding polygon and if the ratio falls below a certain threshold (e.g., 40% of the same color), the agent moves to an uncolored polygon. + +## How to Run + +To run the model interactively, run `mesa runserver` in [this directory](https://github.com/projectmesa/mesa-examples/tree/main/gis/geo_schelling). e.g. + +```bash +mesa runserver ``` + +Then open your browser to [http://127.0.0.1:8521/](http://127.0.0.1:8521/) and press `Start`. diff --git a/docs/examples/geo_schelling_points.md b/docs/examples/geo_schelling_points.md index 3751758f..9373ed2d 100644 --- a/docs/examples/geo_schelling_points.md +++ b/docs/examples/geo_schelling_points.md @@ -8,8 +8,24 @@ allowfullscreen> -```{include} ../../examples/geo_schelling_points/README.md ---- -start-line: 3 ---- +## Summary + +This is a geoversion of a simplified Schelling example. + +### GeoSpace + +The NUTS-2 regions are considered as a shared definition of neighborhood among all people agents, instead of a locally defined neighborhood such as Moore or von Neumann. + +### GeoAgent + +There are two types of GeoAgents: people and regions. Each person resides in a randomly assigned region, and checks the color ratio of its region against a pre-defined "happiness" threshold at every time step. If the ratio falls below a certain threshold (e.g., 40%), the agent is found to be "unhappy", and randomly moves to another region. People are represented as points, with locations randomly chosen within their regions. The color of a region depends on the color of the majority population it contains (i.e., point in polygon calculations). + +## How to run + +To run the model interactively, run `mesa runserver` in [this directory](https://github.com/projectmesa/mesa-examples/tree/main/gis/geo_schelling_points). e.g. + +```bash +mesa runserver ``` + +Then open your browser to [http://127.0.0.1:8521/](http://127.0.0.1:8521/) and press `Start`. diff --git a/docs/examples/geo_sir.md b/docs/examples/geo_sir.md index 7dfc8e8c..d5d46b70 100644 --- a/docs/examples/geo_sir.md +++ b/docs/examples/geo_sir.md @@ -8,8 +8,25 @@ allowfullscreen> -```{include} ../../examples/geo_sir/README.md ---- -start-line: 3 ---- +## Summary + +This is a geoversion of a simple agent-based pandemic SIR model, as an example to show the capabilities of mesa-geo. + +It uses geographical data of Toronto's regions on top of a an Leaflet map to show the location of agents (in a continuous space). + +Person agents are initially located in random positions in the city, then start moving around unless they die. +A fraction of agents start with an infection and may recover or die in each step. +Susceptible agents (those who have never been infected) who come in proximity with an infected agent may become infected. + +Neighbourhood agents represent neighbourhoods in the Toronto, and become hot-spots (colored red) if there are infected agents inside them. +Data obtained from [this link](http://adamw523.com/toronto-geojson/). + +## How to run + +To run the model interactively, run `mesa runserver` in [this directory](https://github.com/projectmesa/mesa-examples/tree/main/gis/geo_sir). e.g. + +```bash +mesa runserver ``` + +Then open your browser to [http://127.0.0.1:8521/](http://127.0.0.1:8521/) and press `Start`. diff --git a/docs/examples/population.md b/docs/examples/population.md index e9d0593e..0e82db04 100644 --- a/docs/examples/population.md +++ b/docs/examples/population.md @@ -8,8 +8,24 @@ allowfullscreen> -```{include} ../../examples/population/README.md ---- -start-line: 3 ---- +## Summary + +This is an implementation of the [Uganda Example](https://github.com/abmgis/abmgis/tree/master/Chapter05-GIS/Models/UgandaExample) in Python, using [Mesa](https://github.com/projectmesa/mesa) and [Mesa-Geo](https://github.com/projectmesa/mesa-geo). + +### GeoSpace + +The GeoSpace consists of both a raster and a vector layer. The raster layer contains population data for each cell, and it is this data that is used for model initialisation, in the sense creating the agents. The vector layer shown in blue color represents a lake in Uganda. It overlays with the raster layer to mask out the cells that agents cannot move into. + +### GeoAgent + +The GeoAgents are people, created based on the population data. As this is a simple example model, the agents only move randomly to neighboring cells at each time step. To make the simulation more realistic and visually appealing, the agents in the same cell have a randomized position within the cell, so that they don’t stand on top of each other at exactly the same coordinate. + +## How to run + +To run the model interactively, run `mesa runserver` in [this directory](https://github.com/projectmesa/mesa-examples/tree/main/gis/population). e.g. + +```bash +mesa runserver ``` + +Then open your browser to [http://127.0.0.1:8521/](http://127.0.0.1:8521/) and press `Start`. diff --git a/docs/examples/rainfall.md b/docs/examples/rainfall.md index 7984a49b..47c353c4 100644 --- a/docs/examples/rainfall.md +++ b/docs/examples/rainfall.md @@ -8,8 +8,24 @@ allowfullscreen> -```{include} ../../examples/rainfall/README.md ---- -start-line: 3 ---- +## Summary + +This is an implementation of the [Rainfall Model](https://github.com/abmgis/abmgis/tree/master/Chapter06-IntegratingABMandGIS/Models/Rainfall) in Python, using [Mesa](https://github.com/projectmesa/mesa) and [Mesa-Geo](https://github.com/projectmesa/mesa-geo). Inspired by the NetLogo [Grand Canyon model](http://ccl.northwestern.edu/netlogo/models/GrandCanyon), this is an example of how a digital elevation model (DEM) can be used to create an artificial world. + +### GeoSpace + +The GeoSpace contains a raster layer representing elevations. It is this elevation value that impacts how the raindrops move over the terrain. Apart from `elevation`, each cell of the raster layer also has a `water_level` attribute that is used to track the amount of water it contains. + +### GeoAgent + +In this example, the raindrops are the GeoAgents. At each time step, raindrops are randomly created across the landscape to simulate rainfall. The raindrops flow from cells of higher elevation to lower elevation based on their eight surrounding cells (i.e., Moore neighbourhood). The raindrop also has its own height, which allows them to accumulate, gain height and flow if they are trapped at places such as potholes, pools, or depressions. When they reach the boundary of the GeoSpace, they are removed from the model as outflow. + +## How to run + +To run the model interactively, run `mesa runserver` in [this directory](https://github.com/projectmesa/mesa-examples/tree/main/gis/rainfall). e.g. + +```bash +mesa runserver ``` + +Then open your browser to [http://127.0.0.1:8521/](http://127.0.0.1:8521/) and press `Start`. diff --git a/docs/examples/urban_growth.md b/docs/examples/urban_growth.md index b026954c..9574c476 100644 --- a/docs/examples/urban_growth.md +++ b/docs/examples/urban_growth.md @@ -8,8 +8,16 @@ allowfullscreen> -```{include} ../../examples/urban_growth/README.md ---- -start-line: 3 ---- +## Summary + +This is an implementation of the [UrbanGrowth Model](https://github.com/abmgis/abmgis/tree/master/Chapter06-IntegratingABMandGIS/Models/UrbanGrowth) in Python, using [Mesa](https://github.com/projectmesa/mesa) and [Mesa-Geo](https://github.com/projectmesa/mesa-geo). + +## How to run + +To run the model interactively, run `mesa runserver` in [this directory](https://github.com/projectmesa/mesa-examples/tree/main/gis/urban_growth). e.g. + +```bash +mesa runserver ``` + +Then open your browser to [http://127.0.0.1:8521/](http://127.0.0.1:8521/) and press `Start`. diff --git a/examples/README.md b/examples/README.md deleted file mode 100644 index 6a8830ca..00000000 --- a/examples/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# Examples - -## Vector Data - -- [GeoSchelling Model (Polygons)](https://github.com/projectmesa/mesa-geo/tree/main/examples/geo_schelling) -- [GeoSchelling Model (Points & Polygons)](https://github.com/projectmesa/mesa-geo/tree/main/examples/geo_schelling_points) -- [GeoSIR Epidemics Model](https://github.com/projectmesa/mesa-geo/tree/main/examples/geo_sir) - -## Raster Data - -- [Rainfall Model](https://github.com/projectmesa/mesa-geo/tree/main/examples/rainfall) -- [Urban Growth Model](https://github.com/projectmesa/mesa-geo/tree/main/examples/urban_growth) - -## Raster and Vector Data Overlay - -- [Population Model](https://github.com/projectmesa/mesa-geo/tree/main/examples/population) diff --git a/examples/geo_schelling/README.md b/examples/geo_schelling/README.md deleted file mode 100644 index 6dd902cc..00000000 --- a/examples/geo_schelling/README.md +++ /dev/null @@ -1,25 +0,0 @@ -# GeoSchelling Model (Polygons) - -[![](https://img.youtube.com/vi/ZnBk_eSw0_M/0.jpg)](https://www.youtube.com/watch?v=ZnBk_eSw0_M) - -## Summary - -This is a geoversion of a simplified Schelling example. For the original implementation details please see the Mesa Schelling examples. - -### GeoSpace - -Instead of an abstract grid space, we represent the space using NUTS-2 regions to create the GeoSpace in the model. - -### GeoAgent - -NUTS-2 regions are the GeoAgents. The neighbors of a polygon are considered those polygons that touch its border (i.e., edge neighbours). During the running of the model, a polygon queries the colors of the surrounding polygon and if the ratio falls below a certain threshold (e.g., 40% of the same color), the agent moves to an uncolored polygon. - -## How to Run - -To run the model interactively, run `mesa runserver` in this directory. e.g. - -```bash -mesa runserver -``` - -Then open your browser to [http://127.0.0.1:8521/](http://127.0.0.1:8521/) and press `Start`. diff --git a/examples/geo_schelling/data/nuts_rg_60M_2013_lvl_2.geojson b/examples/geo_schelling/data/nuts_rg_60M_2013_lvl_2.geojson deleted file mode 100644 index fb1ed198..00000000 --- a/examples/geo_schelling/data/nuts_rg_60M_2013_lvl_2.geojson +++ /dev/null @@ -1,326 +0,0 @@ -{ -"type": "FeatureCollection", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, -"features": [ -{ "type": "Feature", "id": 2, "properties": { "NUTS_ID": "AT11", "STAT_LEVL_": 2, "SHAPE_AREA": 0.53145725638100005, "SHAPE_LEN": 4.7954485368800004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.1607975, 48.006656501 ], [ 17.093074, 47.708236 ], [ 16.421846, 47.664704498999981 ], [ 16.652076, 47.6229035 ], [ 16.64622, 47.446597 ], [ 16.4337615, 47.352918499999987 ], [ 16.508267499999988, 47.001255999000023 ], [ 16.113849, 46.869067998999981 ], [ 15.996236, 46.8353985 ], [ 16.121719499999983, 46.990666499999975 ], [ 16.015158499999984, 47.36712749899999 ], [ 16.171769499999982, 47.4224 ], [ 16.281081, 47.4551325 ], [ 16.372502, 47.642485498999974 ], [ 16.2690495, 47.796405499 ], [ 16.38889149900001, 47.881600997000021 ], [ 17.066741, 48.11868149899999 ], [ 17.1607975, 48.006656501 ] ] ] } }, -{ "type": "Feature", "id": 6, "properties": { "NUTS_ID": "AT12", "STAT_LEVL_": 2, "SHAPE_AREA": 2.37700914252, "SHAPE_LEN": 8.3963979014200003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.542449499999975, 48.907696997000016 ], [ 15.753633499999978, 48.852178501000026 ], [ 16.940278, 48.617245498999978 ], [ 16.949778, 48.535791999000025 ], [ 16.851106, 48.438635001000023 ], [ 16.976203, 48.172244498 ], [ 17.066741, 48.11868149899999 ], [ 16.38889149900001, 47.881600997000021 ], [ 16.2690495, 47.796405499 ], [ 16.372502, 47.642485498999974 ], [ 16.281081, 47.4551325 ], [ 16.171769499999982, 47.4224 ], [ 15.847011, 47.567789499000014 ], [ 15.217306, 47.7960275 ], [ 15.0892495, 47.741471000999979 ], [ 14.738462, 47.748723499999983 ], [ 14.479043499999989, 48.104414500000019 ], [ 14.521179, 48.237609498999973 ], [ 14.8288425, 48.189076999 ], [ 14.964447, 48.37851200099999 ], [ 14.691014, 48.584301998 ], [ 14.990445, 49.009649001000014 ], [ 15.542449499999975, 48.907696997000016 ] ], [ [ 16.4380425, 48.31626699899999 ], [ 16.181900499999983, 48.171029997 ], [ 16.576992500000017, 48.14443649899999 ], [ 16.4380425, 48.31626699899999 ] ] ] } }, -{ "type": "Feature", "id": 14, "properties": { "NUTS_ID": "AT13", "STAT_LEVL_": 2, "SHAPE_AREA": 0.032096844679499997, "SHAPE_LEN": 0.91142038864099995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.4380425, 48.31626699899999 ], [ 16.576992500000017, 48.14443649899999 ], [ 16.181900499999983, 48.171029997 ], [ 16.4380425, 48.31626699899999 ] ] ] } }, -{ "type": "Feature", "id": 17, "properties": { "NUTS_ID": "AT21", "STAT_LEVL_": 2, "SHAPE_AREA": 1.1057500235, "SHAPE_LEN": 5.7128825258699996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.784528498999975, 46.943882497 ], [ 13.946724, 46.940629999 ], [ 14.844475, 47.048099998999987 ], [ 15.065120499999978, 46.652112497000019 ], [ 14.6745805, 46.450687500000015 ], [ 14.5651755, 46.372453496999981 ], [ 14.434500500000013, 46.442943501 ], [ 13.714184999, 46.522703499999977 ], [ 13.504249500000014, 46.566303998000024 ], [ 12.731392998999979, 46.634288 ], [ 12.690635, 46.656972000999986 ], [ 12.841158, 46.860979499 ], [ 12.6568335, 47.099517497000022 ], [ 13.354519499999981, 47.09710400099999 ], [ 13.784528498999975, 46.943882497 ] ] ] } }, -{ "type": "Feature", "id": 21, "properties": { "NUTS_ID": "AT22", "STAT_LEVL_": 2, "SHAPE_AREA": 1.99126417059, "SHAPE_LEN": 7.0882003681699999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171769499999982, 47.4224 ], [ 16.015158499999984, 47.36712749899999 ], [ 16.121719499999983, 46.990666499999975 ], [ 15.996236, 46.8353985 ], [ 16.038086, 46.656145497000011 ], [ 15.786422, 46.7074695 ], [ 15.649988, 46.705757 ], [ 15.40197949899999, 46.65354849900001 ], [ 15.065120499999978, 46.652112497000019 ], [ 14.844475, 47.048099998999987 ], [ 13.946724, 46.940629999 ], [ 13.784528498999975, 46.943882497 ], [ 13.864178998999989, 47.25217 ], [ 13.607597, 47.283564999000021 ], [ 13.585662999000022, 47.474799499000028 ], [ 13.722560499999986, 47.462111500999981 ], [ 13.777418, 47.714528998999981 ], [ 14.010598, 47.700891997999975 ], [ 14.738462, 47.748723499999983 ], [ 15.0892495, 47.741471000999979 ], [ 15.217306, 47.7960275 ], [ 15.847011, 47.567789499000014 ], [ 16.171769499999982, 47.4224 ] ] ] } }, -{ "type": "Feature", "id": 29, "properties": { "NUTS_ID": "AT31", "STAT_LEVL_": 2, "SHAPE_AREA": 1.4390583829900001, "SHAPE_LEN": 6.4106853793200003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.691014, 48.584301998 ], [ 14.964447, 48.37851200099999 ], [ 14.8288425, 48.189076999 ], [ 14.521179, 48.237609498999973 ], [ 14.479043499999989, 48.104414500000019 ], [ 14.738462, 47.748723499999983 ], [ 14.010598, 47.700891997999975 ], [ 13.777418, 47.714528998999981 ], [ 13.722560499999986, 47.462111500999981 ], [ 13.585662999000022, 47.474799499000028 ], [ 13.516169, 47.496504499000025 ], [ 13.303931, 48.00786949899998 ], [ 12.86018150000001, 47.996639999000024 ], [ 12.751555, 48.112810497999988 ], [ 12.9446845, 48.206692498999985 ], [ 13.177043, 48.294389997 ], [ 13.407838, 48.372160501 ], [ 13.438430499999981, 48.548895001 ], [ 13.51336950000001, 48.590977998000028 ], [ 13.727090499999974, 48.513019500999974 ], [ 13.796107, 48.71360049899999 ], [ 13.839507, 48.771605001000012 ], [ 14.691014, 48.584301998 ] ] ] } }, -{ "type": "Feature", "id": 35, "properties": { "NUTS_ID": "AT32", "STAT_LEVL_": 2, "SHAPE_AREA": 0.891632228581, "SHAPE_LEN": 5.5790013642099998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.585662999000022, 47.474799499000028 ], [ 13.607597, 47.283564999000021 ], [ 13.864178998999989, 47.25217 ], [ 13.784528498999975, 46.943882497 ], [ 13.354519499999981, 47.09710400099999 ], [ 12.6568335, 47.099517497000022 ], [ 12.2407455, 47.069168499 ], [ 12.136014, 47.0806675 ], [ 12.114546500000017, 47.306444000999988 ], [ 12.6995915, 47.477885999000023 ], [ 12.575026499999979, 47.632316 ], [ 12.695795499999974, 47.682222998999976 ], [ 13.046055500000023, 47.520502498999974 ], [ 12.8757855, 47.962608999 ], [ 12.86018150000001, 47.996639999000024 ], [ 13.303931, 48.00786949899998 ], [ 13.516169, 47.496504499000025 ], [ 13.585662999000022, 47.474799499000028 ] ] ] } }, -{ "type": "Feature", "id": 38, "properties": { "NUTS_ID": "BE31", "STAT_LEVL_": 2, "SHAPE_AREA": 0.13567893613400001, "SHAPE_LEN": 1.9732791489299999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.019701, 50.750973000999977 ], [ 4.983341, 50.64224249900002 ], [ 4.577537999000015, 50.542285999 ], [ 4.247219500000028, 50.596118999 ], [ 4.100483, 50.70595549799998 ], [ 4.597269, 50.763534500999981 ], [ 5.019701, 50.750973000999977 ] ] ] } }, -{ "type": "Feature", "id": 40, "properties": { "NUTS_ID": "BE32", "STAT_LEVL_": 2, "SHAPE_AREA": 0.53920904631900002, "SHAPE_LEN": 4.4218588246100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.459731, 50.765968500999975 ], [ 3.5412725, 50.733700499 ], [ 3.775359499999979, 50.747729999 ], [ 3.815390499999978, 50.75072499700002 ], [ 3.895736499, 50.732944498999984 ], [ 4.100483, 50.70595549799998 ], [ 4.247219500000028, 50.596118999 ], [ 4.577537999000015, 50.542285999 ], [ 4.5886625, 50.321315998999978 ], [ 4.474986999, 50.327610000999982 ], [ 4.432494, 49.941615996999985 ], [ 4.233133, 49.957828498000026 ], [ 4.140853, 49.978759997 ], [ 4.027774500000021, 50.358330498999976 ], [ 3.710389, 50.303165499999977 ], [ 3.65551, 50.461735498999985 ], [ 3.615081499999974, 50.490399001000014 ], [ 3.286492, 50.52756899799999 ], [ 3.245294, 50.713009498000019 ], [ 3.176996, 50.756164497999976 ], [ 3.324118, 50.722308999 ], [ 3.459731, 50.765968500999975 ] ] ], [ [ [ 3.0187085, 50.773532999 ], [ 2.863276, 50.708343496999987 ], [ 2.842169, 50.751404 ], [ 2.945734077, 50.793946362999975 ], [ 3.0187085, 50.773532999 ] ] ] ] } }, -{ "type": "Feature", "id": 47, "properties": { "NUTS_ID": "BE33", "STAT_LEVL_": 2, "SHAPE_AREA": 0.51624470082499996, "SHAPE_LEN": 3.7273321152499999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.020998999000028, 50.754295500000012 ], [ 6.26861550000001, 50.625981 ], [ 6.189312500000028, 50.56609400100001 ], [ 6.192200499000023, 50.521055499 ], [ 6.206287499999974, 50.521302000999981 ], [ 6.315556, 50.497042498999974 ], [ 6.405028500000014, 50.323308499 ], [ 6.137662499999976, 50.129951499000015 ], [ 6.0248995, 50.182779498 ], [ 5.980197499999974, 50.329852999000025 ], [ 5.721549499999981, 50.261989500000027 ], [ 5.675838499, 50.368514999000013 ], [ 5.393235, 50.37936399900002 ], [ 5.221259499999974, 50.417297498999972 ], [ 5.028495, 50.588821499 ], [ 4.983341, 50.64224249900002 ], [ 5.019701, 50.750973000999977 ], [ 5.1018525, 50.708652498999982 ], [ 5.236892, 50.72714600099999 ], [ 5.431686500000012, 50.719803 ], [ 5.687622, 50.811923998999987 ], [ 5.682000499000026, 50.757446497999979 ], [ 5.892073, 50.755237498999975 ], [ 6.020998999000028, 50.754295500000012 ] ] ] } }, -{ "type": "Feature", "id": 53, "properties": { "NUTS_ID": "BE34", "STAT_LEVL_": 2, "SHAPE_AREA": 0.55786131463199995, "SHAPE_LEN": 3.5688595833300001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0248995, 50.182779498 ], [ 5.746319, 49.853595 ], [ 5.910688, 49.662388001000011 ], [ 5.818117, 49.5463105 ], [ 5.734555999, 49.545690501000024 ], [ 5.470882999000025, 49.49723799899999 ], [ 5.393511, 49.617111 ], [ 5.153738499999974, 49.717926 ], [ 4.969431, 49.801825999000016 ], [ 5.1100045, 49.9253655 ], [ 4.973, 50.028999500999987 ], [ 5.263063499999987, 50.108490001 ], [ 5.393235, 50.37936399900002 ], [ 5.675838499, 50.368514999000013 ], [ 5.721549499999981, 50.261989500000027 ], [ 5.980197499999974, 50.329852999000025 ], [ 6.0248995, 50.182779498 ] ] ] } }, -{ "type": "Feature", "id": 59, "properties": { "NUTS_ID": "BE35", "STAT_LEVL_": 2, "SHAPE_AREA": 0.44161325567199999, "SHAPE_LEN": 3.6278542004599998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.393235, 50.37936399900002 ], [ 5.263063499999987, 50.108490001 ], [ 4.973, 50.028999500999987 ], [ 5.1100045, 49.9253655 ], [ 4.969431, 49.801825999000016 ], [ 4.851578, 49.793255000999977 ], [ 4.793194, 49.98199900100002 ], [ 4.896794, 50.137420498999973 ], [ 4.796697, 50.148677998999972 ], [ 4.432494, 49.941615996999985 ], [ 4.474986999, 50.327610000999982 ], [ 4.5886625, 50.321315998999978 ], [ 4.577537999000015, 50.542285999 ], [ 4.983341, 50.64224249900002 ], [ 5.028495, 50.588821499 ], [ 5.221259499999974, 50.417297498999972 ], [ 5.393235, 50.37936399900002 ] ] ] } }, -{ "type": "Feature", "id": 65, "properties": { "NUTS_ID": "BG31", "STAT_LEVL_": 2, "SHAPE_AREA": 2.0797181850299999, "SHAPE_LEN": 8.0136255840900006 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.641605998999978, 43.733412999 ], [ 25.293740500000013, 43.654294 ], [ 25.14043, 43.26683049899998 ], [ 25.076597, 43.17778049899999 ], [ 24.870264500000019, 42.972207998999977 ], [ 25.014595682999982, 42.748554082999988 ], [ 25.007195500000023, 42.737618999 ], [ 24.385927, 42.749953498000025 ], [ 24.12798399899998, 42.774947997000027 ], [ 24.165291501000013, 42.929701498999975 ], [ 23.971503499999983, 43.062251499000013 ], [ 23.566569, 42.993892999000025 ], [ 23.412767, 43.160521997999979 ], [ 23.00621, 43.192878498000027 ], [ 22.747454, 43.386612999000022 ], [ 22.666975499999978, 43.402747498999986 ], [ 22.357130499999982, 43.809481999000013 ], [ 22.536145, 44.045511499999975 ], [ 22.6751615, 44.215662996999981 ], [ 22.966399500000023, 44.098524997000027 ], [ 23.045898, 44.063749499999972 ], [ 22.838719, 43.877852001 ], [ 22.997154500000022, 43.807626997 ], [ 23.63008, 43.791259997999987 ], [ 24.112719, 43.699566498000024 ], [ 24.324132, 43.699567996999974 ], [ 24.641605998999978, 43.733412999 ] ] ] } }, -{ "type": "Feature", "id": 71, "properties": { "NUTS_ID": "BG32", "STAT_LEVL_": 2, "SHAPE_AREA": 1.6227802097699999, "SHAPE_LEN": 7.3260148064299999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.69541, 43.987343 ], [ 27.2195365, 43.664620499000023 ], [ 27.0018885, 43.696867500999986 ], [ 26.730439499999989, 43.410103499 ], [ 26.188978, 43.517393498999979 ], [ 25.9437855, 43.385800999000026 ], [ 25.95983, 43.369547001 ], [ 25.986506, 43.369286499 ], [ 26.004585, 43.318754499000022 ], [ 26.1674145, 42.952155499000014 ], [ 25.837491, 42.77722749899999 ], [ 25.6149615, 42.786808499000017 ], [ 25.014595682999982, 42.748554082999988 ], [ 24.870264500000019, 42.972207998999977 ], [ 25.076597, 43.17778049899999 ], [ 25.14043, 43.26683049899998 ], [ 25.293740500000013, 43.654294 ], [ 25.544640500000014, 43.64298149699999 ], [ 25.671862499999975, 43.691339998999979 ], [ 26.358359999000015, 44.038415500999974 ], [ 26.379968, 44.042950999000027 ], [ 27.271344999, 44.12633649899999 ], [ 27.69541, 43.987343 ] ] ] } }, -{ "type": "Feature", "id": 77, "properties": { "NUTS_ID": "BG33", "STAT_LEVL_": 2, "SHAPE_AREA": 1.68243612812, "SHAPE_LEN": 6.5331867527099998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.578884, 43.738739 ], [ 28.529502998999988, 43.423537997999972 ], [ 28.0601805, 43.316445000999977 ], [ 27.88262, 42.838413498000023 ], [ 27.0944335, 42.953910499000017 ], [ 26.5899885, 42.920118499000012 ], [ 26.577725499999985, 42.985697 ], [ 26.1674145, 42.952155499000014 ], [ 26.004585, 43.318754499000022 ], [ 25.986506, 43.369286499 ], [ 25.95983, 43.369547001 ], [ 25.9437855, 43.385800999000026 ], [ 26.188978, 43.517393498999979 ], [ 26.730439499999989, 43.410103499 ], [ 27.0018885, 43.696867500999986 ], [ 27.2195365, 43.664620499000023 ], [ 27.69541, 43.987343 ], [ 28.578884, 43.738739 ] ] ] } }, -{ "type": "Feature", "id": 82, "properties": { "NUTS_ID": "BG34", "STAT_LEVL_": 2, "SHAPE_AREA": 2.1187757469899999, "SHAPE_LEN": 8.2318353435099993 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.88262, 42.838413498000023 ], [ 27.899066999000013, 42.700245500999984 ], [ 27.4479045, 42.461486998999987 ], [ 28.035512499999982, 41.983079498999984 ], [ 27.559395, 41.904781496999988 ], [ 27.059650499999975, 42.088336997999988 ], [ 26.9492285, 42.000213498999983 ], [ 26.561544500000025, 41.92627349899999 ], [ 26.538056, 42.154196999000021 ], [ 26.192733499999974, 42.208129997000015 ], [ 26.057769499000017, 42.017656499999987 ], [ 25.609251, 42.200959 ], [ 25.348064, 42.11437749800001 ], [ 25.007195500000023, 42.737618999 ], [ 25.014595682999982, 42.748554082999988 ], [ 25.6149615, 42.786808499000017 ], [ 25.837491, 42.77722749899999 ], [ 26.1674145, 42.952155499000014 ], [ 26.577725499999985, 42.985697 ], [ 26.5899885, 42.920118499000012 ], [ 27.0944335, 42.953910499000017 ], [ 27.88262, 42.838413498000023 ] ] ] } }, -{ "type": "Feature", "id": 88, "properties": { "NUTS_ID": "BG41", "STAT_LEVL_": 2, "SHAPE_AREA": 2.2291414606000002, "SHAPE_LEN": 7.5124806949699998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.385927, 42.749953498000025 ], [ 24.421009500000025, 42.553063996999981 ], [ 23.8904885, 42.546269500999983 ], [ 23.958568, 42.383301499000027 ], [ 23.77226, 42.18118549899998 ], [ 23.786217, 41.833541998999976 ], [ 24.0745475, 41.672703996999985 ], [ 24.059744, 41.522112 ], [ 23.624222998999983, 41.375727497000014 ], [ 22.9275915, 41.338539498999978 ], [ 22.968327499999987, 41.51983549900001 ], [ 22.867214, 42.022199496999974 ], [ 22.510412, 42.15515849799999 ], [ 22.3602065, 42.311157001000026 ], [ 22.559255, 42.480283998 ], [ 22.461472, 42.64849049899999 ], [ 22.44282149899999, 42.825456501000019 ], [ 22.5155105, 42.868538498000021 ], [ 22.7483995, 42.889787496999986 ], [ 23.00621, 43.192878498000027 ], [ 23.412767, 43.160521997999979 ], [ 23.566569, 42.993892999000025 ], [ 23.971503499999983, 43.062251499000013 ], [ 24.165291501000013, 42.929701498999975 ], [ 24.12798399899998, 42.774947997000027 ], [ 24.385927, 42.749953498000025 ] ] ] } }, -{ "type": "Feature", "id": 94, "properties": { "NUTS_ID": "BG42", "STAT_LEVL_": 2, "SHAPE_AREA": 2.5083393701099999, "SHAPE_LEN": 8.0346350016599999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.007195500000023, 42.737618999 ], [ 25.348064, 42.11437749800001 ], [ 25.609251, 42.200959 ], [ 26.057769499000017, 42.017656499999987 ], [ 26.192733499999974, 42.208129997000015 ], [ 26.538056, 42.154196999000021 ], [ 26.561544500000025, 41.92627349899999 ], [ 26.357879, 41.711104498999987 ], [ 26.060393, 41.688516000999982 ], [ 26.158688499999982, 41.391182496999988 ], [ 25.948626, 41.320342000999972 ], [ 25.906437499999981, 41.307574998 ], [ 25.224698499999988, 41.264630997999973 ], [ 25.1793755, 41.310187998 ], [ 24.783956, 41.360188997000023 ], [ 24.525637, 41.568699998 ], [ 24.059744, 41.522112 ], [ 24.0745475, 41.672703996999985 ], [ 23.786217, 41.833541998999976 ], [ 23.77226, 42.18118549899998 ], [ 23.958568, 42.383301499000027 ], [ 23.8904885, 42.546269500999983 ], [ 24.421009500000025, 42.553063996999981 ], [ 24.385927, 42.749953498000025 ], [ 25.007195500000023, 42.737618999 ] ] ] } }, -{ "type": "Feature", "id": 102, "properties": { "NUTS_ID": "CY00", "STAT_LEVL_": 2, "SHAPE_AREA": 0.87854701902400001, "SHAPE_LEN": 5.8309313981199997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.43715, 35.60157049899999 ], [ 33.906834, 35.257218 ], [ 34.077861499999983, 34.966491001 ], [ 33.6778885, 34.971539999000015 ], [ 33.006973499000026, 34.648288499999978 ], [ 32.425964500000021, 34.743192497999985 ], [ 32.269781, 35.066213999000013 ], [ 32.881518, 35.16222 ], [ 32.9214245, 35.403959998 ], [ 33.652597, 35.35919099900002 ], [ 34.588354, 35.695434498999987 ], [ 34.43715, 35.60157049899999 ] ] ] } }, -{ "type": "Feature", "id": 106, "properties": { "NUTS_ID": "CZ01", "STAT_LEVL_": 2, "SHAPE_AREA": 0.029456611647900002, "SHAPE_LEN": 0.98340458465299996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.6693535, 50.016293 ], [ 14.3383055, 49.9483545 ], [ 14.224306, 50.102918999 ], [ 14.6693535, 50.016293 ] ] ] } }, -{ "type": "Feature", "id": 108, "properties": { "NUTS_ID": "CZ02", "STAT_LEVL_": 2, "SHAPE_AREA": 1.3765894295400001, "SHAPE_LEN": 6.3730185119099998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.496953, 49.86118449899999 ], [ 14.932018500000027, 49.549100999000018 ], [ 13.765590499999973, 49.513990498999988 ], [ 13.818361, 49.920024996999985 ], [ 13.407053500000018, 50.089616998999986 ], [ 14.486485499000025, 50.505026997000016 ], [ 15.1467705, 50.52294249800002 ], [ 15.104144500000018, 50.37609500100001 ], [ 15.4375865, 50.109857498999986 ], [ 15.3627085, 50.041348998999979 ], [ 15.496953, 49.86118449899999 ] ], [ [ 14.6693535, 50.016293 ], [ 14.224306, 50.102918999 ], [ 14.3383055, 49.9483545 ], [ 14.6693535, 50.016293 ] ] ] } }, -{ "type": "Feature", "id": 110, "properties": { "NUTS_ID": "CZ03", "STAT_LEVL_": 2, "SHAPE_AREA": 2.13423230708, "SHAPE_LEN": 7.9066862237100004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.407053500000018, 50.089616998999986 ], [ 13.818361, 49.920024996999985 ], [ 13.765590499999973, 49.513990498999988 ], [ 14.932018500000027, 49.549100999000018 ], [ 14.903884, 49.3331485 ], [ 15.586756499999979, 48.947159498000019 ], [ 15.542449499999975, 48.907696997000016 ], [ 14.990445, 49.009649001000014 ], [ 14.691014, 48.584301998 ], [ 13.839507, 48.771605001000012 ], [ 13.5515785, 48.967787497000018 ], [ 13.4166515, 48.980035499 ], [ 13.170907999, 49.173579501 ], [ 12.633763499999986, 49.476194997999983 ], [ 12.593778499999985, 49.542191499000012 ], [ 12.401524, 49.758372998000027 ], [ 12.550988500000017, 49.905088001000024 ], [ 13.301367, 50.099643496999988 ], [ 13.407053500000018, 50.089616998999986 ] ] ] } }, -{ "type": "Feature", "id": 113, "properties": { "NUTS_ID": "CZ04", "STAT_LEVL_": 2, "SHAPE_AREA": 1.0637309668299999, "SHAPE_LEN": 6.1800136281700002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.6188, 50.857804497000018 ], [ 14.343548, 50.667924 ], [ 14.486485499000025, 50.505026997000016 ], [ 13.407053500000018, 50.089616998999986 ], [ 13.301367, 50.099643496999988 ], [ 12.550988500000017, 49.905088001000024 ], [ 12.260799, 50.058156498000017 ], [ 12.160679, 50.219848997999975 ], [ 12.100900500000023, 50.31802799799999 ], [ 12.5837785, 50.407078999000021 ], [ 12.948144500000012, 50.404311499000016 ], [ 13.501846, 50.633642999000017 ], [ 13.652174, 50.730359997999983 ], [ 14.388335, 50.900298997999982 ], [ 14.317873500000019, 51.054698998999982 ], [ 14.491221, 51.043530498999985 ], [ 14.6188, 50.857804497000018 ] ] ] } }, -{ "type": "Feature", "id": 116, "properties": { "NUTS_ID": "CZ05", "STAT_LEVL_": 2, "SHAPE_AREA": 1.6438625007600001, "SHAPE_LEN": 7.0808888858300003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.86327, 50.19812299900002 ], [ 16.8042, 49.598813001 ], [ 16.393628, 49.580610501000024 ], [ 15.496953, 49.86118449899999 ], [ 15.3627085, 50.041348998999979 ], [ 15.4375865, 50.109857498999986 ], [ 15.104144500000018, 50.37609500100001 ], [ 15.1467705, 50.52294249800002 ], [ 14.486485499000025, 50.505026997000016 ], [ 14.343548, 50.667924 ], [ 14.6188, 50.857804497000018 ], [ 14.823362, 50.870550497000011 ], [ 15.032691, 51.021315999000024 ], [ 15.535267499999975, 50.779375999000024 ], [ 16.107318, 50.662072998999975 ], [ 16.443536, 50.586257499999988 ], [ 16.195729, 50.432135001 ], [ 16.58029, 50.142787998000017 ], [ 16.86327, 50.19812299900002 ] ] ] } }, -{ "type": "Feature", "id": 120, "properties": { "NUTS_ID": "CZ06", "STAT_LEVL_": 2, "SHAPE_AREA": 1.79721430742, "SHAPE_LEN": 6.7605881206999996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.8042, 49.598813001 ], [ 16.8052965, 49.405731498000023 ], [ 16.943, 49.493225000999985 ], [ 17.159901499999989, 49.27505750099999 ], [ 17.11208, 49.077270998000017 ], [ 17.64693, 48.854265998000017 ], [ 17.3967255, 48.813349997999978 ], [ 17.2016625, 48.878028997 ], [ 16.940278, 48.617245498999978 ], [ 15.753633499999978, 48.852178501000026 ], [ 15.542449499999975, 48.907696997000016 ], [ 15.586756499999979, 48.947159498000019 ], [ 14.903884, 49.3331485 ], [ 14.932018500000027, 49.549100999000018 ], [ 15.496953, 49.86118449899999 ], [ 16.393628, 49.580610501000024 ], [ 16.8042, 49.598813001 ] ] ] } }, -{ "type": "Feature", "id": 123, "properties": { "NUTS_ID": "CZ07", "STAT_LEVL_": 2, "SHAPE_AREA": 1.1151345795100001, "SHAPE_LEN": 5.8138541232199996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.429605, 50.254513001000021 ], [ 17.147394500000019, 49.877996499 ], [ 17.4669015, 49.870716499000025 ], [ 17.9168565, 49.53780899899999 ], [ 18.4035955, 49.396745499000019 ], [ 18.322436, 49.315059 ], [ 17.64693, 48.854265998000017 ], [ 17.11208, 49.077270998000017 ], [ 17.159901499999989, 49.27505750099999 ], [ 16.943, 49.493225000999985 ], [ 16.8052965, 49.405731498000023 ], [ 16.8042, 49.598813001 ], [ 16.86327, 50.19812299900002 ], [ 17.028323, 50.229996998999979 ], [ 16.907924499999979, 50.44945400099999 ], [ 17.429605, 50.254513001000021 ] ] ] } }, -{ "type": "Feature", "id": 126, "properties": { "NUTS_ID": "CZ08", "STAT_LEVL_": 2, "SHAPE_AREA": 0.69385092800299997, "SHAPE_LEN": 4.4773661800899998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.035060999, 50.06577199899999 ], [ 18.575724, 49.910423 ], [ 18.851551, 49.51718900100002 ], [ 18.4035955, 49.396745499000019 ], [ 17.9168565, 49.53780899899999 ], [ 17.4669015, 49.870716499000025 ], [ 17.147394500000019, 49.877996499 ], [ 17.429605, 50.254513001000021 ], [ 17.718403998999975, 50.32095 ], [ 17.758479, 50.206568 ], [ 17.592736, 50.160014 ], [ 17.868675, 49.972545997 ], [ 18.035060999, 50.06577199899999 ] ] ] } }, -{ "type": "Feature", "id": 130, "properties": { "NUTS_ID": "CH01", "STAT_LEVL_": 2, "SHAPE_AREA": 1.10709731997, "SHAPE_LEN": 7.5483525245700003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.4104115, 46.653020498999979 ], [ 8.4776735, 46.527602499000011 ], [ 8.384717, 46.452158499 ], [ 7.8771375, 45.926954997999985 ], [ 7.86407650000001, 45.916750499999978 ], [ 7.044886, 45.922412999000016 ], [ 6.797888999, 46.136798999 ], [ 6.821063998999989, 46.427154498999982 ], [ 6.24136, 46.343582497 ], [ 6.231694, 46.329429498000025 ], [ 6.219547, 46.311877998999989 ], [ 6.310211, 46.244045498999981 ], [ 5.956067, 46.1320955 ], [ 6.125608, 46.317229999 ], [ 6.064003, 46.416228997000019 ], [ 6.138106, 46.557666997000013 ], [ 6.460011, 46.851551498999982 ], [ 6.780046, 46.852642999000011 ], [ 6.742307, 46.827455498 ], [ 6.852262497000027, 46.77425905699999 ], [ 6.866233500000021, 46.909293499 ], [ 6.8962095, 46.92532599899999 ], [ 6.9924145, 46.830588497 ], [ 6.817892500000028, 46.516538998999977 ], [ 7.237020500000028, 46.553799998999978 ], [ 7.221457, 46.329212499999983 ], [ 8.4104115, 46.653020498999979 ] ] ] } }, -{ "type": "Feature", "id": 134, "properties": { "NUTS_ID": "CH02", "STAT_LEVL_": 2, "SHAPE_AREA": 1.1431317061899999, "SHAPE_LEN": 6.6713179942399998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.43689, 47.379970499000024 ], [ 7.644196500000021, 47.367268998999975 ], [ 7.956853, 47.455200497000021 ], [ 8.007361, 47.339403 ], [ 7.824728, 47.26563749799999 ], [ 7.838686, 47.234413999000026 ], [ 7.956177501000013, 47.003421499000012 ], [ 7.857267001000025, 46.87143149799999 ], [ 8.049088, 46.788008 ], [ 8.368889498999977, 46.787975500000016 ], [ 8.395225, 46.771538 ], [ 8.4489595, 46.764517001 ], [ 8.4104115, 46.653020498999979 ], [ 7.221457, 46.329212499999983 ], [ 7.237020500000028, 46.553799998999978 ], [ 6.817892500000028, 46.516538998999977 ], [ 6.9924145, 46.830588497 ], [ 6.8962095, 46.92532599899999 ], [ 6.866233500000021, 46.909293499 ], [ 6.852262497000027, 46.77425905699999 ], [ 6.742307, 46.827455498 ], [ 6.780046, 46.852642999000011 ], [ 6.460011, 46.851551498999982 ], [ 6.858914, 47.165294499000026 ], [ 7.061636, 47.34373449899999 ], [ 6.879806, 47.352439998000023 ], [ 6.939186, 47.433704499999976 ], [ 7.130353, 47.503040499 ], [ 7.326466, 47.439853500000027 ], [ 7.375684499999977, 47.414077 ], [ 7.43689, 47.379970499000024 ] ] ] } }, -{ "type": "Feature", "id": 140, "properties": { "NUTS_ID": "CH03", "STAT_LEVL_": 2, "SHAPE_AREA": 0.27224028981499998, "SHAPE_LEN": 3.2010510032499999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.634097, 47.561113501000023 ], [ 7.713784499999974, 47.539405 ], [ 7.894107500000018, 47.586374998999986 ], [ 8.426434500000028, 47.567548998 ], [ 8.410716, 47.248037497999974 ], [ 8.4121295, 47.140737498000021 ], [ 7.838686, 47.234413999000026 ], [ 7.824728, 47.26563749799999 ], [ 8.007361, 47.339403 ], [ 7.956853, 47.455200497000021 ], [ 7.644196500000021, 47.367268998999975 ], [ 7.43689, 47.379970499000024 ], [ 7.375684499999977, 47.414077 ], [ 7.326466, 47.439853500000027 ], [ 7.380894, 47.431892499000014 ], [ 7.42113949899999, 47.446387999000024 ], [ 7.445019, 47.46172349699998 ], [ 7.510905499999978, 47.502582497999981 ], [ 7.5551595, 47.56456399699999 ], [ 7.589039, 47.589877999 ], [ 7.634097, 47.561113501000023 ] ] ] } }, -{ "type": "Feature", "id": 144, "properties": { "NUTS_ID": "CH04", "STAT_LEVL_": 2, "SHAPE_AREA": 0.180299367234, "SHAPE_LEN": 1.6657964434100001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.807784500000025, 47.220560001000024 ], [ 8.69248349899999, 47.163624998999978 ], [ 8.410716, 47.248037497999974 ], [ 8.426434500000028, 47.567548998 ], [ 8.562841, 47.599432498 ], [ 8.595602, 47.6055445 ], [ 8.606369500000028, 47.669005498999979 ], [ 8.663354, 47.685892498999976 ], [ 8.670461, 47.684862499000019 ], [ 8.943635500000028, 47.37583749800001 ], [ 8.807784500000025, 47.220560001000024 ] ] ] } }, -{ "type": "Feature", "id": 148, "properties": { "NUTS_ID": "AT33", "STAT_LEVL_": 2, "SHAPE_AREA": 1.46510258568, "SHAPE_LEN": 8.1757613579200008 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.6995915, 47.477885999000023 ], [ 12.114546500000017, 47.306444000999988 ], [ 12.136014, 47.0806675 ], [ 11.627199500000017, 47.013299 ], [ 11.164281500000016, 46.965722500000027 ], [ 11.02225, 46.765410498999984 ], [ 10.4696515, 46.854909 ], [ 10.389317999000014, 47.000524499999983 ], [ 10.144974499999989, 46.851009498999986 ], [ 10.212995, 47.157583999 ], [ 10.178353, 47.270113998999989 ], [ 10.454439, 47.55579699899999 ], [ 10.886199, 47.536847998999974 ], [ 10.991202499999986, 47.396131 ], [ 11.0165005, 47.396368000999985 ], [ 11.4214275, 47.44485199899998 ], [ 11.410219, 47.495324000999972 ], [ 11.632883, 47.592445997000027 ], [ 12.060662, 47.618743499 ], [ 12.338045498999975, 47.697087501 ], [ 12.575026499999979, 47.632316 ], [ 12.6995915, 47.477885999000023 ] ] ], [ [ [ 12.841158, 46.860979499 ], [ 12.690635, 46.656972000999986 ], [ 12.477924, 46.679835497999989 ], [ 12.143811, 46.913779998 ], [ 12.2407455, 47.069168499 ], [ 12.6568335, 47.099517497000022 ], [ 12.841158, 46.860979499 ] ] ] ] } }, -{ "type": "Feature", "id": 154, "properties": { "NUTS_ID": "AT34", "STAT_LEVL_": 2, "SHAPE_AREA": 0.31311207869000002, "SHAPE_LEN": 2.3857575307399999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.178353, 47.270113998999989 ], [ 10.212995, 47.157583999 ], [ 10.144974499999989, 46.851009498999986 ], [ 9.607078, 47.0607745 ], [ 9.620580500000017, 47.151645499999972 ], [ 9.530749, 47.270581000999982 ], [ 9.673370499999976, 47.38151050099998 ], [ 9.5587205, 47.541892999000027 ], [ 9.967813499999977, 47.546240496999985 ], [ 9.999526, 47.48301699699999 ], [ 10.178353, 47.270113998999989 ] ] ] } }, -{ "type": "Feature", "id": 159, "properties": { "NUTS_ID": "BE10", "STAT_LEVL_": 2, "SHAPE_AREA": 0.0030247151296100001, "SHAPE_LEN": 0.49368216231500001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.47678350000001, 50.8203775 ], [ 4.4804765, 50.794257999000024 ], [ 4.2455665, 50.817627 ], [ 4.47678350000001, 50.8203775 ] ] ] } }, -{ "type": "Feature", "id": 162, "properties": { "NUTS_ID": "BE21", "STAT_LEVL_": 2, "SHAPE_AREA": 0.37700252114799998, "SHAPE_LEN": 2.767202854 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.237716499999976, 51.261600499 ], [ 5.26107349900002, 51.146964998999977 ], [ 4.981574500000022, 51.034885498999984 ], [ 4.789319, 51.038928999 ], [ 4.528663, 50.992264498999987 ], [ 4.240999, 51.036868997 ], [ 4.175792, 51.101211501000023 ], [ 4.31116750000001, 51.126147999000011 ], [ 4.242049, 51.353966999000022 ], [ 4.24366950000001, 51.374729499000011 ], [ 4.279565, 51.376017497000021 ], [ 4.669544, 51.426383999 ], [ 4.759926, 51.50246449799999 ], [ 5.10218, 51.42900499699999 ], [ 5.237716499999976, 51.261600499 ] ] ] } }, -{ "type": "Feature", "id": 166, "properties": { "NUTS_ID": "BE22", "STAT_LEVL_": 2, "SHAPE_AREA": 0.307037454609, "SHAPE_LEN": 2.2568704305099998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5662835, 51.220836497999983 ], [ 5.798274, 51.059853498999985 ], [ 5.766149, 51.009235499999988 ], [ 5.758272498999986, 50.954795 ], [ 5.687622, 50.811923998999987 ], [ 5.431686500000012, 50.719803 ], [ 5.236892, 50.72714600099999 ], [ 5.1018525, 50.708652498999982 ], [ 4.981574500000022, 51.034885498999984 ], [ 5.26107349900002, 51.146964998999977 ], [ 5.237716499999976, 51.261600499 ], [ 5.5662835, 51.220836497999983 ] ] ] } }, -{ "type": "Feature", "id": 170, "properties": { "NUTS_ID": "BE23", "STAT_LEVL_": 2, "SHAPE_AREA": 0.37938240829699998, "SHAPE_LEN": 2.87947411747 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.240999, 51.036868997 ], [ 4.147153, 50.969398499000022 ], [ 3.895736499, 50.732944498999984 ], [ 3.815390499999978, 50.75072499700002 ], [ 3.775359499999979, 50.747729999 ], [ 3.5412725, 50.733700499 ], [ 3.459731, 50.765968500999975 ], [ 3.4667465, 50.902096500000027 ], [ 3.419824, 50.910934999 ], [ 3.331306, 51.098873 ], [ 3.41093, 51.159888997 ], [ 3.380661, 51.274299497000015 ], [ 3.8563395, 51.211056 ], [ 3.9776665, 51.225131998999984 ], [ 4.23481750000002, 51.348254 ], [ 4.242049, 51.353966999000022 ], [ 4.31116750000001, 51.126147999000011 ], [ 4.175792, 51.101211501000023 ], [ 4.240999, 51.036868997 ] ] ] } }, -{ "type": "Feature", "id": 177, "properties": { "NUTS_ID": "BE24", "STAT_LEVL_": 2, "SHAPE_AREA": 0.27373607525799998, "SHAPE_LEN": 3.2719621056600001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.981574500000022, 51.034885498999984 ], [ 5.1018525, 50.708652498999982 ], [ 5.019701, 50.750973000999977 ], [ 4.597269, 50.763534500999981 ], [ 4.100483, 50.70595549799998 ], [ 3.895736499, 50.732944498999984 ], [ 4.147153, 50.969398499000022 ], [ 4.240999, 51.036868997 ], [ 4.528663, 50.992264498999987 ], [ 4.789319, 51.038928999 ], [ 4.981574500000022, 51.034885498999984 ] ], [ [ 4.47678350000001, 50.8203775 ], [ 4.2455665, 50.817627 ], [ 4.4804765, 50.794257999000024 ], [ 4.47678350000001, 50.8203775 ] ] ] } }, -{ "type": "Feature", "id": 180, "properties": { "NUTS_ID": "BE25", "STAT_LEVL_": 2, "SHAPE_AREA": 0.38754984531999997, "SHAPE_LEN": 2.7805926238100001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0187085, 50.773532999 ], [ 2.945734077, 50.793946362999975 ], [ 2.842169, 50.751404 ], [ 2.863276, 50.708343496999987 ], [ 2.607036, 50.91268949900001 ], [ 2.546011, 51.089381998000022 ], [ 2.749051499000018, 51.161769999 ], [ 3.110688499999981, 51.312259501000028 ], [ 3.367216499999984, 51.368134499 ], [ 3.380661, 51.274299497000015 ], [ 3.41093, 51.159888997 ], [ 3.331306, 51.098873 ], [ 3.419824, 50.910934999 ], [ 3.4667465, 50.902096500000027 ], [ 3.459731, 50.765968500999975 ], [ 3.324118, 50.722308999 ], [ 3.176996, 50.756164497999976 ], [ 3.098481, 50.779019 ], [ 3.0187085, 50.773532999 ] ] ] } }, -{ "type": "Feature", "id": 189, "properties": { "NUTS_ID": "DE72", "STAT_LEVL_": 2, "SHAPE_AREA": 0.65308830405899998, "SHAPE_LEN": 3.9931268325699998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.479113, 50.440685497 ], [ 9.286735, 50.437298 ], [ 9.042425499999979, 50.49799 ], [ 8.577542, 50.415019 ], [ 8.5141395, 50.399351498999977 ], [ 8.467215, 50.415048499000022 ], [ 8.354557, 50.294229998999981 ], [ 8.1219135, 50.277224999 ], [ 7.971559500000012, 50.406220499000028 ], [ 8.151592, 50.599370998999973 ], [ 8.125776499999972, 50.685813998000015 ], [ 8.355495999000027, 50.862001 ], [ 8.477892, 50.96904749700002 ], [ 8.9746, 50.938304001 ], [ 9.1488685, 50.836645 ], [ 9.441055, 50.795644501000027 ], [ 9.611464500000011, 50.7354765 ], [ 9.466069, 50.660618 ], [ 9.479113, 50.440685497 ] ] ] } }, -{ "type": "Feature", "id": 195, "properties": { "NUTS_ID": "DE73", "STAT_LEVL_": 2, "SHAPE_AREA": 1.09544021487, "SHAPE_LEN": 6.0414718664000002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.928339, 51.375299 ], [ 10.206942, 51.190648996999983 ], [ 10.210013, 51.144082998999977 ], [ 10.202181, 51.012009001000024 ], [ 10.182348499999989, 50.99848750000001 ], [ 10.021558500000026, 50.9929495 ], [ 9.9261765, 50.767389998999988 ], [ 10.077555500000017, 50.63762399699999 ], [ 10.0413385, 50.516469498999982 ], [ 9.935655, 50.419606499999986 ], [ 9.7329145, 50.356149499000026 ], [ 9.479113, 50.440685497 ], [ 9.466069, 50.660618 ], [ 9.611464500000011, 50.7354765 ], [ 9.441055, 50.795644501000027 ], [ 9.1488685, 50.836645 ], [ 8.9746, 50.938304001 ], [ 8.477892, 50.96904749700002 ], [ 8.549084999, 51.101868001000014 ], [ 8.7582145, 51.177181499000028 ], [ 8.556348, 51.277495 ], [ 8.970653500000026, 51.5067735 ], [ 9.155410500000016, 51.442674999000019 ], [ 9.440457, 51.650393999000016 ], [ 9.685331, 51.582016499000019 ], [ 9.672377499999982, 51.568403999 ], [ 9.62582500100001, 51.580205 ], [ 9.647755500000017, 51.55251099899999 ], [ 9.557291, 51.35137849900002 ], [ 9.568025, 51.340001498999982 ], [ 9.710295479000024, 51.301537750000023 ], [ 9.928339, 51.375299 ] ] ] } }, -{ "type": "Feature", "id": 204, "properties": { "NUTS_ID": "DE80", "STAT_LEVL_": 2, "SHAPE_AREA": 3.21364124189, "SHAPE_LEN": 13.3120506311 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.926951499999973, 54.427963998999985 ], [ 12.363174500000014, 54.267097998999986 ], [ 13.017391718999988, 54.438720773999989 ], [ 13.109225, 54.27934049800001 ], [ 13.319396, 54.193505997999978 ], [ 13.344701499999985, 54.181111497000018 ], [ 13.742715499999974, 54.031386499 ], [ 13.819152499999973, 53.841944996999985 ], [ 14.267542, 53.697806496999988 ], [ 14.412157, 53.329635998000015 ], [ 13.710065499999985, 53.4790625 ], [ 13.2414035, 53.232401 ], [ 12.984683, 53.1649855 ], [ 12.3317515, 53.318011 ], [ 12.325101500000017, 53.321301498000025 ], [ 11.265732, 53.121978 ], [ 11.171861499999977, 53.15664399799999 ], [ 10.595047, 53.363927500999978 ], [ 10.951918499999977, 53.647622499000022 ], [ 10.76296450000001, 53.811153 ], [ 10.903661500999988, 53.956822000999978 ], [ 11.5617785, 54.028088497999988 ], [ 11.998484500000018, 54.174969998999984 ], [ 12.201068, 54.244695498999988 ], [ 12.2855305, 54.274951999 ], [ 12.520881067, 54.474234541999976 ], [ 12.926951499999973, 54.427963998999985 ] ] ], [ [ [ 13.391083499999979, 54.651317 ], [ 13.67934, 54.56278249799999 ], [ 13.6824535, 54.349581 ], [ 13.394217500000025, 54.222502500000019 ], [ 13.114586, 54.331907996999973 ], [ 13.2614835, 54.382916500000022 ], [ 13.270131, 54.480173498999989 ], [ 13.144181, 54.546965499 ], [ 13.391083499999979, 54.651317 ] ] ], [ [ [ 14.2130775, 53.866479498999979 ], [ 13.826150499999983, 53.849684997999987 ], [ 13.750745999, 54.14996050100001 ], [ 13.9720845, 54.06874749799999 ], [ 14.226302, 53.928652998000018 ], [ 14.2130775, 53.866479498999979 ] ] ] ] } }, -{ "type": "Feature", "id": 214, "properties": { "NUTS_ID": "DE91", "STAT_LEVL_": 2, "SHAPE_AREA": 1.0578506974, "SHAPE_LEN": 5.92335754471 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.759314500000016, 52.795830500000022 ], [ 11.0087815, 52.496747500000026 ], [ 10.93454250000002, 52.471794999 ], [ 11.086244, 52.22863399900001 ], [ 10.964414499999975, 52.056642997999973 ], [ 10.801428499999986, 52.0480005 ], [ 10.561227, 52.004065998999977 ], [ 10.701372, 51.642187499999977 ], [ 10.677283, 51.638376000999983 ], [ 10.488551, 51.574778498 ], [ 10.365365, 51.55589100100002 ], [ 9.928339, 51.375299 ], [ 9.710295479000024, 51.301537750000023 ], [ 9.568025, 51.340001498999982 ], [ 9.557291, 51.35137849900002 ], [ 9.647755500000017, 51.55251099899999 ], [ 9.62582500100001, 51.580205 ], [ 9.672377499999982, 51.568403999 ], [ 9.685331, 51.582016499000019 ], [ 9.440457, 51.650393999000016 ], [ 9.417317500000024, 51.647269499 ], [ 9.894248, 51.906155 ], [ 10.065526, 51.927359998999975 ], [ 10.204688499999975, 52.00699 ], [ 10.234005, 52.170195998999986 ], [ 10.257076499999982, 52.18327799799999 ], [ 10.0344675, 52.283765996999989 ], [ 10.2921475, 52.447884499 ], [ 10.273742500000026, 52.51064 ], [ 10.44441, 52.8157635 ], [ 10.759314500000016, 52.795830500000022 ] ] ] } }, -{ "type": "Feature", "id": 226, "properties": { "NUTS_ID": "DE92", "STAT_LEVL_": 2, "SHAPE_AREA": 1.22727347705, "SHAPE_LEN": 6.0421491792599999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.915827, 53.011021497 ], [ 9.115997, 52.896952499 ], [ 9.3256025, 52.767712500000016 ], [ 9.534658499999978, 52.660066498999981 ], [ 9.734624, 52.638302499000019 ], [ 10.273742500000026, 52.51064 ], [ 10.2921475, 52.447884499 ], [ 10.0344675, 52.283765996999989 ], [ 10.257076499999982, 52.18327799799999 ], [ 10.234005, 52.170195998999986 ], [ 10.204688499999975, 52.00699 ], [ 10.065526, 51.927359998999975 ], [ 9.894248, 51.906155 ], [ 9.417317500000024, 51.647269499 ], [ 9.459648500000014, 51.86279749800002 ], [ 9.323343500000021, 51.85506099700001 ], [ 9.308893, 51.922719501000017 ], [ 9.15560449899999, 52.09783 ], [ 8.985787500000015, 52.19457649899999 ], [ 9.125252499999988, 52.411993498000015 ], [ 8.703008999000019, 52.500437998 ], [ 8.2972135, 52.456497997999975 ], [ 8.308324, 52.499112 ], [ 8.459277499999985, 52.80105599699999 ], [ 8.657161, 53.008994498999982 ], [ 8.711424, 53.044629997000015 ], [ 8.915827, 53.011021497 ] ] ] } }, -{ "type": "Feature", "id": 234, "properties": { "NUTS_ID": "DE93", "STAT_LEVL_": 2, "SHAPE_AREA": 2.0533648604599999, "SHAPE_LEN": 7.8479412498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.614913999, 53.882118 ], [ 9.02991750000001, 53.825564997000015 ], [ 9.02242, 53.87951750000002 ], [ 9.199750999, 53.88010449799998 ], [ 9.48589, 53.707664497999986 ], [ 9.73010399899999, 53.557580997 ], [ 9.768861, 53.50527899799999 ], [ 10.308312, 53.433221498000023 ], [ 10.469184, 53.385844 ], [ 10.595047, 53.363927500999978 ], [ 11.171861499999977, 53.15664399799999 ], [ 11.265732, 53.121978 ], [ 11.597784499999989, 53.035926499000027 ], [ 11.505027, 52.941032499000016 ], [ 10.841556, 52.852205 ], [ 10.759314500000016, 52.795830500000022 ], [ 10.44441, 52.8157635 ], [ 10.273742500000026, 52.51064 ], [ 9.734624, 52.638302499000019 ], [ 9.534658499999978, 52.660066498999981 ], [ 9.3256025, 52.767712500000016 ], [ 9.115997, 52.896952499 ], [ 8.915827, 53.011021497 ], [ 8.979256, 53.045849499999974 ], [ 8.984185500000024, 53.126070998999978 ], [ 8.485330499999975, 53.22712 ], [ 8.499987498999985, 53.366847999000015 ], [ 8.492652, 53.472420000999989 ], [ 8.652134000999979, 53.516016998999987 ], [ 8.650632499999972, 53.602565001000016 ], [ 8.520410500000025, 53.606205000999978 ], [ 8.614913999, 53.882118 ] ] ] } }, -{ "type": "Feature", "id": 246, "properties": { "NUTS_ID": "DE94", "STAT_LEVL_": 2, "SHAPE_AREA": 1.9337703504699999, "SHAPE_LEN": 7.65724913679 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.554898499999979, 53.525131000999977 ], [ 8.492652, 53.472420000999989 ], [ 8.499987498999985, 53.366847999000015 ], [ 8.485330499999975, 53.22712 ], [ 8.6548985, 53.108864499999981 ], [ 8.711424, 53.044629997000015 ], [ 8.657161, 53.008994498999982 ], [ 8.459277499999985, 52.80105599699999 ], [ 8.308324, 52.499112 ], [ 8.2972135, 52.456497997999975 ], [ 8.4661865, 52.267614 ], [ 8.410586500000022, 52.115114996999978 ], [ 8.096448, 52.057145000999981 ], [ 7.885159, 52.0833025 ], [ 8.007796, 52.115332997999985 ], [ 7.956465, 52.2724905 ], [ 7.964625500000011, 52.32485850099999 ], [ 7.608038500000021, 52.474015999000017 ], [ 7.317481, 52.280271998999979 ], [ 7.099148999000022, 52.24305849699999 ], [ 7.065685, 52.241372999000021 ], [ 6.987941499999977, 52.469540999 ], [ 6.697865499999978, 52.486285998000028 ], [ 6.709732499999973, 52.627823498999987 ], [ 7.006229500000018, 52.63876299899999 ], [ 7.092692, 52.83820099899998 ], [ 7.202794499999982, 53.113281498999982 ], [ 7.208935, 53.243064498000024 ], [ 7.2643, 53.325526497999988 ], [ 6.999446499999976, 53.359887501 ], [ 7.24368149899999, 53.66778199700002 ], [ 7.550173, 53.675037499999974 ], [ 7.809895499999982, 53.707661998999981 ], [ 8.091291, 53.638109000999975 ], [ 8.061327, 53.505957001000013 ], [ 8.195555, 53.409171499000024 ], [ 8.329544, 53.614027 ], [ 8.554898499999979, 53.525131000999977 ] ] ] } }, -{ "type": "Feature", "id": 265, "properties": { "NUTS_ID": "DEA1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.68876948715099995, "SHAPE_LEN": 3.9723928364200001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.4077795, 51.828092001000016 ], [ 6.490212, 51.811377000999983 ], [ 6.91086150000001, 51.746098501 ], [ 6.902276, 51.635684501000014 ], [ 6.833152, 51.579647997999984 ], [ 6.928003, 51.497766999000021 ], [ 6.998652, 51.533700497999973 ], [ 7.010207, 51.532728498999973 ], [ 7.1042005, 51.481267498000022 ], [ 7.13603, 51.426038 ], [ 7.117675, 51.380272499 ], [ 7.167288, 51.3129025 ], [ 7.3066935, 51.238875499000017 ], [ 7.295806500000026, 51.205391999000028 ], [ 7.268179499999974, 51.145657500000027 ], [ 7.166349998999976, 51.153941 ], [ 6.997724, 51.11797599800002 ], [ 6.990593499999989, 51.091597998999987 ], [ 6.898045, 51.064885496999977 ], [ 6.853487500000028, 51.084256001000028 ], [ 6.773632500000019, 51.06439000099999 ], [ 6.480495499000028, 51.034178998000016 ], [ 6.45921099899999, 51.043073 ], [ 6.443993499999976, 51.089785498000026 ], [ 6.291978500000027, 51.175453 ], [ 6.174812, 51.1845135 ], [ 6.072657, 51.242587497999978 ], [ 6.224405, 51.364978999000016 ], [ 5.953192, 51.747845998 ], [ 6.167766, 51.900804499 ], [ 6.4077795, 51.828092001000016 ] ] ] } }, -{ "type": "Feature", "id": 281, "properties": { "NUTS_ID": "DEA2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.96075131005100001, "SHAPE_LEN": 4.9958062218199997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.785898, 50.939913999 ], [ 7.6610035, 50.820364500999972 ], [ 7.44077199899999, 50.711437998 ], [ 7.2123995, 50.623404999 ], [ 7.210872, 50.649543499 ], [ 7.1952005, 50.642722999 ], [ 6.927901, 50.558618500000023 ], [ 6.800711499999977, 50.361781499000017 ], [ 6.425295, 50.323011998000027 ], [ 6.405028500000014, 50.323308499 ], [ 6.315556, 50.497042498999974 ], [ 6.206287499999974, 50.521302000999981 ], [ 6.192200499000023, 50.521055499 ], [ 6.189312500000028, 50.56609400100001 ], [ 6.26861550000001, 50.625981 ], [ 6.020998999000028, 50.754295500000012 ], [ 6.0869475, 50.913134999000022 ], [ 5.877084998999976, 51.032101 ], [ 6.174812, 51.1845135 ], [ 6.291978500000027, 51.175453 ], [ 6.443993499999976, 51.089785498000026 ], [ 6.45921099899999, 51.043073 ], [ 6.480495499000028, 51.034178998000016 ], [ 6.773632500000019, 51.06439000099999 ], [ 6.853487500000028, 51.084256001000028 ], [ 6.898045, 51.064885496999977 ], [ 6.990593499999989, 51.091597998999987 ], [ 6.997724, 51.11797599800002 ], [ 7.166349998999976, 51.153941 ], [ 7.268179499999974, 51.145657500000027 ], [ 7.295806500000026, 51.205391999000028 ], [ 7.3066935, 51.238875499000017 ], [ 7.433343, 51.21440899800001 ], [ 7.716120499999988, 51.07290849899999 ], [ 7.785898, 50.939913999 ] ] ] } }, -{ "type": "Feature", "id": 293, "properties": { "NUTS_ID": "DEA3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.92687933506999998, "SHAPE_LEN": 5.3053689456299997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.096448, 52.057145000999981 ], [ 8.320136, 51.72570500099999 ], [ 7.9445275, 51.700582 ], [ 7.735787999000024, 51.737370499 ], [ 7.7018895, 51.712378999 ], [ 7.40955, 51.664580996999973 ], [ 7.417934, 51.599519997000016 ], [ 7.314282, 51.522423 ], [ 7.293587, 51.532262498000023 ], [ 7.145057, 51.55224049899999 ], [ 7.139561500000013, 51.50615749799999 ], [ 7.1042005, 51.481267498000022 ], [ 7.010207, 51.532728498999973 ], [ 6.998652, 51.533700497999973 ], [ 6.928003, 51.497766999000021 ], [ 6.833152, 51.579647997999984 ], [ 6.902276, 51.635684501000014 ], [ 6.91086150000001, 51.746098501 ], [ 6.490212, 51.811377000999983 ], [ 6.4077795, 51.828092001000016 ], [ 6.828513, 51.9640665 ], [ 6.760465, 52.118569499999978 ], [ 7.065685, 52.241372999000021 ], [ 7.099148999000022, 52.24305849699999 ], [ 7.317481, 52.280271998999979 ], [ 7.608038500000021, 52.474015999000017 ], [ 7.964625500000011, 52.32485850099999 ], [ 7.956465, 52.2724905 ], [ 8.007796, 52.115332997999985 ], [ 7.885159, 52.0833025 ], [ 8.096448, 52.057145000999981 ] ] ] } }, -{ "type": "Feature", "id": 302, "properties": { "NUTS_ID": "DEA4", "STAT_LEVL_": 2, "SHAPE_AREA": 0.86286312741100002, "SHAPE_LEN": 4.6156559722599999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.417317500000024, 51.647269499 ], [ 9.440457, 51.650393999000016 ], [ 9.155410500000016, 51.442674999000019 ], [ 8.970653500000026, 51.5067735 ], [ 8.905395, 51.531496499000014 ], [ 8.547931, 51.4678125 ], [ 8.472658, 51.563380499 ], [ 8.573228500000027, 51.660557 ], [ 8.403108, 51.719355001 ], [ 8.320136, 51.72570500099999 ], [ 8.096448, 52.057145000999981 ], [ 8.410586500000022, 52.115114996999978 ], [ 8.4661865, 52.267614 ], [ 8.2972135, 52.456497997999975 ], [ 8.703008999000019, 52.500437998 ], [ 9.125252499999988, 52.411993498000015 ], [ 8.985787500000015, 52.19457649899999 ], [ 9.15560449899999, 52.09783 ], [ 9.308893, 51.922719501000017 ], [ 9.323343500000021, 51.85506099700001 ], [ 9.459648500000014, 51.86279749800002 ], [ 9.417317500000024, 51.647269499 ] ] ] } }, -{ "type": "Feature", "id": 310, "properties": { "NUTS_ID": "DEA5", "STAT_LEVL_": 2, "SHAPE_AREA": 1.02346751393, "SHAPE_LEN": 5.2654460606300004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.320136, 51.72570500099999 ], [ 8.403108, 51.719355001 ], [ 8.573228500000027, 51.660557 ], [ 8.472658, 51.563380499 ], [ 8.547931, 51.4678125 ], [ 8.905395, 51.531496499000014 ], [ 8.970653500000026, 51.5067735 ], [ 8.556348, 51.277495 ], [ 8.7582145, 51.177181499000028 ], [ 8.549084999, 51.101868001000014 ], [ 8.477892, 50.96904749700002 ], [ 8.355495999000027, 50.862001 ], [ 8.125776499999972, 50.685813998000015 ], [ 8.03969, 50.697375498999975 ], [ 7.851496, 50.925832500000013 ], [ 7.785898, 50.939913999 ], [ 7.716120499999988, 51.07290849899999 ], [ 7.433343, 51.21440899800001 ], [ 7.3066935, 51.238875499000017 ], [ 7.167288, 51.3129025 ], [ 7.117675, 51.380272499 ], [ 7.13603, 51.426038 ], [ 7.1042005, 51.481267498000022 ], [ 7.139561500000013, 51.50615749799999 ], [ 7.145057, 51.55224049899999 ], [ 7.293587, 51.532262498000023 ], [ 7.314282, 51.522423 ], [ 7.417934, 51.599519997000016 ], [ 7.40955, 51.664580996999973 ], [ 7.7018895, 51.712378999 ], [ 7.735787999000024, 51.737370499 ], [ 7.9445275, 51.700582 ], [ 8.320136, 51.72570500099999 ] ] ] } }, -{ "type": "Feature", "id": 317, "properties": { "NUTS_ID": "CH05", "STAT_LEVL_": 2, "SHAPE_AREA": 1.3530993073799999, "SHAPE_LEN": 7.2415582557000002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.7279815, 47.692680499 ], [ 8.795708499999989, 47.675595499999986 ], [ 8.843022, 47.712262499000019 ], [ 8.8749985, 47.65597349799998 ], [ 9.182192, 47.655890499 ], [ 9.495604, 47.551454998999986 ], [ 9.5587205, 47.541892999000027 ], [ 9.673370499999976, 47.38151050099998 ], [ 9.530749, 47.270581000999982 ], [ 9.4760475, 47.051797498999974 ], [ 9.607078, 47.0607745 ], [ 10.144974499999989, 46.851009498999986 ], [ 10.389317999000014, 47.000524499999983 ], [ 10.4696515, 46.854909 ], [ 10.452801, 46.530682999000021 ], [ 10.2448745, 46.622091997999974 ], [ 9.714149500000019, 46.292708499000014 ], [ 9.248531500000013, 46.233768000999987 ], [ 9.1593775, 46.169601 ], [ 9.0428035, 46.588800497000022 ], [ 8.678729, 46.57918949899999 ], [ 8.877168499999982, 46.813123499000028 ], [ 8.935079, 46.920207999000013 ], [ 9.004565500000012, 47.173145499999976 ], [ 8.807784500000025, 47.220560001000024 ], [ 8.943635500000028, 47.37583749800001 ], [ 8.670461, 47.684862499000019 ], [ 8.663354, 47.685892498999976 ], [ 8.606369500000028, 47.669005498999979 ], [ 8.510115, 47.776190499999984 ], [ 8.61233, 47.801462 ], [ 8.740104499999973, 47.752789001 ], [ 8.7279815, 47.692680499 ] ] ] } }, -{ "type": "Feature", "id": 325, "properties": { "NUTS_ID": "CH06", "STAT_LEVL_": 2, "SHAPE_AREA": 0.49563412526700001, "SHAPE_LEN": 3.5104742205799999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.807784500000025, 47.220560001000024 ], [ 9.004565500000012, 47.173145499999976 ], [ 8.935079, 46.920207999000013 ], [ 8.877168499999982, 46.813123499000028 ], [ 8.678729, 46.57918949899999 ], [ 8.4776735, 46.527602499000011 ], [ 8.4104115, 46.653020498999979 ], [ 8.4489595, 46.764517001 ], [ 8.395225, 46.771538 ], [ 8.368889498999977, 46.787975500000016 ], [ 8.049088, 46.788008 ], [ 7.857267001000025, 46.87143149799999 ], [ 7.956177501000013, 47.003421499000012 ], [ 7.838686, 47.234413999000026 ], [ 8.4121295, 47.140737498000021 ], [ 8.410716, 47.248037497999974 ], [ 8.69248349899999, 47.163624998999978 ], [ 8.807784500000025, 47.220560001000024 ] ] ] } }, -{ "type": "Feature", "id": 332, "properties": { "NUTS_ID": "CH07", "STAT_LEVL_": 2, "SHAPE_AREA": 0.335715387872, "SHAPE_LEN": 2.518628239 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.1593775, 46.169601 ], [ 8.988276499999984, 45.972282498000027 ], [ 9.088803499999983, 45.896897001000013 ], [ 8.912147, 45.830444999 ], [ 8.713936, 46.097271998999986 ], [ 8.384717, 46.452158499 ], [ 8.4776735, 46.527602499000011 ], [ 8.678729, 46.57918949899999 ], [ 9.0428035, 46.588800497000022 ], [ 9.1593775, 46.169601 ] ] ] } }, -{ "type": "Feature", "id": 336, "properties": { "NUTS_ID": "DE11", "STAT_LEVL_": 2, "SHAPE_AREA": 1.3113121758799999, "SHAPE_LEN": 5.83435618622 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.083623, 49.542955499000016 ], [ 10.118327500000021, 49.47316949899999 ], [ 10.1119665, 49.384910499 ], [ 10.256763499999977, 49.059495 ], [ 10.4098495, 48.977435499000023 ], [ 10.423689, 48.744495997 ], [ 10.487258, 48.69666200099999 ], [ 10.278268, 48.516074499000013 ], [ 10.230779499999983, 48.510511 ], [ 9.9440715, 48.631755499 ], [ 9.5851745, 48.536741499000016 ], [ 9.582475499999987, 48.539146999000025 ], [ 9.1512295, 48.60405549799998 ], [ 9.129176500000028, 48.601266499000019 ], [ 8.768902500000024, 48.521840999 ], [ 8.804181500000027, 48.777778 ], [ 8.928800500000023, 48.866557 ], [ 8.945315, 48.961766 ], [ 8.876031499000021, 49.03517 ], [ 8.8777945, 49.058478501000025 ], [ 8.818233, 49.194497 ], [ 9.0491265, 49.292862500000012 ], [ 9.4434915, 49.364336998 ], [ 9.603823, 49.426577996999981 ], [ 9.41092, 49.663507998999989 ], [ 9.295673, 49.740530998999986 ], [ 9.471497499, 49.779726501000027 ], [ 9.648736, 49.791477499999985 ], [ 9.926560999, 49.48483550100002 ], [ 10.083623, 49.542955499000016 ] ] ] } }, -{ "type": "Feature", "id": 350, "properties": { "NUTS_ID": "DE12", "STAT_LEVL_": 2, "SHAPE_AREA": 0.82859941612499999, "SHAPE_LEN": 5.3104267818800004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.768902500000024, 48.521840999 ], [ 8.755710500000021, 48.504140001 ], [ 8.774055, 48.416278498999986 ], [ 8.737186499000018, 48.377976999 ], [ 8.303992, 48.34909449700001 ], [ 8.222007, 48.603227499000013 ], [ 7.9596305, 48.718580998999983 ], [ 8.232632998999975, 48.966571500999976 ], [ 8.261284, 48.980916998999987 ], [ 8.277349, 48.989939000999982 ], [ 8.33997, 49.080149999000014 ], [ 8.4130725, 49.249816499000019 ], [ 8.466985500000021, 49.28297550100001 ], [ 8.487268, 49.290026499000021 ], [ 8.4709155, 49.340712999 ], [ 8.497316, 49.411347 ], [ 8.474739704, 49.440616029000012 ], [ 8.423068, 49.541821 ], [ 8.422700500000019, 49.57419249899999 ], [ 8.4224395, 49.583385498999974 ], [ 8.581375, 49.519780498999978 ], [ 8.899572499999977, 49.50365549899999 ], [ 8.899355, 49.48455 ], [ 8.950348500000018, 49.454992999000012 ], [ 8.93188, 49.470636996999986 ], [ 9.083426499999973, 49.52608699699999 ], [ 9.103006, 49.577456 ], [ 9.41092, 49.663507998999989 ], [ 9.603823, 49.426577996999981 ], [ 9.4434915, 49.364336998 ], [ 9.0491265, 49.292862500000012 ], [ 8.818233, 49.194497 ], [ 8.8777945, 49.058478501000025 ], [ 8.876031499000021, 49.03517 ], [ 8.945315, 48.961766 ], [ 8.928800500000023, 48.866557 ], [ 8.804181500000027, 48.777778 ], [ 8.768902500000024, 48.521840999 ] ] ] } }, -{ "type": "Feature", "id": 363, "properties": { "NUTS_ID": "DE13", "STAT_LEVL_": 2, "SHAPE_AREA": 1.14162403029, "SHAPE_LEN": 5.4041756987799996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.737186499000018, 48.377976999 ], [ 8.751237, 48.159539998000014 ], [ 8.953761, 48.107278999000016 ], [ 9.012045, 47.936922998 ], [ 9.151105, 47.894982997999989 ], [ 9.128582, 47.846817499 ], [ 9.030533, 47.806520499999976 ], [ 9.182192, 47.655890499 ], [ 8.8749985, 47.65597349799998 ], [ 8.843022, 47.712262499000019 ], [ 8.795708499999989, 47.675595499999986 ], [ 8.7279815, 47.692680499 ], [ 8.740104499999973, 47.752789001 ], [ 8.61233, 47.801462 ], [ 8.510115, 47.776190499999984 ], [ 8.606369500000028, 47.669005498999979 ], [ 8.595602, 47.6055445 ], [ 8.562841, 47.599432498 ], [ 8.426434500000028, 47.567548998 ], [ 7.894107500000018, 47.586374998999986 ], [ 7.713784499999974, 47.539405 ], [ 7.634097, 47.561113501000023 ], [ 7.589039, 47.589877999 ], [ 7.545990500000016, 47.743573998999977 ], [ 7.577291, 48.115654999000014 ], [ 7.5779195, 48.121391999000025 ], [ 7.680713, 48.257266996999988 ], [ 7.9596305, 48.718580998999983 ], [ 8.222007, 48.603227499000013 ], [ 8.303992, 48.34909449700001 ], [ 8.737186499000018, 48.377976999 ] ] ] } }, -{ "type": "Feature", "id": 374, "properties": { "NUTS_ID": "DE14", "STAT_LEVL_": 2, "SHAPE_AREA": 1.1399528934000001, "SHAPE_LEN": 4.8332542055700003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.230779499999983, 48.510511 ], [ 10.1338955, 48.454871498999978 ], [ 10.0326945, 48.45719649900002 ], [ 9.997606, 48.35011799900002 ], [ 10.095357499999977, 48.164014999000017 ], [ 10.136457, 48.108459498 ], [ 10.135728, 48.02376149700001 ], [ 10.132387, 48.01539999900001 ], [ 10.11495450000001, 47.976257501000021 ], [ 10.104207, 47.974358497000026 ], [ 10.11013650000001, 47.937149998999985 ], [ 10.131928500000015, 47.820087496999975 ], [ 10.0772925, 47.63927449800002 ], [ 9.692543, 47.610768999000015 ], [ 9.5587205, 47.541892999000027 ], [ 9.495604, 47.551454998999986 ], [ 9.182192, 47.655890499 ], [ 9.030533, 47.806520499999976 ], [ 9.128582, 47.846817499 ], [ 9.151105, 47.894982997999989 ], [ 9.012045, 47.936922998 ], [ 8.953761, 48.107278999000016 ], [ 8.751237, 48.159539998000014 ], [ 8.737186499000018, 48.377976999 ], [ 8.774055, 48.416278498999986 ], [ 8.755710500000021, 48.504140001 ], [ 8.768902500000024, 48.521840999 ], [ 9.129176500000028, 48.601266499000019 ], [ 9.1512295, 48.60405549799998 ], [ 9.582475499999987, 48.539146999000025 ], [ 9.5851745, 48.536741499000016 ], [ 9.9440715, 48.631755499 ], [ 10.230779499999983, 48.510511 ] ] ] } }, -{ "type": "Feature", "id": 385, "properties": { "NUTS_ID": "DE21", "STAT_LEVL_": 2, "SHAPE_AREA": 2.0590871815199998, "SHAPE_LEN": 7.8935604995900004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.599306500000012, 48.951496999000028 ], [ 11.719435, 48.782345498999973 ], [ 11.706735, 48.6166465 ], [ 11.9101865, 48.58523150000002 ], [ 12.017122500000028, 48.430675999000016 ], [ 12.250551, 48.32194599799999 ], [ 12.483791, 48.429675498999984 ], [ 12.607291499999974, 48.353632 ], [ 12.9446845, 48.206692498999985 ], [ 12.751555, 48.112810497999988 ], [ 12.86018150000001, 47.996639999000024 ], [ 12.8757855, 47.962608999 ], [ 13.046055500000023, 47.520502498999974 ], [ 12.695795499999974, 47.682222998999976 ], [ 12.575026499999979, 47.632316 ], [ 12.338045498999975, 47.697087501 ], [ 12.060662, 47.618743499 ], [ 11.632883, 47.592445997000027 ], [ 11.410219, 47.495324000999972 ], [ 11.4214275, 47.44485199899998 ], [ 11.0165005, 47.396368000999985 ], [ 10.991202499999986, 47.396131 ], [ 10.886199, 47.536847998999974 ], [ 10.9542765, 47.616520498999989 ], [ 10.7158885, 47.705480497 ], [ 10.7670905, 47.843793499000014 ], [ 10.801532, 48.1041705 ], [ 10.903411, 48.236676500999977 ], [ 11.03451, 48.19299200099999 ], [ 11.116768499999978, 48.268477999000027 ], [ 11.311675, 48.452272999 ], [ 11.295411, 48.474574 ], [ 11.022986, 48.620171497 ], [ 11.0059415, 48.821882997999978 ], [ 10.936839500000019, 48.863275999 ], [ 11.201364500000011, 49.046551498999975 ], [ 11.385714, 49.078858001000015 ], [ 11.599306500000012, 48.951496999000028 ] ] ] } }, -{ "type": "Feature", "id": 409, "properties": { "NUTS_ID": "DE22", "STAT_LEVL_": 2, "SHAPE_AREA": 1.2654688598199999, "SHAPE_LEN": 5.7168732305300001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.839507, 48.771605001000012 ], [ 13.796107, 48.71360049899999 ], [ 13.727090499999974, 48.513019500999974 ], [ 13.51336950000001, 48.590977998000028 ], [ 13.438430499999981, 48.548895001 ], [ 13.407838, 48.372160501 ], [ 13.177043, 48.294389997 ], [ 12.9446845, 48.206692498999985 ], [ 12.607291499999974, 48.353632 ], [ 12.483791, 48.429675498999984 ], [ 12.250551, 48.32194599799999 ], [ 12.017122500000028, 48.430675999000016 ], [ 11.9101865, 48.58523150000002 ], [ 11.706735, 48.6166465 ], [ 11.719435, 48.782345498999973 ], [ 11.599306500000012, 48.951496999000028 ], [ 11.659785, 49.016129499999977 ], [ 12.0654265, 48.9436955 ], [ 12.097496, 48.771991997999976 ], [ 12.135276, 48.765911999000025 ], [ 12.479026499999975, 49.031985999000028 ], [ 12.768203, 49.114760999 ], [ 13.170907999, 49.173579501 ], [ 13.4166515, 48.980035499 ], [ 13.5515785, 48.967787497000018 ], [ 13.839507, 48.771605001000012 ] ] ] } }, -{ "type": "Feature", "id": 422, "properties": { "NUTS_ID": "DE23", "STAT_LEVL_": 2, "SHAPE_AREA": 1.1827867994200001, "SHAPE_LEN": 5.3448464610800004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.550988500000017, 49.905088001000024 ], [ 12.401524, 49.758372998000027 ], [ 12.593778499999985, 49.542191499000012 ], [ 12.633763499999986, 49.476194997999983 ], [ 13.170907999, 49.173579501 ], [ 12.768203, 49.114760999 ], [ 12.479026499999975, 49.031985999000028 ], [ 12.135276, 48.765911999000025 ], [ 12.097496, 48.771991997999976 ], [ 12.0654265, 48.9436955 ], [ 11.659785, 49.016129499999977 ], [ 11.599306500000012, 48.951496999000028 ], [ 11.385714, 49.078858001000015 ], [ 11.247176, 49.325353 ], [ 11.557755, 49.41904200099998 ], [ 11.562709117999987, 49.67727206 ], [ 11.630662500000028, 49.760570998999981 ], [ 11.854835499999979, 49.84710899800001 ], [ 11.903691499999979, 49.979020000999981 ], [ 12.260799, 50.058156498000017 ], [ 12.550988500000017, 49.905088001000024 ] ] ] } }, -{ "type": "Feature", "id": 433, "properties": { "NUTS_ID": "DE24", "STAT_LEVL_": 2, "SHAPE_AREA": 0.90930336784200005, "SHAPE_LEN": 4.9365096046600003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.919884500000023, 50.42440349899999 ], [ 12.100900500000023, 50.31802799799999 ], [ 12.160679, 50.219848997999975 ], [ 12.260799, 50.058156498000017 ], [ 11.903691499999979, 49.979020000999981 ], [ 11.854835499999979, 49.84710899800001 ], [ 11.630662500000028, 49.760570998999981 ], [ 11.562709117999987, 49.67727206 ], [ 11.368694, 49.666708001000018 ], [ 11.2803045, 49.60430150000002 ], [ 10.927335500000027, 49.76843 ], [ 10.654417500000022, 49.721123498999987 ], [ 10.551436, 49.755772499999978 ], [ 10.448965, 49.822177001 ], [ 10.5052485, 49.876681999000027 ], [ 10.8601165, 50.091785496999989 ], [ 10.729202, 50.230005496999979 ], [ 10.8514945, 50.262762499000019 ], [ 10.715266499999984, 50.363590998 ], [ 10.9457185, 50.38646649899999 ], [ 11.189943, 50.27118550099999 ], [ 11.265938, 50.479421 ], [ 11.481568, 50.431621501 ], [ 11.603290500000014, 50.398766001000013 ], [ 11.919884500000023, 50.42440349899999 ] ] ] } }, -{ "type": "Feature", "id": 447, "properties": { "NUTS_ID": "DE25", "STAT_LEVL_": 2, "SHAPE_AREA": 0.90594263433800004, "SHAPE_LEN": 4.2599111684900004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.562709117999987, 49.67727206 ], [ 11.557755, 49.41904200099998 ], [ 11.247176, 49.325353 ], [ 11.385714, 49.078858001000015 ], [ 11.201364500000011, 49.046551498999975 ], [ 10.936839500000019, 48.863275999 ], [ 10.642254499999979, 49.016631501 ], [ 10.4098495, 48.977435499000023 ], [ 10.256763499999977, 49.059495 ], [ 10.1119665, 49.384910499 ], [ 10.118327500000021, 49.47316949899999 ], [ 10.083623, 49.542955499000016 ], [ 10.110316, 49.621408499999973 ], [ 10.551436, 49.755772499999978 ], [ 10.654417500000022, 49.721123498999987 ], [ 10.927335500000027, 49.76843 ], [ 11.2803045, 49.60430150000002 ], [ 11.368694, 49.666708001000018 ], [ 11.562709117999987, 49.67727206 ] ] ] } }, -{ "type": "Feature", "id": 460, "properties": { "NUTS_ID": "DE26", "STAT_LEVL_": 2, "SHAPE_AREA": 1.0008507063300001, "SHAPE_LEN": 5.28637072147 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.729202, 50.230005496999979 ], [ 10.8601165, 50.091785496999989 ], [ 10.5052485, 49.876681999000027 ], [ 10.448965, 49.822177001 ], [ 10.551436, 49.755772499999978 ], [ 10.110316, 49.621408499999973 ], [ 10.083623, 49.542955499000016 ], [ 9.926560999, 49.48483550100002 ], [ 9.648736, 49.791477499999985 ], [ 9.471497499, 49.779726501000027 ], [ 9.295673, 49.740530998999986 ], [ 9.41092, 49.663507998999989 ], [ 9.103006, 49.577456 ], [ 9.150809, 49.742850497 ], [ 9.036080500000025, 49.846503998 ], [ 9.05008, 49.866315000999975 ], [ 9.016088500000023, 49.991340501000025 ], [ 8.990559999000027, 50.06711900099998 ], [ 9.404984500000012, 50.087734497999975 ], [ 9.623150999000018, 50.229039998000019 ], [ 9.7329145, 50.356149499000026 ], [ 9.935655, 50.419606499999986 ], [ 10.0413385, 50.516469498999982 ], [ 10.450532, 50.4018595 ], [ 10.610115, 50.227994998999975 ], [ 10.729202, 50.230005496999979 ] ] ] } }, -{ "type": "Feature", "id": 473, "properties": { "NUTS_ID": "DE27", "STAT_LEVL_": 2, "SHAPE_AREA": 1.18950209015, "SHAPE_LEN": 6.5001649074900003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.936839500000019, 48.863275999 ], [ 11.0059415, 48.821882997999978 ], [ 11.022986, 48.620171497 ], [ 11.295411, 48.474574 ], [ 11.311675, 48.452272999 ], [ 11.116768499999978, 48.268477999000027 ], [ 11.03451, 48.19299200099999 ], [ 10.903411, 48.236676500999977 ], [ 10.801532, 48.1041705 ], [ 10.7670905, 47.843793499000014 ], [ 10.7158885, 47.705480497 ], [ 10.9542765, 47.616520498999989 ], [ 10.886199, 47.536847998999974 ], [ 10.454439, 47.55579699899999 ], [ 10.178353, 47.270113998999989 ], [ 9.999526, 47.48301699699999 ], [ 9.967813499999977, 47.546240496999985 ], [ 9.5587205, 47.541892999000027 ], [ 9.692543, 47.610768999000015 ], [ 10.0772925, 47.63927449800002 ], [ 10.131928500000015, 47.820087496999975 ], [ 10.11013650000001, 47.937149998999985 ], [ 10.104207, 47.974358497000026 ], [ 10.11495450000001, 47.976257501000021 ], [ 10.132387, 48.01539999900001 ], [ 10.135728, 48.02376149700001 ], [ 10.136457, 48.108459498 ], [ 10.095357499999977, 48.164014999000017 ], [ 9.997606, 48.35011799900002 ], [ 10.0326945, 48.45719649900002 ], [ 10.1338955, 48.454871498999978 ], [ 10.230779499999983, 48.510511 ], [ 10.278268, 48.516074499000013 ], [ 10.487258, 48.69666200099999 ], [ 10.423689, 48.744495997 ], [ 10.4098495, 48.977435499000023 ], [ 10.642254499999979, 49.016631501 ], [ 10.936839500000019, 48.863275999 ] ] ] } }, -{ "type": "Feature", "id": 489, "properties": { "NUTS_ID": "DE30", "STAT_LEVL_": 2, "SHAPE_AREA": 0.110168847705, "SHAPE_LEN": 1.4095856494600001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.66698, 52.474166998999976 ], [ 13.699738, 52.377882998000018 ], [ 13.420984998999984, 52.376247001000024 ], [ 13.31212, 52.399599500000022 ], [ 13.165898, 52.394275498000013 ], [ 13.153695500000026, 52.50182150099999 ], [ 13.164263, 52.598900500000013 ], [ 13.39854, 52.648194498 ], [ 13.610827500000028, 52.544235500000013 ], [ 13.66698, 52.474166998999976 ] ] ] } }, -{ "type": "Feature", "id": 492, "properties": { "NUTS_ID": "DE40", "STAT_LEVL_": 2, "SHAPE_AREA": 3.87565509606, "SHAPE_LEN": 11.671553189899999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.412157, 53.329635998000015 ], [ 14.143658, 52.9613685 ], [ 14.156692, 52.895590998999978 ], [ 14.436438, 52.679900498999984 ], [ 14.565063, 52.624497 ], [ 14.534361999, 52.395008 ], [ 14.600891499999989, 52.272051998999984 ], [ 14.755227, 52.070024998 ], [ 14.716716, 52.001188001 ], [ 14.729862, 51.581776999 ], [ 14.447771, 51.542068997 ], [ 14.163324499999987, 51.541042999000013 ], [ 13.835313, 51.37678999799999 ], [ 13.691250500000024, 51.374012999 ], [ 13.21015, 51.404735999000025 ], [ 13.051025, 51.647677 ], [ 13.1509135, 51.859610499999974 ], [ 12.769780500000024, 51.979274499999974 ], [ 12.3761225, 52.04511949800002 ], [ 12.276724499000011, 52.104018 ], [ 12.31718, 52.454095499 ], [ 12.171555, 52.506336497 ], [ 12.249203500000021, 52.79186199899999 ], [ 12.126811499999974, 52.890199499 ], [ 11.597784499999989, 53.035926499000027 ], [ 11.265732, 53.121978 ], [ 12.325101500000017, 53.321301498000025 ], [ 12.3317515, 53.318011 ], [ 12.984683, 53.1649855 ], [ 13.2414035, 53.232401 ], [ 13.710065499999985, 53.4790625 ], [ 14.412157, 53.329635998000015 ] ], [ [ 13.66698, 52.474166998999976 ], [ 13.610827500000028, 52.544235500000013 ], [ 13.39854, 52.648194498 ], [ 13.164263, 52.598900500000013 ], [ 13.153695500000026, 52.50182150099999 ], [ 13.165898, 52.394275498000013 ], [ 13.31212, 52.399599500000022 ], [ 13.420984998999984, 52.376247001000024 ], [ 13.699738, 52.377882998000018 ], [ 13.66698, 52.474166998999976 ] ] ] } }, -{ "type": "Feature", "id": 512, "properties": { "NUTS_ID": "DE50", "STAT_LEVL_": 2, "SHAPE_AREA": 0.061226229512700001, "SHAPE_LEN": 1.76656281046 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.979256, 53.045849499999974 ], [ 8.915827, 53.011021497 ], [ 8.711424, 53.044629997000015 ], [ 8.6548985, 53.108864499999981 ], [ 8.485330499999975, 53.22712 ], [ 8.984185500000024, 53.126070998999978 ], [ 8.979256, 53.045849499999974 ] ] ], [ [ [ 8.652134000999979, 53.516016998999987 ], [ 8.492652, 53.472420000999989 ], [ 8.554898499999979, 53.525131000999977 ], [ 8.4832025, 53.600498997999978 ], [ 8.520410500000025, 53.606205000999978 ], [ 8.650632499999972, 53.602565001000016 ], [ 8.652134000999979, 53.516016998999987 ] ] ] ] } }, -{ "type": "Feature", "id": 516, "properties": { "NUTS_ID": "DE60", "STAT_LEVL_": 2, "SHAPE_AREA": 0.075484323706799999, "SHAPE_LEN": 1.3487076921500001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.308312, 53.433221498000023 ], [ 9.768861, 53.50527899799999 ], [ 9.73010399899999, 53.557580997 ], [ 9.945376, 53.652927998 ], [ 10.072805, 53.709633999 ], [ 10.236678499999982, 53.496354498000017 ], [ 10.308312, 53.433221498000023 ] ] ] } }, -{ "type": "Feature", "id": 519, "properties": { "NUTS_ID": "DE71", "STAT_LEVL_": 2, "SHAPE_AREA": 0.93587288873800001, "SHAPE_LEN": 5.3066030288799997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.479113, 50.440685497 ], [ 9.7329145, 50.356149499000026 ], [ 9.623150999000018, 50.229039998000019 ], [ 9.404984500000012, 50.087734497999975 ], [ 8.990559999000027, 50.06711900099998 ], [ 9.016088500000023, 49.991340501000025 ], [ 9.05008, 49.866315000999975 ], [ 9.036080500000025, 49.846503998 ], [ 9.150809, 49.742850497 ], [ 9.103006, 49.577456 ], [ 9.083426499999973, 49.52608699699999 ], [ 8.93188, 49.470636996999986 ], [ 8.950348500000018, 49.454992999000012 ], [ 8.899355, 49.48455 ], [ 8.899572499999977, 49.50365549899999 ], [ 8.581375, 49.519780498999978 ], [ 8.4224395, 49.583385498999974 ], [ 8.414774, 49.595051997999974 ], [ 8.44637749899999, 49.730799497000021 ], [ 8.448365, 49.73366149899999 ], [ 8.400055, 49.803675 ], [ 8.3430305, 49.940506 ], [ 8.288245, 49.995134 ], [ 8.190038500000014, 50.03529599699999 ], [ 8.17513550000001, 50.034255497 ], [ 7.773997, 50.066539998999986 ], [ 8.1219135, 50.277224999 ], [ 8.354557, 50.294229998999981 ], [ 8.467215, 50.415048499000022 ], [ 8.5141395, 50.399351498999977 ], [ 8.577542, 50.415019 ], [ 9.042425499999979, 50.49799 ], [ 9.286735, 50.437298 ], [ 9.479113, 50.440685497 ] ] ] } }, -{ "type": "Feature", "id": 541, "properties": { "NUTS_ID": "DEB1", "STAT_LEVL_": 2, "SHAPE_AREA": 1.0296407972, "SHAPE_LEN": 5.24826140387 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.125776499999972, 50.685813998000015 ], [ 8.151592, 50.599370998999973 ], [ 7.971559500000012, 50.406220499000028 ], [ 8.1219135, 50.277224999 ], [ 7.773997, 50.066539998999986 ], [ 7.764844499999981, 50.08259049899999 ], [ 7.7346305, 49.998688499000025 ], [ 7.963557, 49.833101999 ], [ 7.905437, 49.75226349899998 ], [ 7.7033305, 49.652514997000026 ], [ 7.522752500000024, 49.707622499000024 ], [ 7.276622499999974, 49.548623500000019 ], [ 7.02798, 49.63943849899999 ], [ 7.0443115, 49.689302 ], [ 7.222511, 49.88495050099999 ], [ 7.202684499999975, 49.966323000999978 ], [ 6.979021, 50.097910999000021 ], [ 7.0687785, 50.279785499000013 ], [ 6.984338498999989, 50.348893498999985 ], [ 6.800711499999977, 50.361781499000017 ], [ 6.927901, 50.558618500000023 ], [ 7.1952005, 50.642722999 ], [ 7.210872, 50.649543499 ], [ 7.2123995, 50.623404999 ], [ 7.44077199899999, 50.711437998 ], [ 7.6610035, 50.820364500999972 ], [ 7.785898, 50.939913999 ], [ 7.851496, 50.925832500000013 ], [ 8.03969, 50.697375498999975 ], [ 8.125776499999972, 50.685813998000015 ] ] ] } }, -{ "type": "Feature", "id": 553, "properties": { "NUTS_ID": "DEB2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.56272492186400003, "SHAPE_LEN": 3.2817567844400002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.02798, 49.63943849899999 ], [ 6.891454, 49.613422497999977 ], [ 6.380052499999977, 49.551104999000017 ], [ 6.4749625, 49.821274999000025 ], [ 6.137662499999976, 50.129951499000015 ], [ 6.405028500000014, 50.323308499 ], [ 6.425295, 50.323011998000027 ], [ 6.800711499999977, 50.361781499000017 ], [ 6.984338498999989, 50.348893498999985 ], [ 7.0687785, 50.279785499000013 ], [ 6.979021, 50.097910999000021 ], [ 7.202684499999975, 49.966323000999978 ], [ 7.222511, 49.88495050099999 ], [ 7.0443115, 49.689302 ], [ 7.02798, 49.63943849899999 ] ] ] } }, -{ "type": "Feature", "id": 559, "properties": { "NUTS_ID": "DEB3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.87482069522899997, "SHAPE_LEN": 4.3708325458299999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.773997, 50.066539998999986 ], [ 8.17513550000001, 50.034255497 ], [ 8.190038500000014, 50.03529599699999 ], [ 8.288245, 49.995134 ], [ 8.3430305, 49.940506 ], [ 8.400055, 49.803675 ], [ 8.448365, 49.73366149899999 ], [ 8.44637749899999, 49.730799497000021 ], [ 8.414774, 49.595051997999974 ], [ 8.4224395, 49.583385498999974 ], [ 8.422700500000019, 49.57419249899999 ], [ 8.423068, 49.541821 ], [ 8.474739704, 49.440616029000012 ], [ 8.497316, 49.411347 ], [ 8.4709155, 49.340712999 ], [ 8.487268, 49.290026499000021 ], [ 8.466985500000021, 49.28297550100001 ], [ 8.4130725, 49.249816499000019 ], [ 8.33997, 49.080149999000014 ], [ 8.277349, 48.989939000999982 ], [ 8.261284, 48.980916998999987 ], [ 8.232632998999975, 48.966571500999976 ], [ 8.068407499999978, 48.999316497999985 ], [ 7.910654500000021, 49.045163499000012 ], [ 7.635651, 49.053950499999985 ], [ 7.36875550000002, 49.16145799899999 ], [ 7.320341, 49.189498999000023 ], [ 7.394494, 49.316351998000016 ], [ 7.402075500000024, 49.367718501000013 ], [ 7.395898499999987, 49.372045996999987 ], [ 7.292601499999989, 49.408222497 ], [ 7.252589, 49.43146550099999 ], [ 7.276622499999974, 49.548623500000019 ], [ 7.522752500000024, 49.707622499000024 ], [ 7.7033305, 49.652514997000026 ], [ 7.905437, 49.75226349899998 ], [ 7.963557, 49.833101999 ], [ 7.7346305, 49.998688499000025 ], [ 7.764844499999981, 50.08259049899999 ], [ 7.773997, 50.066539998999986 ] ] ] } }, -{ "type": "Feature", "id": 596, "properties": { "NUTS_ID": "DEG0", "STAT_LEVL_": 2, "SHAPE_AREA": 2.05802907599, "SHAPE_LEN": 8.2329101100200006 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.284594500000026, 51.091162497000028 ], [ 12.617355, 50.980792998000027 ], [ 12.652865500000019, 50.923678000999985 ], [ 12.250825500000019, 50.818318498999986 ], [ 12.3189165, 50.676532499000018 ], [ 11.944137500000011, 50.591275499 ], [ 11.919884500000023, 50.42440349899999 ], [ 11.603290500000014, 50.398766001000013 ], [ 11.481568, 50.431621501 ], [ 11.265938, 50.479421 ], [ 11.189943, 50.27118550099999 ], [ 10.9457185, 50.38646649899999 ], [ 10.715266499999984, 50.363590998 ], [ 10.8514945, 50.262762499000019 ], [ 10.729202, 50.230005496999979 ], [ 10.610115, 50.227994998999975 ], [ 10.450532, 50.4018595 ], [ 10.0413385, 50.516469498999982 ], [ 10.077555500000017, 50.63762399699999 ], [ 9.9261765, 50.767389998999988 ], [ 10.021558500000026, 50.9929495 ], [ 10.182348499999989, 50.99848750000001 ], [ 10.202181, 51.012009001000024 ], [ 10.210013, 51.144082998999977 ], [ 10.206942, 51.190648996999983 ], [ 9.928339, 51.375299 ], [ 10.365365, 51.55589100100002 ], [ 10.488551, 51.574778498 ], [ 10.677283, 51.638376000999983 ], [ 10.701372, 51.642187499999977 ], [ 10.916058998999972, 51.616374001 ], [ 10.978113, 51.426884998999981 ], [ 11.428868500000021, 51.339809999000011 ], [ 11.473968, 51.29505849899999 ], [ 11.385374500000012, 51.24588699899999 ], [ 11.484608499999979, 51.105437499 ], [ 11.696938499999987, 51.087490998000021 ], [ 12.021018500000025, 50.96912249899998 ], [ 12.163369499999988, 50.958822498000018 ], [ 12.224169, 50.942934998 ], [ 12.284594500000026, 51.091162497000028 ] ] ] } }, -{ "type": "Feature", "id": 622, "properties": { "NUTS_ID": "DK01", "STAT_LEVL_": 2, "SHAPE_AREA": 0.21530830689399999, "SHAPE_LEN": 3.3185893103400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.5641005, 55.994034 ], [ 12.583112, 55.807791501 ], [ 12.584052499999984, 55.721773499999983 ], [ 12.6812885, 55.588256999 ], [ 12.504888, 55.6374695 ], [ 12.363498, 55.593827498999985 ], [ 12.250782, 55.708411 ], [ 12.089422, 55.78082 ], [ 12.01011649899999, 55.96801749799999 ], [ 11.844483500000024, 55.967036999000015 ], [ 12.5641005, 55.994034 ] ] ], [ [ [ 14.779674, 55.29000449900002 ], [ 15.158351, 55.083439 ], [ 14.683027, 55.09734649699999 ], [ 14.779674, 55.29000449900002 ] ] ] ] } }, -{ "type": "Feature", "id": 627, "properties": { "NUTS_ID": "DK02", "STAT_LEVL_": 2, "SHAPE_AREA": 0.96862924214599999, "SHAPE_LEN": 8.1768314244700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.743550500000026, 55.789573497999982 ], [ 11.805708192, 55.680681231999984 ], [ 11.87555, 55.737591499000018 ], [ 11.9599945, 55.850509498 ], [ 11.905017, 55.9359095 ], [ 12.0596445, 55.732090001000017 ], [ 11.980809, 55.730124998 ], [ 11.951244, 55.675521999000011 ], [ 12.084782, 55.654254001000027 ], [ 12.087174684999979, 55.719519628 ], [ 12.088165831000026, 55.746555279 ], [ 12.089422, 55.78082 ], [ 12.250782, 55.708411 ], [ 12.363498, 55.593827498999985 ], [ 12.221227, 55.425629501 ], [ 12.4563445, 55.292506999000011 ], [ 12.0024285, 54.96804599699999 ], [ 11.6157665, 55.081359998999972 ], [ 11.828402499999982, 55.042315997 ], [ 11.748527500000023, 55.219173497999975 ], [ 11.243200499000011, 55.207942996999975 ], [ 10.87105, 55.74376300099999 ], [ 11.348573, 55.757736500000021 ], [ 11.4824, 55.96112800100002 ], [ 11.777166500000021, 55.9767685 ], [ 11.743550500000026, 55.789573497999982 ] ] ], [ [ [ 12.166872, 54.834666997 ], [ 11.4617675, 54.610306 ], [ 10.956038499999977, 54.815006497000013 ], [ 12.166872, 54.834666997 ] ] ] ] } }, -{ "type": "Feature", "id": 630, "properties": { "NUTS_ID": "DK03", "STAT_LEVL_": 2, "SHAPE_AREA": 1.5063318718000001, "SHAPE_LEN": 9.2349477131800004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.860733, 55.625149 ], [ 9.739651342, 55.529699214 ], [ 10.493877499, 55.547950500000013 ], [ 10.427106, 55.429145999000013 ], [ 10.856239500000015, 55.293189500999972 ], [ 10.5537165, 54.944484499 ], [ 10.072239, 55.077411498 ], [ 9.679817695, 55.511982487000012 ], [ 9.663652053000021, 55.510181843 ], [ 9.488094499999988, 55.49062699699999 ], [ 9.422177499999975, 55.033451 ], [ 10.0712885, 54.877284997 ], [ 9.619266499999981, 54.93403200099999 ], [ 9.420151499999974, 54.831956500999979 ], [ 9.113097, 54.8736015 ], [ 8.63592599899999, 54.911682998 ], [ 8.684189, 55.158839998000019 ], [ 8.620333500000015, 55.428672999000014 ], [ 8.076632500000017, 55.556964999 ], [ 8.17079, 55.815367 ], [ 9.387007499999982, 55.924146499000017 ], [ 9.447316, 55.834682997000016 ], [ 9.671952499999975, 55.712069998 ], [ 9.543939500000022, 55.706680999000014 ], [ 9.860733, 55.625149 ] ] ] } }, -{ "type": "Feature", "id": 633, "properties": { "NUTS_ID": "DK04", "STAT_LEVL_": 2, "SHAPE_AREA": 1.87932514111, "SHAPE_LEN": 7.8099538448499999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.319437, 56.672226998999975 ], [ 9.795823499999983, 56.561614 ], [ 10.194114500000012, 56.684693501000027 ], [ 10.308140107999975, 56.606842685 ], [ 10.9599055, 56.442081498999983 ], [ 10.712867, 56.14205549799999 ], [ 10.345911, 56.194126 ], [ 10.009511, 55.700878000999978 ], [ 9.671952499999975, 55.712069998 ], [ 9.447316, 55.834682997000016 ], [ 9.387007499999982, 55.924146499000017 ], [ 8.17079, 55.815367 ], [ 8.386469, 55.907278500000018 ], [ 8.099594, 56.036021998000024 ], [ 8.19683, 56.694996 ], [ 8.668789, 56.4678495 ], [ 9.002038860000027, 56.80120575 ], [ 9.1771, 56.708271 ], [ 9.05857850000001, 56.629835997999976 ], [ 9.319437, 56.672226998999975 ] ] ] } }, -{ "type": "Feature", "id": 636, "properties": { "NUTS_ID": "DK05", "STAT_LEVL_": 2, "SHAPE_AREA": 1.0292748196799999, "SHAPE_LEN": 10.3649263998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.668212, 56.950069498 ], [ 8.515605634, 56.686523847999979 ], [ 8.577901844, 56.692498349 ], [ 8.581561781, 56.695444119 ], [ 8.9003495, 56.952026499 ], [ 8.7765885, 56.694549498000015 ], [ 8.595991889, 56.690836525 ], [ 8.583263347000013, 56.690574833000028 ], [ 8.4040455, 56.670237 ], [ 8.232896, 56.798159499 ], [ 8.589805500000011, 57.11797349699998 ], [ 9.3992035, 57.164098497 ], [ 9.95829550000002, 57.595298997999976 ], [ 10.644709499999976, 57.742755499999987 ], [ 10.422333499999979, 57.14775149799999 ], [ 8.668212, 56.950069498 ] ] ], [ [ [ 10.277603904999978, 56.700858940999979 ], [ 9.801955, 56.6385995 ], [ 10.194114500000012, 56.684693501000027 ], [ 9.795823499999983, 56.561614 ], [ 9.319437, 56.672226998999975 ], [ 9.159611, 56.677932498000018 ], [ 9.24345, 56.74848949699998 ], [ 9.164284, 56.888828499999988 ], [ 10.272072, 56.9368935 ], [ 10.3327445, 56.708076496999979 ], [ 10.277603904999978, 56.700858940999979 ] ] ] ] } }, -{ "type": "Feature", "id": 640, "properties": { "NUTS_ID": "EE00", "STAT_LEVL_": 2, "SHAPE_AREA": 6.9388307308700004, "SHAPE_LEN": 17.375034765500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.357049499000027, 58.787144001 ], [ 27.621053500000016, 58.0051115 ], [ 27.351579, 57.51823699900001 ], [ 26.524905499999988, 57.516247497999984 ], [ 26.056459, 57.848431496999979 ], [ 25.046307, 58.040146000999982 ], [ 24.834082500000022, 57.9727795 ], [ 24.352817500000015, 57.876556500999982 ], [ 24.58152, 58.325415498999973 ], [ 24.111982500000011, 58.240461501000027 ], [ 23.521601, 58.564879500000018 ], [ 23.404937, 59.025805 ], [ 23.730738499999973, 59.237132501000019 ], [ 24.796578, 59.571803500999977 ], [ 25.83015949899999, 59.564065 ], [ 26.759436, 59.499518497999986 ], [ 28.041862499999979, 59.4701025 ], [ 28.209798001000024, 59.371387998999978 ], [ 27.357049499000027, 58.787144001 ] ] ], [ [ [ 23.345607500000028, 58.610229998000023 ], [ 22.719874, 58.212165001000017 ], [ 21.828614, 58.307032998000011 ], [ 22.543011499999977, 58.642051496000022 ], [ 23.345607500000028, 58.610229998000023 ] ] ], [ [ [ 22.9317145, 58.971051000999978 ], [ 23.069148, 58.838146000999984 ], [ 22.393010999000012, 58.891237998 ], [ 22.592449, 59.088072996999983 ], [ 22.9317145, 58.971051000999978 ] ] ] ] } }, -{ "type": "Feature", "id": 647, "properties": { "NUTS_ID": "EL52", "STAT_LEVL_": 2, "SHAPE_AREA": 2.03465325697, "SHAPE_LEN": 9.6665397065099992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.624222998999983, 41.375727497000014 ], [ 24.1179275, 41.006088501000022 ], [ 23.86774650000001, 40.77872849900001 ], [ 23.765077500000018, 40.757892498999979 ], [ 23.7568645, 40.634563497999977 ], [ 24.010988, 40.389434499 ], [ 24.005043, 40.31456749900002 ], [ 23.861864, 40.37016300099998 ], [ 23.694948, 40.303939999000022 ], [ 23.997488499999974, 40.107707999000013 ], [ 23.9472275, 39.938018996999972 ], [ 23.65232450000002, 40.224617 ], [ 23.005256498999984, 40.350360501000011 ], [ 22.814283499999988, 40.478442998999981 ], [ 22.947689500000024, 40.626636497999982 ], [ 22.682419, 40.528964998999982 ], [ 22.663957499999981, 40.491554496999981 ], [ 22.547895499999981, 40.145462001 ], [ 22.66243, 39.975547999000014 ], [ 22.1152075, 40.189948997999977 ], [ 22.184179500000027, 40.301849498000024 ], [ 21.928503, 40.487968500000022 ], [ 21.906351, 40.681335997000019 ], [ 21.822054, 40.696296499000027 ], [ 21.704187, 40.863483499999973 ], [ 21.787378, 40.9311255 ], [ 21.929438, 41.100350498000012 ], [ 22.216216, 41.170457498000019 ], [ 22.332052, 41.120272500999988 ], [ 22.732037, 41.146391498000014 ], [ 22.879178500000023, 41.340652998 ], [ 22.9275915, 41.338539498999978 ], [ 23.624222998999983, 41.375727497000014 ] ] ], [ [ [ 23.679613, 39.972439001 ], [ 23.750192500000026, 39.915984998999988 ], [ 23.355198, 39.953880498999979 ], [ 23.3263685, 40.183349498999974 ], [ 23.679613, 39.972439001 ] ] ] ] } }, -{ "type": "Feature", "id": 652, "properties": { "NUTS_ID": "EL30", "STAT_LEVL_": 2, "SHAPE_AREA": 0.34999048249499998, "SHAPE_LEN": 4.1181184112300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.079767, 38.161911998999983 ], [ 24.072212499999978, 37.682054000999983 ], [ 23.743593, 37.853809497999976 ], [ 23.672225500000025, 37.941819999000018 ], [ 23.5713945, 37.993224499 ], [ 23.5969505, 38.01517499800002 ], [ 23.179699500000027, 37.951589997999974 ], [ 23.133437, 37.920439499 ], [ 22.848893499999974, 38.02820650000001 ], [ 23.117532, 38.060645997999984 ], [ 23.126179, 38.168400001 ], [ 23.63415550000002, 38.211311498999976 ], [ 23.690418, 38.340297498999973 ], [ 24.079767, 38.161911998999983 ] ] ], [ [ [ 23.5226725, 37.518099499000016 ], [ 23.4244195, 37.411700998000015 ], [ 23.2003785, 37.59665300099999 ], [ 23.386825499999986, 37.561183998999979 ], [ 23.5226725, 37.518099499000016 ] ] ] ] } }, -{ "type": "Feature", "id": 661, "properties": { "NUTS_ID": "EL41", "STAT_LEVL_": 2, "SHAPE_AREA": 0.21239785685000001, "SHAPE_LEN": 4.0052782586999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.424524500000018, 39.334041500000012 ], [ 26.609173, 39.010497998 ], [ 25.831421, 39.18841949900002 ], [ 26.424524500000018, 39.334041500000012 ] ] ], [ [ [ 26.159764, 38.553092998000011 ], [ 26.03731349899999, 38.19849399899999 ], [ 25.8641245, 38.24406799799999 ], [ 25.857202500000028, 38.580429001000027 ], [ 26.159764, 38.553092998000011 ] ] ], [ [ [ 26.8575075, 37.797096497999974 ], [ 27.070253499999978, 37.717021998 ], [ 26.5665095, 37.730647998999984 ], [ 26.8575075, 37.797096497999974 ] ] ] ] } }, -{ "type": "Feature", "id": 665, "properties": { "NUTS_ID": "EL42", "STAT_LEVL_": 2, "SHAPE_AREA": 0.164994495031, "SHAPE_LEN": 3.43347825191 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.22072350000002, 36.45793699799998 ], [ 27.863466500000015, 35.929278497999974 ], [ 27.718461499999989, 35.94023049899999 ], [ 27.703456500000016, 36.146589999000014 ], [ 28.22072350000002, 36.45793699799998 ] ] ], [ [ [ 27.230274, 35.508568001000015 ], [ 27.134781, 35.396366 ], [ 27.061262, 35.59654999899999 ], [ 27.2101575, 35.830795497999986 ], [ 27.230274, 35.508568001000015 ] ] ], [ [ [ 24.9576055, 37.897117498999989 ], [ 24.9635755, 37.683925499 ], [ 24.684284, 37.951064998999982 ], [ 24.9576055, 37.897117498999989 ] ] ] ] } }, -{ "type": "Feature", "id": 668, "properties": { "NUTS_ID": "EL43", "STAT_LEVL_": 2, "SHAPE_AREA": 0.810296646038, "SHAPE_LEN": 6.5345878481400002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.596821, 35.628162498999984 ], [ 23.8409785, 35.52808 ], [ 24.174324, 35.587199998000017 ], [ 24.317411, 35.353774998 ], [ 24.928003499999988, 35.40690999899999 ], [ 25.040821, 35.400146499000016 ], [ 25.490698, 35.298331997999981 ], [ 25.7719595, 35.341518499000017 ], [ 25.7262935, 35.13115699799999 ], [ 26.263292499999977, 35.265228501000024 ], [ 26.281149, 35.111587499 ], [ 25.550568, 34.99075699799999 ], [ 24.7709425, 34.929885997999975 ], [ 24.722517, 35.092544499999974 ], [ 24.287523498999974, 35.176006500000028 ], [ 23.515789, 35.289715 ], [ 23.596821, 35.628162498999984 ] ] ] } }, -{ "type": "Feature", "id": 674, "properties": { "NUTS_ID": "EL51", "STAT_LEVL_": 2, "SHAPE_AREA": 1.44642581269, "SHAPE_LEN": 8.0438425732799992 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.032758, 40.730256999 ], [ 25.632429, 40.862804498 ], [ 25.139545, 40.990687498999989 ], [ 24.81349, 40.858085499000026 ], [ 24.508724, 40.958480998000027 ], [ 24.088630500000022, 40.72168399899999 ], [ 23.86774650000001, 40.77872849900001 ], [ 24.1179275, 41.006088501000022 ], [ 23.624222998999983, 41.375727497000014 ], [ 24.059744, 41.522112 ], [ 24.525637, 41.568699998 ], [ 24.783956, 41.360188997000023 ], [ 25.1793755, 41.310187998 ], [ 25.224698499999988, 41.264630997999973 ], [ 25.906437499999981, 41.307574998 ], [ 25.948626, 41.320342000999972 ], [ 26.158688499999982, 41.391182496999988 ], [ 26.060393, 41.688516000999982 ], [ 26.357879, 41.711104498999987 ], [ 26.6001205, 41.601198997999973 ], [ 26.628431499999976, 41.345533499 ], [ 26.321652, 41.250406499 ], [ 26.291015500000015, 40.93188349899998 ], [ 26.032758, 40.730256999 ] ] ] } }, -{ "type": "Feature", "id": 684, "properties": { "NUTS_ID": "EL53", "STAT_LEVL_": 2, "SHAPE_AREA": 1.02505876934, "SHAPE_LEN": 4.28695359584 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1152075, 40.189948997999977 ], [ 21.918218500000023, 39.852611498999977 ], [ 21.29648450000002, 39.857772997999973 ], [ 21.097473, 39.880351497999982 ], [ 21.004242, 40.154361499 ], [ 20.778501, 40.348788999000021 ], [ 21.056068499999981, 40.6166955 ], [ 20.980204500000013, 40.855665 ], [ 21.787378, 40.9311255 ], [ 21.704187, 40.863483499999973 ], [ 21.822054, 40.696296499000027 ], [ 21.906351, 40.681335997000019 ], [ 21.928503, 40.487968500000022 ], [ 22.184179500000027, 40.301849498000024 ], [ 22.1152075, 40.189948997999977 ] ] ] } }, -{ "type": "Feature", "id": 688, "properties": { "NUTS_ID": "EL54", "STAT_LEVL_": 2, "SHAPE_AREA": 1.01691079154, "SHAPE_LEN": 4.4297822432 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.29648450000002, 39.857772997999973 ], [ 21.181753, 39.501956999000015 ], [ 21.373546499999975, 39.174735998000017 ], [ 21.1086085, 39.04614650100001 ], [ 20.738746, 39.018909499000017 ], [ 20.4778215, 39.27484149899999 ], [ 20.464247, 39.273101999 ], [ 20.3006785, 39.31573499699999 ], [ 20.008812499999976, 39.691292001000022 ], [ 20.391308, 39.788483499999984 ], [ 20.312236499999983, 39.991022498 ], [ 20.778501, 40.348788999000021 ], [ 21.004242, 40.154361499 ], [ 21.097473, 39.880351497999982 ], [ 21.29648450000002, 39.857772997999973 ] ] ] } }, -{ "type": "Feature", "id": 693, "properties": { "NUTS_ID": "EL61", "STAT_LEVL_": 2, "SHAPE_AREA": 1.3747607080799999, "SHAPE_LEN": 6.4982790967500001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.66243, 39.975547999000014 ], [ 22.915911, 39.60293599900001 ], [ 22.976824, 39.555328498999984 ], [ 23.3514765, 39.187774499999989 ], [ 23.073730500000011, 39.084652 ], [ 23.212417500000015, 39.146873497 ], [ 23.1633645, 39.2728995 ], [ 22.821161500000017, 39.277507501 ], [ 23.018066499999975, 39.002654996999979 ], [ 22.5056705, 39.131199 ], [ 22.258116, 39.2723085 ], [ 21.939703, 39.065337999 ], [ 21.639002, 39.250251499 ], [ 21.396904, 39.164478497 ], [ 21.373546499999975, 39.174735998000017 ], [ 21.181753, 39.501956999000015 ], [ 21.29648450000002, 39.857772997999973 ], [ 21.918218500000023, 39.852611498999977 ], [ 22.1152075, 40.189948997999977 ], [ 22.66243, 39.975547999000014 ] ] ] } }, -{ "type": "Feature", "id": 697, "properties": { "NUTS_ID": "EL62", "STAT_LEVL_": 2, "SHAPE_AREA": 0.18015853660700001, "SHAPE_LEN": 4.4558124053899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.628674, 38.325271497000017 ], [ 20.79628550000001, 38.065116999 ], [ 20.341785500000015, 38.176131997000027 ], [ 20.536981500000024, 38.469810499 ], [ 20.628674, 38.325271497000017 ] ] ], [ [ [ 20.899757, 37.77567349899999 ], [ 20.988697, 37.705222497000022 ], [ 20.878824, 37.729893 ], [ 20.829103, 37.644634998000015 ], [ 20.625544, 37.820702000999972 ], [ 20.632630999000014, 37.88441899899999 ], [ 20.71006, 37.922859999000025 ], [ 20.899757, 37.77567349899999 ] ] ], [ [ [ 19.841421500000024, 39.659159499 ], [ 20.109863500000017, 39.360972 ], [ 19.641207, 39.749874498999986 ], [ 19.915536499999973, 39.79195249899999 ], [ 19.841421500000024, 39.659159499 ] ] ], [ [ [ 20.721731, 38.626224498999989 ], [ 20.551553500000011, 38.577827497999976 ], [ 20.5996705, 38.779578997999977 ], [ 20.693756, 38.851817998 ], [ 20.721731, 38.626224498999989 ] ] ] ] } }, -{ "type": "Feature", "id": 702, "properties": { "NUTS_ID": "EL63", "STAT_LEVL_": 2, "SHAPE_AREA": 1.18374259179, "SHAPE_LEN": 7.6376450942399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.3729725, 38.142223498000021 ], [ 22.26432, 37.83939049899999 ], [ 21.890155499, 37.865802998999982 ], [ 21.792816, 37.602543 ], [ 21.965728500000012, 37.48326099799999 ], [ 21.680233, 37.377433999 ], [ 21.105238, 37.848926499000015 ], [ 21.351074, 38.102138498999977 ], [ 21.871086, 38.334537497999975 ], [ 22.3729725, 38.142223498000021 ] ] ], [ [ [ 21.396904, 39.164478497 ], [ 21.571245, 38.736785999 ], [ 21.946253, 38.783431998000026 ], [ 21.999378, 38.768867496999974 ], [ 21.99988350000001, 38.508353999 ], [ 21.851717, 38.374519497999984 ], [ 21.486598730000026, 38.301853584000014 ], [ 21.486297499999978, 38.327686498999981 ], [ 21.484744471999988, 38.306621568000025 ], [ 21.318926, 38.499629997 ], [ 21.1428795, 38.3037875 ], [ 21.105279793000022, 38.392762489 ], [ 21.075875442999973, 38.462344194000025 ], [ 20.988678, 38.66868599899999 ], [ 20.726846500000022, 38.814430499000025 ], [ 20.764536, 38.957309499000019 ], [ 21.066231, 38.877136499000017 ], [ 21.1086085, 39.04614650100001 ], [ 21.373546499999975, 39.174735998000017 ], [ 21.396904, 39.164478497 ] ] ] ] } }, -{ "type": "Feature", "id": 706, "properties": { "NUTS_ID": "EL64", "STAT_LEVL_": 2, "SHAPE_AREA": 1.5625623365100001, "SHAPE_LEN": 11.4434979796 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.5056705, 39.131199 ], [ 23.018066499999975, 39.002654996999979 ], [ 22.527525, 38.858909499999982 ], [ 23.3777905, 38.52575699800002 ], [ 23.328289, 38.501220499999988 ], [ 23.560117, 38.502597998 ], [ 23.655134499999974, 38.352496998999982 ], [ 23.690418, 38.340297498999973 ], [ 23.63415550000002, 38.211311498999976 ], [ 23.126179, 38.168400001 ], [ 22.6080685, 38.359401499 ], [ 21.851717, 38.374519497999984 ], [ 21.99988350000001, 38.508353999 ], [ 21.999378, 38.768867496999974 ], [ 21.946253, 38.783431998000026 ], [ 21.571245, 38.736785999 ], [ 21.396904, 39.164478497 ], [ 21.639002, 39.250251499 ], [ 21.939703, 39.065337999 ], [ 22.258116, 39.2723085 ], [ 22.5056705, 39.131199 ] ] ], [ [ [ 23.426233500000023, 38.90583049899999 ], [ 24.155115, 38.651188 ], [ 24.248035500000015, 38.22748199900002 ], [ 24.583963499999982, 38.0242235 ], [ 24.30678, 38.06962199899999 ], [ 24.048601, 38.395148998000025 ], [ 23.648699, 38.398697 ], [ 23.511806499999977, 38.587054997999985 ], [ 23.196602, 38.834670999000025 ], [ 22.829393499999981, 38.825450999 ], [ 23.317873, 39.038505499 ], [ 23.426233500000023, 38.90583049899999 ] ] ] ] } }, -{ "type": "Feature", "id": 712, "properties": { "NUTS_ID": "EL65", "STAT_LEVL_": 2, "SHAPE_AREA": 1.54234595769, "SHAPE_LEN": 7.6589066245000001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.962061, 37.949569499 ], [ 23.178438, 37.803564498000014 ], [ 23.120031499999982, 37.72998499900001 ], [ 23.2003785, 37.59665300099999 ], [ 23.4244195, 37.411700998000015 ], [ 22.725086, 37.572639498 ], [ 22.982481, 37.048026998000012 ], [ 23.196792500000015, 36.434662 ], [ 22.7856215, 36.796966499 ], [ 22.386833, 36.591141 ], [ 22.149515, 37.018146499000011 ], [ 21.9301395, 36.9811555 ], [ 21.877396, 36.717616497999984 ], [ 21.704893, 36.811290499999984 ], [ 21.565725499, 37.163509499999975 ], [ 21.680233, 37.377433999 ], [ 21.965728500000012, 37.48326099799999 ], [ 21.792816, 37.602543 ], [ 21.890155499, 37.865802998999982 ], [ 22.26432, 37.83939049899999 ], [ 22.3729725, 38.142223498000021 ], [ 22.962061, 37.949569499 ] ] ] } }, -{ "type": "Feature", "id": 718, "properties": { "NUTS_ID": "ES11", "STAT_LEVL_": 2, "SHAPE_AREA": 3.2901554600499998, "SHAPE_LEN": 8.6096917140600002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031837, 43.544471497000018 ], [ -7.182441, 43.392383497000026 ], [ -6.824167, 42.915012499 ], [ -7.076834, 42.50812399900002 ], [ -6.8227655, 42.490833001 ], [ -6.784308, 42.253608499999984 ], [ -6.983513500000015, 41.972903998999982 ], [ -7.20046450000001, 41.879749498000024 ], [ -8.051862500000027, 41.820613998 ], [ -8.1650755, 41.818302 ], [ -8.199000500000011, 42.154418998999972 ], [ -8.863186, 41.872066499000027 ], [ -8.898017, 42.1119195 ], [ -8.658873500000027, 42.291434998999989 ], [ -8.833692499999984, 42.470134498999982 ], [ -8.726749499999983, 42.68825149700001 ], [ -9.0309545, 42.697562996999977 ], [ -9.277219, 43.0441095 ], [ -7.904372500000022, 43.769103997 ], [ -7.699736499999972, 43.735115001 ], [ -7.031837, 43.544471497000018 ] ] ] } }, -{ "type": "Feature", "id": 723, "properties": { "NUTS_ID": "ES12", "STAT_LEVL_": 2, "SHAPE_AREA": 1.23794569192, "SHAPE_LEN": 5.7536472444399998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.51230099899999, 43.393204001000015 ], [ -4.841038500000025, 43.180709499999978 ], [ -6.824167, 42.915012499 ], [ -7.182441, 43.392383497000026 ], [ -7.031837, 43.544471497000018 ], [ -5.84171, 43.655956499000013 ], [ -4.51230099899999, 43.393204001000015 ] ] ] } }, -{ "type": "Feature", "id": 725, "properties": { "NUTS_ID": "ES13", "STAT_LEVL_": 2, "SHAPE_AREA": 0.58122095580499999, "SHAPE_LEN": 4.2665797827600001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.153338, 43.353221999000027 ], [ -3.450147, 43.236207998999987 ], [ -3.417681500000015, 43.133369497999979 ], [ -3.945488, 43.005718496999975 ], [ -3.815811, 42.812561 ], [ -3.99967, 42.76893249699998 ], [ -4.002319, 42.830867497999975 ], [ -4.04593, 42.766566996999984 ], [ -4.081359, 42.761417499 ], [ -4.238510999000027, 42.954314997999973 ], [ -4.737022998999976, 43.02092349899999 ], [ -4.841038500000025, 43.180709499999978 ], [ -4.51230099899999, 43.393204001000015 ], [ -3.426641001, 43.413513001000013 ], [ -3.153338, 43.353221999000027 ] ] ] } }, -{ "type": "Feature", "id": 728, "properties": { "NUTS_ID": "ES21", "STAT_LEVL_": 2, "SHAPE_AREA": 0.81312909756499996, "SHAPE_LEN": 4.71365498688 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.508807499999989, 43.376544998999975 ], [ -2.412847, 43.321082998 ], [ -1.785978, 43.350478996999982 ], [ -1.728903, 43.296088997000027 ], [ -2.250807, 42.89569099900001 ], [ -2.420719, 42.489269498999988 ], [ -2.8581175, 42.638168499000017 ], [ -3.286797499999977, 42.885097497 ], [ -3.0369895, 42.982185497999978 ], [ -3.0890235, 43.00158299899999 ], [ -3.141396, 43.161483498999985 ], [ -3.417681500000015, 43.133369497999979 ], [ -3.450147, 43.236207998999987 ], [ -3.153338, 43.353221999000027 ], [ -2.508807499999989, 43.376544998999975 ] ] ] } }, -{ "type": "Feature", "id": 732, "properties": { "NUTS_ID": "ES22", "STAT_LEVL_": 2, "SHAPE_AREA": 1.16482462995, "SHAPE_LEN": 4.9724470138900001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.724501, 42.920158500000014 ], [ -0.901080499999978, 42.74269099899999 ], [ -1.2881375, 42.522762499 ], [ -1.4107495, 41.918941499000027 ], [ -1.847183500000028, 42.007988 ], [ -1.681452, 42.192402 ], [ -2.420719, 42.489269498999988 ], [ -2.250807, 42.89569099900001 ], [ -1.728903, 43.296088997000027 ], [ -1.6087885, 43.251976001 ], [ -0.724501, 42.920158500000014 ] ] ] } }, -{ "type": "Feature", "id": 734, "properties": { "NUTS_ID": "ES23", "STAT_LEVL_": 2, "SHAPE_AREA": 0.51304245633599999, "SHAPE_LEN": 3.5032208315000002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.420719, 42.489269498999988 ], [ -1.681452, 42.192402 ], [ -1.847183500000028, 42.007988 ], [ -1.8565395, 41.966388498000015 ], [ -2.282167500000014, 42.13168699900001 ], [ -2.9136375, 42.022838499999978 ], [ -3.13429450000001, 42.54202249799999 ], [ -2.8581175, 42.638168499000017 ], [ -2.420719, 42.489269498999988 ] ] ] } }, -{ "type": "Feature", "id": 736, "properties": { "NUTS_ID": "ES24", "STAT_LEVL_": 2, "SHAPE_AREA": 5.24044663946, "SHAPE_LEN": 10.2785092594 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.724501, 42.920158500000014 ], [ -0.551047, 42.777637500000026 ], [ -0.313342, 42.849364997 ], [ 0.4777555, 42.700019997000027 ], [ 0.660127, 42.69095249899999 ], [ 0.767070499999988, 42.34881599800002 ], [ 0.335948499999972, 41.407432498999981 ], [ 0.385724, 41.278839498000025 ], [ 0.220409500000017, 41.07143 ], [ 0.170789500000012, 40.732837 ], [ -0.197124499999973, 40.784457998999983 ], [ -0.279997499999979, 40.369499499000028 ], [ -0.837749501000019, 39.976817997000012 ], [ -0.797643, 39.881076499000017 ], [ -0.912739, 39.87310750099999 ], [ -1.1423615, 39.971855499000014 ], [ -1.165154, 40.010108998000021 ], [ -1.448831499999983, 40.145358497000018 ], [ -1.806344, 40.39824699899998 ], [ -1.545494500000018, 40.595210999000017 ], [ -1.6174335, 40.94374099700002 ], [ -2.05169, 41.146857999000019 ], [ -2.170485499999984, 41.318836498999985 ], [ -1.825316, 41.778365999000016 ], [ -1.8565395, 41.966388498000015 ], [ -1.847183500000028, 42.007988 ], [ -1.4107495, 41.918941499000027 ], [ -1.2881375, 42.522762499 ], [ -0.901080499999978, 42.74269099899999 ], [ -0.724501, 42.920158500000014 ] ] ] } }, -{ "type": "Feature", "id": 741, "properties": { "NUTS_ID": "ES30", "STAT_LEVL_": 2, "SHAPE_AREA": 0.81272479065799996, "SHAPE_LEN": 4.3266876300900003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.578901, 40.217157499 ], [ -4.160293500000023, 40.689853500000027 ], [ -3.539573, 41.16499349899999 ], [ -3.394300499999986, 41.000234498 ], [ -3.468398, 40.689896498999985 ], [ -3.130407, 40.40515399899999 ], [ -3.194294500000012, 40.248005998999986 ], [ -3.067689, 40.157884998999975 ], [ -3.161419500000022, 40.06489699799999 ], [ -3.623443, 40.053848500000015 ], [ -4.190704, 40.297315997999988 ], [ -4.578901, 40.217157499 ] ] ] } }, -{ "type": "Feature", "id": 744, "properties": { "NUTS_ID": "DEC0", "STAT_LEVL_": 2, "SHAPE_AREA": 0.321613830253, "SHAPE_LEN": 2.6466424927699999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.276622499999974, 49.548623500000019 ], [ 7.252589, 49.43146550099999 ], [ 7.292601499999989, 49.408222497 ], [ 7.395898499999987, 49.372045996999987 ], [ 7.402075500000024, 49.367718501000013 ], [ 7.394494, 49.316351998000016 ], [ 7.320341, 49.189498999000023 ], [ 7.36875550000002, 49.16145799899999 ], [ 7.101069, 49.155998 ], [ 6.723465499999975, 49.218828998999982 ], [ 6.556986, 49.419208498999978 ], [ 6.367107499999975, 49.469507001000011 ], [ 6.380052499999977, 49.551104999000017 ], [ 6.891454, 49.613422497999977 ], [ 7.02798, 49.63943849899999 ], [ 7.276622499999974, 49.548623500000019 ] ] ] } }, -{ "type": "Feature", "id": 752, "properties": { "NUTS_ID": "DED2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.98811335401, "SHAPE_LEN": 4.8379051850700003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.974183, 51.36394999700002 ], [ 15.037271, 51.243749998999988 ], [ 14.823362, 50.870550497000011 ], [ 14.6188, 50.857804497000018 ], [ 14.491221, 51.043530498999985 ], [ 14.317873500000019, 51.054698998999982 ], [ 14.388335, 50.900298997999982 ], [ 13.652174, 50.730359997999983 ], [ 13.421885498999984, 51.034199999 ], [ 13.198708, 51.230405499000028 ], [ 13.21015, 51.404735999000025 ], [ 13.691250500000024, 51.374012999 ], [ 13.835313, 51.37678999799999 ], [ 14.163324499999987, 51.541042999000013 ], [ 14.447771, 51.542068997 ], [ 14.729862, 51.581776999 ], [ 14.974183, 51.36394999700002 ] ] ] } }, -{ "type": "Feature", "id": 758, "properties": { "NUTS_ID": "DED4", "STAT_LEVL_": 2, "SHAPE_AREA": 0.86450517877099997, "SHAPE_LEN": 4.3773437524699998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.652174, 50.730359997999983 ], [ 13.501846, 50.633642999000017 ], [ 12.948144500000012, 50.404311499000016 ], [ 12.5837785, 50.407078999000021 ], [ 12.100900500000023, 50.31802799799999 ], [ 11.919884500000023, 50.42440349899999 ], [ 11.944137500000011, 50.591275499 ], [ 12.3189165, 50.676532499000018 ], [ 12.250825500000019, 50.818318498999986 ], [ 12.652865500000019, 50.923678000999985 ], [ 12.617355, 50.980792998000027 ], [ 12.926016, 51.2182075 ], [ 13.198708, 51.230405499000028 ], [ 13.421885498999984, 51.034199999 ], [ 13.652174, 50.730359997999983 ] ] ] } }, -{ "type": "Feature", "id": 764, "properties": { "NUTS_ID": "DED5", "STAT_LEVL_": 2, "SHAPE_AREA": 0.48510231226799999, "SHAPE_LEN": 2.81905508461 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.21015, 51.404735999000025 ], [ 13.198708, 51.230405499000028 ], [ 12.926016, 51.2182075 ], [ 12.617355, 50.980792998000027 ], [ 12.284594500000026, 51.091162497000028 ], [ 12.1709045, 51.2755085 ], [ 12.193544499999973, 51.332518500999981 ], [ 12.198939, 51.531320498000014 ], [ 12.580263, 51.626065499999982 ], [ 13.051025, 51.647677 ], [ 13.21015, 51.404735999000025 ] ] ] } }, -{ "type": "Feature", "id": 769, "properties": { "NUTS_ID": "DEE0", "STAT_LEVL_": 2, "SHAPE_AREA": 2.7298399960699999, "SHAPE_LEN": 8.7958688020100002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.051025, 51.647677 ], [ 12.580263, 51.626065499999982 ], [ 12.198939, 51.531320498000014 ], [ 12.193544499999973, 51.332518500999981 ], [ 12.1709045, 51.2755085 ], [ 12.284594500000026, 51.091162497000028 ], [ 12.224169, 50.942934998 ], [ 12.163369499999988, 50.958822498000018 ], [ 12.021018500000025, 50.96912249899998 ], [ 11.696938499999987, 51.087490998000021 ], [ 11.484608499999979, 51.105437499 ], [ 11.385374500000012, 51.24588699899999 ], [ 11.473968, 51.29505849899999 ], [ 11.428868500000021, 51.339809999000011 ], [ 10.978113, 51.426884998999981 ], [ 10.916058998999972, 51.616374001 ], [ 10.701372, 51.642187499999977 ], [ 10.561227, 52.004065998999977 ], [ 10.801428499999986, 52.0480005 ], [ 10.964414499999975, 52.056642997999973 ], [ 11.086244, 52.22863399900001 ], [ 10.93454250000002, 52.471794999 ], [ 11.0087815, 52.496747500000026 ], [ 10.759314500000016, 52.795830500000022 ], [ 10.841556, 52.852205 ], [ 11.505027, 52.941032499000016 ], [ 11.597784499999989, 53.035926499000027 ], [ 12.126811499999974, 52.890199499 ], [ 12.249203500000021, 52.79186199899999 ], [ 12.171555, 52.506336497 ], [ 12.31718, 52.454095499 ], [ 12.276724499000011, 52.104018 ], [ 12.3761225, 52.04511949800002 ], [ 12.769780500000024, 51.979274499999974 ], [ 13.1509135, 51.859610499999974 ], [ 13.051025, 51.647677 ] ] ] } }, -{ "type": "Feature", "id": 785, "properties": { "NUTS_ID": "DEF0", "STAT_LEVL_": 2, "SHAPE_AREA": 2.0719277246600001, "SHAPE_LEN": 8.32640217384 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.420151499999974, 54.831956500999979 ], [ 9.422934, 54.823222998 ], [ 9.491949499999976, 54.822635499 ], [ 10.03117, 54.636575000999983 ], [ 10.168517, 54.432844998 ], [ 10.174162, 54.345745498999975 ], [ 10.713750499000014, 54.305072500999984 ], [ 11.1256095, 54.373613499999976 ], [ 11.093783, 54.199050500999988 ], [ 10.755363499999987, 54.054051501 ], [ 10.840886001, 53.991893998000023 ], [ 10.903661500999988, 53.956822000999978 ], [ 10.76296450000001, 53.811153 ], [ 10.951918499999977, 53.647622499000022 ], [ 10.595047, 53.363927500999978 ], [ 10.469184, 53.385844 ], [ 10.308312, 53.433221498000023 ], [ 10.236678499999982, 53.496354498000017 ], [ 10.072805, 53.709633999 ], [ 9.945376, 53.652927998 ], [ 9.73010399899999, 53.557580997 ], [ 9.48589, 53.707664497999986 ], [ 9.199750999, 53.88010449799998 ], [ 9.02242, 53.87951750000002 ], [ 8.8448045, 54.266328499999986 ], [ 8.602134, 54.340507996999975 ], [ 9.010464, 54.496822999000017 ], [ 8.372664499999985, 54.896856497999977 ], [ 8.63592599899999, 54.911682998 ], [ 9.113097, 54.8736015 ], [ 9.420151499999974, 54.831956500999979 ] ] ] } }, -{ "type": "Feature", "id": 789, "properties": { "NUTS_ID": "FR52", "STAT_LEVL_": 2, "SHAPE_AREA": 3.1047208840799998, "SHAPE_LEN": 10.0860830003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.571089500000028, 48.626442 ], [ -1.42794, 48.461915001000023 ], [ -1.070164499999976, 48.508492 ], [ -1.015823501, 48.003285999000013 ], [ -1.238248, 47.809992497 ], [ -1.245885, 47.776717498999972 ], [ -2.097034, 47.63135649899999 ], [ -2.458493, 47.448119999000028 ], [ -3.528605313000014, 47.778291696999986 ], [ -4.734697499999982, 48.038242497999988 ], [ -4.269574, 48.132770500999982 ], [ -4.2257935, 48.28749099700002 ], [ -4.273602501000028, 48.443435500000021 ], [ -4.772754, 48.329235 ], [ -4.7699215, 48.521136999000021 ], [ -3.950495, 48.652869998000028 ], [ -3.65915050000001, 48.659209998999984 ], [ -3.084001, 48.865695999000025 ], [ -2.6863985, 48.493152499000018 ], [ -2.123706500000026, 48.604404499 ], [ -2.148958, 48.633731996999984 ], [ -2.045604, 48.63681399699999 ], [ -2.006897, 48.566108498 ], [ -1.982181075000028, 48.554643027999987 ], [ -1.872124, 48.645713999 ], [ -1.571089500000028, 48.626442 ] ] ] } }, -{ "type": "Feature", "id": 794, "properties": { "NUTS_ID": "FR53", "STAT_LEVL_": 2, "SHAPE_AREA": 2.9295929819099999, "SHAPE_LEN": 7.4945071962499998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.177279, 46.383947998 ], [ 0.823432500000024, 46.128584499 ], [ 0.629741, 45.714569997000012 ], [ 0.004336, 45.191628 ], [ -0.040197499999977, 45.10237999899999 ], [ -0.708231, 45.327480498999989 ], [ -1.230697500000019, 45.680572498 ], [ -1.053074, 46.00383 ], [ -1.129406, 46.310271999 ], [ -0.7504715, 46.304254499000024 ], [ -0.537795001, 46.386463999 ], [ -0.891964, 46.975820499 ], [ -0.102116, 47.064799998000012 ], [ 0.05383, 47.163733499999978 ], [ 0.867469, 46.748216499000023 ], [ 1.177279, 46.383947998 ] ] ] } }, -{ "type": "Feature", "id": 800, "properties": { "NUTS_ID": "FR61", "STAT_LEVL_": 2, "SHAPE_AREA": 4.78854699648, "SHAPE_LEN": 10.686466900599999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.2531545, 45.444220001000019 ], [ 1.44826, 45.019313999000019 ], [ 1.075142, 44.577325498999983 ], [ 1.064081499999986, 44.37850849900002 ], [ 0.741885, 44.065198999000017 ], [ 0.076043500000026, 43.983138499 ], [ -0.240259, 43.897947999 ], [ -0.242833, 43.584978997 ], [ -0.096788, 43.582405 ], [ -0.017172, 43.269951 ], [ -0.313342, 42.849364997 ], [ -0.551047, 42.777637500000026 ], [ -0.724501, 42.920158500000014 ], [ -1.6087885, 43.251976001 ], [ -1.728903, 43.296088997000027 ], [ -1.785978, 43.350478996999982 ], [ -1.52487050000002, 43.529700999 ], [ -1.253891, 44.467605499 ], [ -1.156919, 45.472530499000015 ], [ -0.708231, 45.327480498999989 ], [ -0.040197499999977, 45.10237999899999 ], [ 0.004336, 45.191628 ], [ 0.629741, 45.714569997000012 ], [ 1.2531545, 45.444220001000019 ] ] ] } }, -{ "type": "Feature", "id": 806, "properties": { "NUTS_ID": "FR62", "STAT_LEVL_": 2, "SHAPE_AREA": 5.1414885421100003, "SHAPE_LEN": 11.953295218699999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.062908, 44.976504498999986 ], [ 2.207473, 44.61552899899999 ], [ 2.4789475, 44.64800999900001 ], [ 2.7167695, 44.928827996999985 ], [ 2.9816755, 44.644672999000022 ], [ 3.120173500000021, 44.261838496999985 ], [ 3.373648, 44.170759498999985 ], [ 3.263114, 44.092425499 ], [ 3.448355, 44.019103498999982 ], [ 3.358362, 43.913829498999974 ], [ 2.935457, 43.694664999 ], [ 2.565782500000012, 43.422958 ], [ 2.265415, 43.452913498999976 ], [ 2.029134, 43.436895497000023 ], [ 1.6884235, 43.273554497000021 ], [ 1.949341, 43.120973 ], [ 2.166049, 42.663917498999979 ], [ 1.7860985, 42.573658 ], [ 1.442566, 42.603668001000017 ], [ 0.858215, 42.825740999 ], [ 0.660127, 42.69095249899999 ], [ 0.4777555, 42.700019997000027 ], [ -0.313342, 42.849364997 ], [ -0.017172, 43.269951 ], [ -0.096788, 43.582405 ], [ -0.242833, 43.584978997 ], [ -0.240259, 43.897947999 ], [ 0.076043500000026, 43.983138499 ], [ 0.741885, 44.065198999000017 ], [ 1.064081499999986, 44.37850849900002 ], [ 1.075142, 44.577325498999983 ], [ 1.44826, 45.019313999000019 ], [ 2.062908, 44.976504498999986 ] ] ] } }, -{ "type": "Feature", "id": 815, "properties": { "NUTS_ID": "FR63", "STAT_LEVL_": 2, "SHAPE_AREA": 1.9489327107700001, "SHAPE_LEN": 5.6756481734099999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.28104350000001, 46.420403497 ], [ 2.565372500000024, 46.143036 ], [ 2.60902149899999, 45.966643998999984 ], [ 2.388014, 45.827372997 ], [ 2.492129499999976, 45.737669997000012 ], [ 2.50841250000002, 45.478501499 ], [ 2.062908, 44.976504498999986 ], [ 1.44826, 45.019313999000019 ], [ 1.2531545, 45.444220001000019 ], [ 0.629741, 45.714569997000012 ], [ 0.823432500000024, 46.128584499 ], [ 1.177279, 46.383947998 ], [ 1.4151855, 46.347215001 ], [ 2.167784499999982, 46.424068998999985 ], [ 2.28104350000001, 46.420403497 ] ] ] } }, -{ "type": "Feature", "id": 820, "properties": { "NUTS_ID": "FR71", "STAT_LEVL_": 2, "SHAPE_AREA": 5.2330827016899999, "SHAPE_LEN": 12.9175279067 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.310563499000011, 46.446769999000026 ], [ 5.4736565, 46.264284001000021 ], [ 6.064003, 46.416228997000019 ], [ 6.125608, 46.317229999 ], [ 5.956067, 46.1320955 ], [ 6.310211, 46.244045498999981 ], [ 6.219547, 46.311877998999989 ], [ 6.231694, 46.329429498000025 ], [ 6.24136, 46.343582497 ], [ 6.821063998999989, 46.427154498999982 ], [ 6.797888999, 46.136798999 ], [ 7.044886, 45.922412999000016 ], [ 6.8023685, 45.778562 ], [ 7.104723, 45.468454499000018 ], [ 7.125157, 45.243994498 ], [ 6.630051, 45.109856499999978 ], [ 6.26057, 45.12684399699998 ], [ 6.203923499999974, 45.01247100099999 ], [ 6.355365, 44.854820499000027 ], [ 5.80147, 44.706777500999976 ], [ 5.418397500000026, 44.424768498999981 ], [ 5.676035999000021, 44.191428498999983 ], [ 5.4987865, 44.115716497999983 ], [ 4.804566, 44.303896998000027 ], [ 4.650611, 44.329802997 ], [ 4.6492275, 44.27036 ], [ 4.258899499999984, 44.264422998999976 ], [ 3.998161499999981, 44.459798498 ], [ 3.862531, 44.743865997 ], [ 4.483132, 45.236445499000013 ], [ 3.897408499999983, 45.357079998000017 ], [ 3.984688999000014, 45.495232499 ], [ 3.694015, 45.930728000999977 ], [ 3.832069499999989, 45.999663496999972 ], [ 3.768207500000017, 46.238814497000021 ], [ 3.899538499000016, 46.275907999000026 ], [ 4.388074500000016, 46.219790499 ], [ 4.780208500000015, 46.176675999 ], [ 4.953853998999989, 46.513422999 ], [ 5.310563499000011, 46.446769999000026 ] ] ] } }, -{ "type": "Feature", "id": 829, "properties": { "NUTS_ID": "FR72", "STAT_LEVL_": 2, "SHAPE_AREA": 2.99926292956, "SHAPE_LEN": 9.152726812 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.899538499000016, 46.275907999000026 ], [ 3.768207500000017, 46.238814497000021 ], [ 3.832069499999989, 45.999663496999972 ], [ 3.694015, 45.930728000999977 ], [ 3.984688999000014, 45.495232499 ], [ 3.897408499999983, 45.357079998000017 ], [ 4.483132, 45.236445499000013 ], [ 3.862531, 44.743865997 ], [ 3.361347500000022, 44.971408 ], [ 3.103125, 44.884632497999974 ], [ 2.9816755, 44.644672999000022 ], [ 2.7167695, 44.928827996999985 ], [ 2.4789475, 44.64800999900001 ], [ 2.207473, 44.61552899899999 ], [ 2.062908, 44.976504498999986 ], [ 2.50841250000002, 45.478501499 ], [ 2.492129499999976, 45.737669997000012 ], [ 2.388014, 45.827372997 ], [ 2.60902149899999, 45.966643998999984 ], [ 2.565372500000024, 46.143036 ], [ 2.28104350000001, 46.420403497 ], [ 3.032063, 46.794909501 ], [ 3.629422499999976, 46.749456497999972 ], [ 3.998868500000015, 46.46486699899998 ], [ 3.899538499000016, 46.275907999000026 ] ] ] } }, -{ "type": "Feature", "id": 835, "properties": { "NUTS_ID": "FR81", "STAT_LEVL_": 2, "SHAPE_AREA": 3.0557720052200001, "SHAPE_LEN": 10.999483833599999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.862531, 44.743865997 ], [ 3.998161499999981, 44.459798498 ], [ 4.258899499999984, 44.264422998999976 ], [ 4.6492275, 44.27036 ], [ 4.7390595, 43.924061999 ], [ 4.230281, 43.460186 ], [ 4.101040500000011, 43.554370999000014 ], [ 3.24056250000001, 43.212802999000019 ], [ 2.9889005, 42.864599999 ], [ 3.035430500000018, 42.8420695 ], [ 3.050192, 42.870636 ], [ 3.043504499999983, 42.83815 ], [ 3.174803999, 42.435375 ], [ 1.964552, 42.382156999000017 ], [ 1.731011, 42.492400998999983 ], [ 1.725801, 42.504401998999981 ], [ 1.7860985, 42.573658 ], [ 2.166049, 42.663917498999979 ], [ 1.949341, 43.120973 ], [ 1.6884235, 43.273554497000021 ], [ 2.029134, 43.436895497000023 ], [ 2.265415, 43.452913498999976 ], [ 2.565782500000012, 43.422958 ], [ 2.935457, 43.694664999 ], [ 3.358362, 43.913829498999974 ], [ 3.448355, 44.019103498999982 ], [ 3.263114, 44.092425499 ], [ 3.373648, 44.170759498999985 ], [ 3.120173500000021, 44.261838496999985 ], [ 2.9816755, 44.644672999000022 ], [ 3.103125, 44.884632497999974 ], [ 3.361347500000022, 44.971408 ], [ 3.862531, 44.743865997 ] ] ] } }, -{ "type": "Feature", "id": 841, "properties": { "NUTS_ID": "FR82", "STAT_LEVL_": 2, "SHAPE_AREA": 3.5958602645200002, "SHAPE_LEN": 10.0846699465 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.630051, 45.109856499999978 ], [ 7.065755, 44.713464497000018 ], [ 6.948443, 44.654741999 ], [ 6.887428, 44.361287 ], [ 7.007760500000018, 44.23670049899999 ], [ 7.714236500000027, 44.061513499 ], [ 7.529827, 43.784007997 ], [ 7.43605928, 43.769769968999981 ], [ 7.413667280000027, 43.744077703000016 ], [ 6.933721, 43.480064497 ], [ 6.621062, 43.157783500999983 ], [ 5.671879, 43.17926799899999 ], [ 4.230281, 43.460186 ], [ 4.7390595, 43.924061999 ], [ 4.6492275, 44.27036 ], [ 4.650611, 44.329802997 ], [ 4.804566, 44.303896998000027 ], [ 5.4987865, 44.115716497999983 ], [ 5.676035999000021, 44.191428498999983 ], [ 5.418397500000026, 44.424768498999981 ], [ 5.80147, 44.706777500999976 ], [ 6.355365, 44.854820499000027 ], [ 6.203923499999974, 45.01247100099999 ], [ 6.26057, 45.12684399699998 ], [ 6.630051, 45.109856499999978 ] ] ] } }, -{ "type": "Feature", "id": 848, "properties": { "NUTS_ID": "FR83", "STAT_LEVL_": 2, "SHAPE_AREA": 0.97499690593, "SHAPE_LEN": 4.4453118444299999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.402272, 41.858703499 ], [ 9.219715, 41.367603998999982 ], [ 8.788534, 41.557075497000028 ], [ 8.591134, 41.962154496999972 ], [ 8.573006498999973, 42.238570998 ], [ 8.691523500000017, 42.266464000999974 ], [ 8.573408, 42.381405 ], [ 8.727043, 42.561603499 ], [ 9.301698499999986, 42.678638501000023 ], [ 9.343248500000016, 42.999740499999973 ], [ 9.4632805, 42.986736499000017 ], [ 9.559117500000013, 42.196696997 ], [ 9.402272, 41.858703499 ] ] ] } }, -{ "type": "Feature", "id": 852, "properties": { "NUTS_ID": "FRA1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.097668405970799996, "SHAPE_LEN": 1.8847485533 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.555346499999985, 16.053240499000026 ], [ -61.6968005, 15.946588999000028 ], [ -61.80593, 16.257474498000022 ], [ -61.672612500000014, 16.324603500000023 ], [ -61.555346499999985, 16.053240499000026 ] ] ], [ [ [ -61.254871499999979, 16.256139 ], [ -61.527298499999972, 16.219122998999978 ], [ -61.541210499999977, 16.438073 ], [ -61.464057500000024, 16.513064499 ], [ -61.254871499999979, 16.256139 ] ] ] ] } }, -{ "type": "Feature", "id": 854, "properties": { "NUTS_ID": "FRA2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.079344273916300001, "SHAPE_LEN": 1.2782213923300001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.003888, 14.808371500000021 ], [ -60.857675500000028, 14.398175 ], [ -61.081969, 14.470402498999988 ], [ -61.229269, 14.822112499000013 ], [ -61.003888, 14.808371500000021 ] ] ] } }, -{ "type": "Feature", "id": 856, "properties": { "NUTS_ID": "FRA3", "STAT_LEVL_": 2, "SHAPE_AREA": 6.9029872979700002, "SHAPE_LEN": 10.9991380399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.565187, 2.516254 ], [ -52.904169, 2.190938 ], [ -53.723031, 2.31207 ], [ -54.152372500000013, 2.119626501000027 ], [ -54.587859499999979, 2.32202350099999 ], [ -54.208187, 2.7777375 ], [ -53.979807, 3.606575 ], [ -54.356726499999979, 4.047393500999988 ], [ -54.468998, 4.890381 ], [ -54.008094501000016, 5.623116499999981 ], [ -53.9683655, 5.745176500000014 ], [ -53.7992595, 5.723899501 ], [ -52.94350750000001, 5.451987499999973 ], [ -52.364701, 4.9207345 ], [ -51.813244, 4.6343435 ], [ -51.629835500000013, 4.189126499 ], [ -52.565187, 2.516254 ] ] ] } }, -{ "type": "Feature", "id": 858, "properties": { "NUTS_ID": "FRA4", "STAT_LEVL_": 2, "SHAPE_AREA": 0.177527591767, "SHAPE_LEN": 1.68429467461 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.825796500000024, -21.143524499000023 ], [ 55.797395, -21.350129498 ], [ 55.292974, -21.229784998000014 ], [ 55.283669, -20.926209498999981 ], [ 55.6477375, -20.91560449799999 ], [ 55.825796500000024, -21.143524499000023 ] ] ] } }, -{ "type": "Feature", "id": 860, "properties": { "NUTS_ID": "FRA5", "STAT_LEVL_": 2, "SHAPE_AREA": 0.027834548767099999, "SHAPE_LEN": 0.97963438771199995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.2132815, -12.873075500000027 ], [ 45.1483005, -13.000090499 ], [ 45.071559, -12.902030998999976 ], [ 45.154967, -12.92356799800001 ], [ 45.04258, -12.744023498999979 ], [ 45.088423499999976, -12.669118998999977 ], [ 45.125466999000025, -12.727415999000016 ], [ 45.236856, -12.753384998 ], [ 45.186050500000022, -12.839496 ], [ 45.2132815, -12.873075500000027 ] ] ] } }, -{ "type": "Feature", "id": 864, "properties": { "NUTS_ID": "HR03", "STAT_LEVL_": 2, "SHAPE_AREA": 2.61744815068, "SHAPE_LEN": 18.360624194500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.589105421, 45.236414152 ], [ 14.8205145, 44.970927997999979 ], [ 14.438129499000013, 45.064864499 ], [ 14.585924309, 45.238482154 ], [ 14.332406, 45.355255000999989 ], [ 14.2265825, 45.153838499000017 ], [ 13.906588, 44.768634999000028 ], [ 13.606798, 45.11697399799999 ], [ 13.489867, 45.486835497000015 ], [ 13.583067, 45.477409997 ], [ 14.109059, 45.482458496999982 ], [ 14.11819650000001, 45.48123899699999 ], [ 14.570012500000018, 45.672944497 ], [ 15.226437499999975, 45.42708799799999 ], [ 14.961522, 45.273318999000026 ], [ 15.017143, 45.122890499999983 ], [ 15.0589, 45.111690501 ], [ 15.736722, 44.935630999000011 ], [ 16.131936999, 44.454681500999982 ], [ 16.208290375999979, 44.216682898999977 ], [ 16.544348, 43.974178498000015 ], [ 16.811584499999981, 43.755492998000022 ], [ 17.450845500000014, 43.176868500000012 ], [ 17.4751225, 43.161456997000016 ], [ 17.712072499999977, 42.973003499000015 ], [ 17.581335, 42.938422999000011 ], [ 17.355711, 43.084621501000015 ], [ 16.3882865, 43.509128498999985 ], [ 16.475813, 43.534843501000012 ], [ 16.013214, 43.502506 ], [ 15.558911500000022, 43.871951997 ], [ 15.111249, 44.260101497999983 ], [ 15.598931350999976, 44.172556789 ], [ 15.2894715, 44.363227999 ], [ 14.896002, 44.696899497 ], [ 14.881313499999976, 45.034404999 ], [ 14.589105421, 45.236414152 ] ] ], [ [ [ 18.438104, 42.555705000999978 ], [ 18.525213, 42.420462997000016 ], [ 17.000639, 43.046752998999978 ], [ 17.469783999000015, 42.914893996999979 ], [ 17.6491565, 42.888923499999976 ], [ 18.438104, 42.555705000999978 ] ] ], [ [ [ 14.474727499999972, 44.95611549900002 ], [ 14.517015500000014, 44.608916998999973 ], [ 14.3020285, 44.93503199700001 ], [ 14.3602285, 45.088412999000013 ], [ 14.474727499999972, 44.95611549900002 ] ] ] ] } }, -{ "type": "Feature", "id": 872, "properties": { "NUTS_ID": "HR04", "STAT_LEVL_": 2, "SHAPE_AREA": 3.653503398, "SHAPE_LEN": 11.394978593099999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.596805, 46.475902498999972 ], [ 16.854754999000022, 46.350440999 ], [ 16.8760435, 46.320602496999982 ], [ 17.294325, 45.988544500999978 ], [ 17.651499, 45.847835499999974 ], [ 17.911642, 45.790950996999982 ], [ 18.446884, 45.737048997999977 ], [ 18.821306, 45.914382997000018 ], [ 18.889734, 45.921180497000023 ], [ 19.033942, 45.486821498999973 ], [ 19.004717, 45.435032 ], [ 19.425167499999986, 45.167692499 ], [ 19.0864565, 45.145390999000028 ], [ 19.022069499999986, 44.855353998999988 ], [ 18.531997499999989, 45.090629498 ], [ 17.143591499000024, 45.162589500000024 ], [ 16.529669, 45.226574 ], [ 16.288761, 44.995689497 ], [ 15.836288500000023, 45.22247699899998 ], [ 15.736722, 44.935630999000011 ], [ 15.0589, 45.111690501 ], [ 15.017143, 45.122890499999983 ], [ 14.961522, 45.273318999000026 ], [ 15.226437499999975, 45.42708799799999 ], [ 15.385532, 45.486580499000013 ], [ 15.277050499999973, 45.604461499000024 ], [ 15.331290500000023, 45.762854999000012 ], [ 15.404425, 45.792716997000014 ], [ 15.706404500000019, 45.97534299900002 ], [ 15.627262, 46.085953499000027 ], [ 15.7914755, 46.259327497000015 ], [ 15.8768685, 46.280055499000014 ], [ 16.301549, 46.378287996999973 ], [ 16.242148499999985, 46.490075497000021 ], [ 16.596805, 46.475902498999972 ] ] ] } }, -{ "type": "Feature", "id": 889, "properties": { "NUTS_ID": "ES41", "STAT_LEVL_": 2, "SHAPE_AREA": 10.1239716572, "SHAPE_LEN": 17.697774666800001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.238510999000027, 42.954314997999973 ], [ -4.081359, 42.761417499 ], [ -4.04593, 42.766566996999984 ], [ -4.002319, 42.830867497999975 ], [ -3.99967, 42.76893249699998 ], [ -3.815811, 42.812561 ], [ -3.945488, 43.005718496999975 ], [ -3.417681500000015, 43.133369497999979 ], [ -3.141396, 43.161483498999985 ], [ -3.0890235, 43.00158299899999 ], [ -3.0369895, 42.982185497999978 ], [ -3.286797499999977, 42.885097497 ], [ -2.8581175, 42.638168499000017 ], [ -3.13429450000001, 42.54202249799999 ], [ -2.9136375, 42.022838499999978 ], [ -2.282167500000014, 42.13168699900001 ], [ -1.8565395, 41.966388498000015 ], [ -1.825316, 41.778365999000016 ], [ -2.170485499999984, 41.318836498999985 ], [ -2.05169, 41.146857999000019 ], [ -2.418909000999975, 41.05771649899998 ], [ -2.716780500000027, 41.275680498999975 ], [ -3.207373, 41.304244998 ], [ -3.539573, 41.16499349899999 ], [ -4.160293500000023, 40.689853500000027 ], [ -4.578901, 40.217157499 ], [ -5.336016500000028, 40.115855999000019 ], [ -5.7376025, 40.29416299899998 ], [ -6.2399775, 40.485900999000023 ], [ -6.865144, 40.270694499 ], [ -6.801935, 40.861045998 ], [ -6.929903500000023, 41.029466499000023 ], [ -6.689786, 41.205241498000021 ], [ -6.479713, 41.294379999 ], [ -6.189352, 41.575046499 ], [ -6.5884615, 41.967761998000015 ], [ -6.983513500000015, 41.972903998999982 ], [ -6.784308, 42.253608499999984 ], [ -6.8227655, 42.490833001 ], [ -7.076834, 42.50812399900002 ], [ -6.824167, 42.915012499 ], [ -4.841038500000025, 43.180709499999978 ], [ -4.737022998999976, 43.02092349899999 ], [ -4.238510999000027, 42.954314997999973 ] ] ] } }, -{ "type": "Feature", "id": 899, "properties": { "NUTS_ID": "ES42", "STAT_LEVL_": 2, "SHAPE_AREA": 8.3726869842500005, "SHAPE_LEN": 16.072229926199999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.05169, 41.146857999000019 ], [ -1.6174335, 40.94374099700002 ], [ -1.545494500000018, 40.595210999000017 ], [ -1.806344, 40.39824699899998 ], [ -1.448831499999983, 40.145358497000018 ], [ -1.165154, 40.010108998000021 ], [ -1.1423615, 39.971855499000014 ], [ -1.505146500000023, 39.41801449799999 ], [ -1.161849, 39.305431499 ], [ -1.266710499999988, 39.051032500000019 ], [ -0.959359, 38.944587497999976 ], [ -0.928884499999981, 38.783839999 ], [ -1.02687, 38.655509498000015 ], [ -1.402179499999988, 38.690803500000015 ], [ -2.341602, 38.026019999000027 ], [ -2.551274001000024, 38.084118 ], [ -2.481576, 38.393101 ], [ -2.762069, 38.532779499000014 ], [ -4.268895, 38.347212997999975 ], [ -5.008071500000028, 38.715274998999973 ], [ -5.046996001000025, 38.72913349800001 ], [ -4.847362499999974, 38.882449999000016 ], [ -4.962548, 39.058776997999985 ], [ -4.687733, 39.450336499 ], [ -4.755411, 39.415759998 ], [ -4.8104735, 39.39661399900001 ], [ -4.9407835, 39.395164501000011 ], [ -4.952554500000019, 39.395038499 ], [ -5.406153, 39.877772999 ], [ -5.336016500000028, 40.115855999000019 ], [ -4.578901, 40.217157499 ], [ -4.190704, 40.297315997999988 ], [ -3.623443, 40.053848500000015 ], [ -3.161419500000022, 40.06489699799999 ], [ -3.067689, 40.157884998999975 ], [ -3.194294500000012, 40.248005998999986 ], [ -3.130407, 40.40515399899999 ], [ -3.468398, 40.689896498999985 ], [ -3.394300499999986, 41.000234498 ], [ -3.539573, 41.16499349899999 ], [ -3.207373, 41.304244998 ], [ -2.716780500000027, 41.275680498999975 ], [ -2.418909000999975, 41.05771649899998 ], [ -2.05169, 41.146857999000019 ] ] ] } }, -{ "type": "Feature", "id": 905, "properties": { "NUTS_ID": "ES43", "STAT_LEVL_": 2, "SHAPE_AREA": 4.3214174758599997, "SHAPE_LEN": 9.5166580530200005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.336016500000028, 40.115855999000019 ], [ -5.406153, 39.877772999 ], [ -4.952554500000019, 39.395038499 ], [ -4.9407835, 39.395164501000011 ], [ -4.8104735, 39.39661399900001 ], [ -4.755411, 39.415759998 ], [ -4.687733, 39.450336499 ], [ -4.962548, 39.058776997999985 ], [ -4.847362499999974, 38.882449999000016 ], [ -5.046996001000025, 38.72913349800001 ], [ -5.568977500000017, 38.432639998000013 ], [ -5.584845499999972, 38.131752 ], [ -5.874359, 38.158622998 ], [ -6.180307500000026, 37.941077998000026 ], [ -6.9317385, 38.208377998 ], [ -7.10795250000001, 38.188121500000022 ], [ -7.316636, 38.439876498999979 ], [ -7.203135, 38.75101749800001 ], [ -6.9513915, 39.024070499 ], [ -7.231467, 39.278431 ], [ -7.53490245, 39.661986891000026 ], [ -7.015405, 39.670856499000024 ], [ -6.864203, 40.011867498000015 ], [ -7.011960499999986, 40.126934 ], [ -6.9512985, 40.257445999000026 ], [ -6.865144, 40.270694499 ], [ -6.2399775, 40.485900999000023 ], [ -5.7376025, 40.29416299899998 ], [ -5.336016500000028, 40.115855999000019 ] ] ] } }, -{ "type": "Feature", "id": 909, "properties": { "NUTS_ID": "ES51", "STAT_LEVL_": 2, "SHAPE_AREA": 3.4218868096100001, "SHAPE_LEN": 8.8483194699799999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.731011, 42.492400998999983 ], [ 1.964552, 42.382156999000017 ], [ 3.174803999, 42.435375 ], [ 3.111661500000025, 42.203849498000011 ], [ 3.21998050000002, 41.92232149900002 ], [ 2.778513, 41.648807498 ], [ 1.645323500000018, 41.19562149699999 ], [ 0.966513, 41.028423498999985 ], [ 0.5152385, 40.522918498000024 ], [ 0.170789500000012, 40.732837 ], [ 0.220409500000017, 41.07143 ], [ 0.385724, 41.278839498000025 ], [ 0.335948499999972, 41.407432498999981 ], [ 0.767070499999988, 42.34881599800002 ], [ 0.660127, 42.69095249899999 ], [ 0.858215, 42.825740999 ], [ 1.442566, 42.603668001000017 ], [ 1.725801, 42.504401998999981 ], [ 1.731011, 42.492400998999983 ] ] ] } }, -{ "type": "Feature", "id": 914, "properties": { "NUTS_ID": "ES52", "STAT_LEVL_": 2, "SHAPE_AREA": 2.38760456843, "SHAPE_LEN": 8.8633648747299993 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.170789500000012, 40.732837 ], [ 0.5152385, 40.522918498000024 ], [ -0.188467, 39.721954498 ], [ -0.334561, 39.423534499000027 ], [ 0.012785310000027, 38.864592846999983 ], [ 0.205479500000024, 38.731944999 ], [ -0.301367, 38.481929498999989 ], [ -0.7621355, 37.847007997999981 ], [ -1.030276500000014, 38.097076497999979 ], [ -1.02687, 38.655509498000015 ], [ -0.928884499999981, 38.783839999 ], [ -0.959359, 38.944587497999976 ], [ -1.266710499999988, 39.051032500000019 ], [ -1.161849, 39.305431499 ], [ -1.505146500000023, 39.41801449799999 ], [ -1.1423615, 39.971855499000014 ], [ -0.912739, 39.87310750099999 ], [ -0.797643, 39.881076499000017 ], [ -0.837749501000019, 39.976817997000012 ], [ -0.279997499999979, 40.369499499000028 ], [ -0.197124499999973, 40.784457998999983 ], [ 0.170789500000012, 40.732837 ] ] ] } }, -{ "type": "Feature", "id": 918, "properties": { "NUTS_ID": "ES53", "STAT_LEVL_": 2, "SHAPE_AREA": 0.47732386063600002, "SHAPE_LEN": 5.1265061021499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.079701, 39.901542499000016 ], [ 3.1449035, 39.773849500999972 ], [ 3.3484785, 39.788887000999978 ], [ 3.455952500000024, 39.656703998000012 ], [ 3.0730825, 39.268691999 ], [ 2.344436, 39.587226998 ], [ 2.778520500000013, 39.85567899900002 ], [ 3.213000500000021, 39.955375996999976 ], [ 3.079701, 39.901542499000016 ] ] ], [ [ [ 1.423349, 38.905044498999985 ], [ 1.3711275, 38.830333498000016 ], [ 1.213064499999973, 38.901359500000012 ], [ 1.310512500000016, 39.042953499000021 ], [ 1.603850500000021, 39.091018497999983 ], [ 1.605787500000019, 39.02961349899999 ], [ 1.423349, 38.905044498999985 ] ] ], [ [ [ 4.094098, 40.05835349900002 ], [ 4.28757, 39.814689499 ], [ 3.791304, 40.016177998999979 ], [ 4.094098, 40.05835349900002 ] ] ] ] } }, -{ "type": "Feature", "id": 923, "properties": { "NUTS_ID": "ES61", "STAT_LEVL_": 2, "SHAPE_AREA": 9.0115671751199997, "SHAPE_LEN": 15.0399762471 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.341602, 38.026019999000027 ], [ -2.2076315, 37.916587999 ], [ -1.974468, 37.868480499999976 ], [ -1.976776500000028, 37.618732500000021 ], [ -1.630033, 37.375182999 ], [ -2.12434, 36.731842001000018 ], [ -2.3680915, 36.841457499 ], [ -2.700591, 36.682723997999972 ], [ -3.128691, 36.750887998999985 ], [ -3.777457500000025, 36.737926500000015 ], [ -4.418207, 36.717219999 ], [ -5.252405, 36.311275498999976 ], [ -5.339225, 36.152034997999976 ], [ -5.351522499999987, 36.152568998999982 ], [ -5.395709008999972, 36.127541227999984 ], [ -5.60843, 36.007053497000015 ], [ -6.040427500000021, 36.192378999000027 ], [ -6.440116, 36.720863498000028 ], [ -6.345561, 36.798766998000019 ], [ -6.893693499999983, 37.161465 ], [ -7.401916500000027, 37.174827498000013 ], [ -7.512691500000017, 37.526256499 ], [ -7.2632845, 37.979908 ], [ -7.002483499999983, 38.0227165 ], [ -6.9317385, 38.208377998 ], [ -6.180307500000026, 37.941077998000026 ], [ -5.874359, 38.158622998 ], [ -5.584845499999972, 38.131752 ], [ -5.568977500000017, 38.432639998000013 ], [ -5.046996001000025, 38.72913349800001 ], [ -5.008071500000028, 38.715274998999973 ], [ -4.268895, 38.347212997999975 ], [ -2.762069, 38.532779499000014 ], [ -2.481576, 38.393101 ], [ -2.551274001000024, 38.084118 ], [ -2.341602, 38.026019999000027 ] ] ] } }, -{ "type": "Feature", "id": 932, "properties": { "NUTS_ID": "ES62", "STAT_LEVL_": 2, "SHAPE_AREA": 1.17084284025, "SHAPE_LEN": 4.841243982 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.02687, 38.655509498000015 ], [ -1.030276500000014, 38.097076497999979 ], [ -0.7621355, 37.847007997999981 ], [ -0.8599795, 37.721446997999976 ], [ -0.720821, 37.605872998 ], [ -1.325323500000025, 37.562442498999985 ], [ -1.630033, 37.375182999 ], [ -1.976776500000028, 37.618732500000021 ], [ -1.974468, 37.868480499999976 ], [ -2.2076315, 37.916587999 ], [ -2.341602, 38.026019999000027 ], [ -1.402179499999988, 38.690803500000015 ], [ -1.02687, 38.655509498000015 ] ] ] } }, -{ "type": "Feature", "id": 934, "properties": { "NUTS_ID": "ES63", "STAT_LEVL_": 2, "SHAPE_AREA": 0.00054816202145000002, "SHAPE_LEN": 0.124321145465 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.35072900099999, 35.909002998 ], [ -5.34252117599999, 35.873038039999983 ], [ -5.382034499999975, 35.912606499999981 ], [ -5.35072900099999, 35.909002998 ] ] ] } }, -{ "type": "Feature", "id": 936, "properties": { "NUTS_ID": "ES64", "STAT_LEVL_": 2, "SHAPE_AREA": 0.00076802296088300005, "SHAPE_LEN": 0.13020653038499999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.950587, 35.318417999000019 ], [ -2.92736, 35.274264 ], [ -2.970093500000019, 35.289367500000026 ], [ -2.950587, 35.318417999000019 ] ] ] } }, -{ "type": "Feature", "id": 939, "properties": { "NUTS_ID": "ES70", "STAT_LEVL_": 2, "SHAPE_AREA": 0.58145106276699998, "SHAPE_LEN": 9.1537334656899993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -16.3605925, 28.379459499 ], [ -16.640173, 28.00498799799999 ], [ -16.924217, 28.350006 ], [ -16.134222, 28.5812585 ], [ -16.3605925, 28.379459499 ] ] ], [ [ [ -15.424459500000012, 27.807855497999981 ], [ -15.600111, 27.734939498000017 ], [ -15.8329905, 27.90972349899999 ], [ -15.709276000999978, 28.16573899799999 ], [ -15.4035465, 28.171691999000018 ], [ -15.424459500000012, 27.807855497999981 ] ] ], [ [ [ -14.2242965, 28.162038998000014 ], [ -14.492716, 28.083705999000017 ], [ -14.226619, 28.21153449799999 ], [ -14.016622499999983, 28.714993998000011 ], [ -13.877083500000026, 28.752040998999973 ], [ -13.922949, 28.247462998 ], [ -14.2242965, 28.162038998000014 ] ] ], [ [ [ -13.482365500000014, 28.999332498 ], [ -13.8541985, 28.862073998000028 ], [ -13.756207500000016, 29.0776095 ], [ -13.470518, 29.238542498000015 ], [ -13.464197, 29.12962349899999 ], [ -13.482365500000014, 28.999332498 ] ] ], [ [ [ -17.7602195, 28.569320999000013 ], [ -17.842235500000015, 28.452651499000012 ], [ -17.9487345, 28.840764997 ], [ -17.777729, 28.839669997999977 ], [ -17.7602195, 28.569320999000013 ] ] ], [ [ [ -17.099160500999972, 28.0943145 ], [ -17.199426500000015, 28.023731498000018 ], [ -17.3492185, 28.099218498000027 ], [ -17.318047, 28.204323999 ], [ -17.118093499999986, 28.149373998999977 ], [ -17.099160500999972, 28.0943145 ] ] ], [ [ [ -17.883365500000025, 27.80445449699999 ], [ -17.979040000999987, 27.640519998 ], [ -18.158359500000017, 27.712901499999987 ], [ -18.131494, 27.771581498999979 ], [ -18.036621001000015, 27.762228 ], [ -17.958796, 27.841646 ], [ -17.883365500000025, 27.80445449699999 ] ] ] ] } }, -{ "type": "Feature", "id": 949, "properties": { "NUTS_ID": "FI19", "STAT_LEVL_": 2, "SHAPE_AREA": 10.6142655598, "SHAPE_LEN": 16.762477543199999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.927715464000016, 63.82609472199999 ], [ 22.989051, 63.788022 ], [ 23.027271499999983, 63.788767501 ], [ 23.744085000999974, 63.675444001000017 ], [ 23.422409500000015, 63.616021 ], [ 23.696989499999972, 63.380327 ], [ 24.359008, 63.116434501000015 ], [ 24.772885499999973, 63.13336849699999 ], [ 24.772926499999983, 63.358689500000025 ], [ 25.036322499999983, 63.45807800099999 ], [ 26.138652, 63.457592 ], [ 26.039845, 62.936113501000023 ], [ 26.709129500000017, 62.452948998000011 ], [ 26.220722, 62.118562497000028 ], [ 26.53375, 61.691326996999976 ], [ 26.315036, 61.608448497999973 ], [ 25.921634, 61.78734750000001 ], [ 24.970471498999984, 61.45070549799999 ], [ 24.913933499999985, 61.324883 ], [ 23.195350500000018, 61.001223 ], [ 22.968488499999978, 61.043258 ], [ 21.419929500000023, 61.047442998 ], [ 21.7037775, 61.557694501000014 ], [ 21.27957, 61.993263 ], [ 21.366348, 62.370907 ], [ 21.08101, 62.6323175 ], [ 21.483848500000022, 62.97023950099998 ], [ 21.455967718000011, 63.012294849999989 ], [ 21.3373805, 63.0409545 ], [ 22.137469558000021, 63.261305887999981 ], [ 22.159774, 63.255317 ], [ 22.224766719, 63.291334242 ], [ 22.393028500000014, 63.333281500999988 ], [ 22.324308499999972, 63.581827499999974 ], [ 22.8713565, 63.8339785 ], [ 22.927715464000016, 63.82609472199999 ] ] ] } }, -{ "type": "Feature", "id": 955, "properties": { "NUTS_ID": "FI1B", "STAT_LEVL_": 2, "SHAPE_AREA": 1.57447489412, "SHAPE_LEN": 8.9623940527800006 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.208359499999972, 60.7579925 ], [ 26.539152999, 60.594937500000015 ], [ 26.453932, 60.487652500000024 ], [ 26.009723687000019, 60.316479188000017 ], [ 26.010455, 60.321357 ], [ 25.993759220000015, 60.337336162999975 ], [ 25.9122875, 60.366004498 ], [ 25.863847, 60.323478497999986 ], [ 25.936341, 60.26062 ], [ 25.7869765, 60.237285997000015 ], [ 25.627897500000017, 60.326478 ], [ 25.7202395, 60.339234498 ], [ 25.6696885, 60.383327501 ], [ 25.432495500000016, 60.222521 ], [ 25.216344105000019, 60.21141365599999 ], [ 24.575224, 60.178468501 ], [ 24.202054, 60.027420999000014 ], [ 23.839481499999977, 60.018403001000024 ], [ 23.956796, 60.004310997 ], [ 23.692564563000019, 59.972044676999985 ], [ 23.727499, 59.943315996000024 ], [ 23.3554325, 59.917364998999972 ], [ 23.186451499999976, 59.827804001 ], [ 22.932191499999988, 59.824022 ], [ 23.118828807999989, 60.000895125999989 ], [ 23.028183, 60.101486500000021 ], [ 23.64895, 60.201563997999983 ], [ 23.900492499999984, 60.649758500000019 ], [ 25.192922, 60.724738499000011 ], [ 25.110965998999973, 60.818584500999975 ], [ 26.208359499999972, 60.7579925 ] ] ] } }, -{ "type": "Feature", "id": 957, "properties": { "NUTS_ID": "FI1C", "STAT_LEVL_": 2, "SHAPE_AREA": 5.4280936690199999, "SHAPE_LEN": 20.848036445599998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.483068, 61.32283449900001 ], [ 26.513659500000017, 61.274324001000025 ], [ 26.929526, 61.210034501 ], [ 27.205819500000018, 61.162468000999979 ], [ 29.559279, 61.722068001000025 ], [ 30.143966499999976, 61.85223799900001 ], [ 27.991279500000019, 60.668979 ], [ 27.797273500000017, 60.54534300099999 ], [ 26.453932, 60.487652500000024 ], [ 26.539152999, 60.594937500000015 ], [ 26.208359499999972, 60.7579925 ], [ 25.110965998999973, 60.818584500999975 ], [ 25.192922, 60.724738499000011 ], [ 23.900492499999984, 60.649758500000019 ], [ 23.64895, 60.201563997999983 ], [ 23.028183, 60.101486500000021 ], [ 22.87021, 60.1982375 ], [ 23.079409, 60.375627 ], [ 22.454013998999983, 60.265965000999984 ], [ 22.604136499999981, 60.373881499999982 ], [ 22.50068, 60.418537497999978 ], [ 22.295877999000027, 60.384289497999987 ], [ 22.253048428, 60.411757148999982 ], [ 22.247403, 60.419651498 ], [ 22.24190927799998, 60.418904734000023 ], [ 21.846205, 60.63480049899999 ], [ 21.585519498999986, 60.491007001000014 ], [ 21.572621, 60.500252499 ], [ 21.592718, 60.517643501 ], [ 21.5593745, 60.559245001000022 ], [ 21.462105, 60.581443501000024 ], [ 21.1746465, 60.87034399700002 ], [ 21.419929500000023, 61.047442998 ], [ 22.968488499999978, 61.043258 ], [ 23.195350500000018, 61.001223 ], [ 24.913933499999985, 61.324883 ], [ 24.970471498999984, 61.45070549799999 ], [ 25.921634, 61.78734750000001 ], [ 26.315036, 61.608448497999973 ], [ 26.243660001000023, 61.446450001000017 ], [ 26.483068, 61.32283449900001 ] ] ] } }, -{ "type": "Feature", "id": 963, "properties": { "NUTS_ID": "FI1D", "STAT_LEVL_": 2, "SHAPE_AREA": 43.6803386383, "SHAPE_LEN": 45.300125503300002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.8007675, 68.869286000999978 ], [ 28.4339175, 68.539672 ], [ 28.6461425, 68.196304500999986 ], [ 30.0170405, 67.673556500000018 ], [ 29.033642, 66.942135001 ], [ 29.572938500000021, 66.432856 ], [ 30.13848, 65.668682000999979 ], [ 29.7547315, 65.497369498000012 ], [ 29.64493, 64.866495499999985 ], [ 30.086534500000027, 64.773990498999979 ], [ 30.044892, 64.402029997999989 ], [ 30.553427999, 64.132247999000015 ], [ 29.971917, 63.757165499999985 ], [ 31.586729, 62.90870200099999 ], [ 30.143966499999976, 61.85223799900001 ], [ 29.559279, 61.722068001000025 ], [ 27.205819500000018, 61.162468000999979 ], [ 26.929526, 61.210034501 ], [ 26.513659500000017, 61.274324001000025 ], [ 26.483068, 61.32283449900001 ], [ 26.243660001000023, 61.446450001000017 ], [ 26.315036, 61.608448497999973 ], [ 26.53375, 61.691326996999976 ], [ 26.220722, 62.118562497000028 ], [ 26.709129500000017, 62.452948998000011 ], [ 26.039845, 62.936113501000023 ], [ 26.138652, 63.457592 ], [ 25.036322499999983, 63.45807800099999 ], [ 24.772926499999983, 63.358689500000025 ], [ 24.772885499999973, 63.13336849699999 ], [ 24.359008, 63.116434501000015 ], [ 23.696989499999972, 63.380327 ], [ 23.422409500000015, 63.616021 ], [ 23.744085000999974, 63.675444001000017 ], [ 23.027271499999983, 63.788767501 ], [ 23.61733300100002, 64.048771998 ], [ 24.539910500000019, 64.814548496999976 ], [ 25.487671, 64.9614365 ], [ 25.366445, 65.427499499000021 ], [ 25.084607499000015, 65.588949496999987 ], [ 24.8877245, 65.665782 ], [ 24.155129, 65.816027 ], [ 23.6455995, 66.3014085 ], [ 23.995160500999987, 66.819708999 ], [ 23.3940235, 67.485820999 ], [ 23.652348999000026, 67.958793001 ], [ 21.888943000999973, 68.5843835 ], [ 20.548636499999986, 69.059968501000014 ], [ 21.2788215, 69.311883998999974 ], [ 21.9836115, 69.072893500000021 ], [ 22.374526, 68.716667 ], [ 24.903199500000028, 68.554591 ], [ 25.777502500000026, 69.018279001 ], [ 25.702101, 69.253661501000011 ], [ 25.950607, 69.6965505 ], [ 27.984522, 70.01396549899999 ], [ 29.336974, 69.478310500000021 ], [ 28.8057925, 69.111147 ], [ 28.92968, 69.051905 ], [ 28.415766500000018, 68.915452501 ], [ 28.8007675, 68.869286000999978 ] ] ] } }, -{ "type": "Feature", "id": 972, "properties": { "NUTS_ID": "FI20", "STAT_LEVL_": 2, "SHAPE_AREA": 0.144539654431, "SHAPE_LEN": 1.72365985858 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.916036500000018, 60.422706501999983 ], [ 20.2753515, 60.28527 ], [ 20.168312500000013, 60.17514399800001 ], [ 20.043062, 60.102843001 ], [ 19.980941499999972, 60.104172 ], [ 19.9577145, 60.060943501 ], [ 19.513948, 60.178337 ], [ 19.916036500000018, 60.422706501999983 ] ] ] } }, -{ "type": "Feature", "id": 976, "properties": { "NUTS_ID": "FR10", "STAT_LEVL_": 2, "SHAPE_AREA": 1.46444370405, "SHAPE_LEN": 5.2383928090699996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.4851835, 48.851910498999985 ], [ 3.557419164, 48.616713788000027 ], [ 3.414788999, 48.390268499 ], [ 3.049454, 48.360027499000012 ], [ 2.936316, 48.163391499999989 ], [ 2.476016500000014, 48.1296365 ], [ 2.402663, 48.3207175 ], [ 1.99409, 48.286584 ], [ 1.9221465, 48.457599499000025 ], [ 1.501526500000011, 48.941051997999978 ], [ 1.608799, 49.077894 ], [ 1.704359, 49.232196997000017 ], [ 2.5905285, 49.079653999000016 ], [ 3.07188, 49.117553500999975 ], [ 3.4851835, 48.851910498999985 ] ] ] } }, -{ "type": "Feature", "id": 986, "properties": { "NUTS_ID": "FR21", "STAT_LEVL_": 2, "SHAPE_AREA": 3.1271931257, "SHAPE_LEN": 9.1080439492800007 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.969431, 49.801825999000016 ], [ 5.153738499999974, 49.717926 ], [ 5.393511, 49.617111 ], [ 5.107566500000019, 49.584689498999978 ], [ 4.950990499999989, 49.23686749699999 ], [ 4.9884305, 48.684422000999973 ], [ 5.470055, 48.420926499000018 ], [ 5.8847235, 47.92604649899999 ], [ 5.37408, 47.604537999 ], [ 4.958992, 47.761870499 ], [ 4.704233, 48.020234999000024 ], [ 4.293421500000022, 47.92567349699999 ], [ 3.914676, 47.975023 ], [ 3.414788999, 48.390268499 ], [ 3.557419164, 48.616713788000027 ], [ 3.4851835, 48.851910498999985 ], [ 3.678962499000022, 49.01829399899998 ], [ 3.585201500999972, 49.038866998 ], [ 3.643940499999985, 49.312713497 ], [ 4.0479745, 49.405644000999985 ], [ 4.233133, 49.957828498000026 ], [ 4.432494, 49.941615996999985 ], [ 4.796697, 50.148677998999972 ], [ 4.896794, 50.137420498999973 ], [ 4.793194, 49.98199900100002 ], [ 4.851578, 49.793255000999977 ], [ 4.969431, 49.801825999000016 ] ] ] } }, -{ "type": "Feature", "id": 991, "properties": { "NUTS_ID": "FR22", "STAT_LEVL_": 2, "SHAPE_AREA": 2.42706245274, "SHAPE_LEN": 7.5659416253899998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.140853, 49.978759997 ], [ 4.233133, 49.957828498000026 ], [ 4.0479745, 49.405644000999985 ], [ 3.643940499999985, 49.312713497 ], [ 3.585201500999972, 49.038866998 ], [ 3.678962499000022, 49.01829399899998 ], [ 3.4851835, 48.851910498999985 ], [ 3.07188, 49.117553500999975 ], [ 2.5905285, 49.079653999000016 ], [ 1.704359, 49.232196997000017 ], [ 1.7139305, 49.409224999 ], [ 1.783834, 49.758309499 ], [ 1.379698, 50.06500999799999 ], [ 1.641539500000022, 50.352149997000026 ], [ 3.090252, 50.053740499000014 ], [ 3.1727045, 50.011996497999974 ], [ 4.140853, 49.978759997 ] ] ] } }, -{ "type": "Feature", "id": 995, "properties": { "NUTS_ID": "FR23", "STAT_LEVL_": 2, "SHAPE_AREA": 1.51357029991, "SHAPE_LEN": 4.9154017226500004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.704359, 49.232196997000017 ], [ 1.608799, 49.077894 ], [ 1.501526500000011, 48.941051997999978 ], [ 0.814824499999986, 48.670163499000012 ], [ 0.412810499999978, 48.950626499 ], [ 0.297224500000027, 49.429863001 ], [ 0.3389785, 49.4409255 ], [ 0.065609, 49.512576998999975 ], [ 0.192298, 49.706962498999985 ], [ 1.379698, 50.06500999799999 ], [ 1.783834, 49.758309499 ], [ 1.7139305, 49.409224999 ], [ 1.704359, 49.232196997000017 ] ] ] } }, -{ "type": "Feature", "id": 998, "properties": { "NUTS_ID": "FR24", "STAT_LEVL_": 2, "SHAPE_AREA": 4.8955427252600003, "SHAPE_LEN": 9.6271320915699992 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.936316, 48.163391499999989 ], [ 3.12857, 47.983377001 ], [ 2.8519905, 47.757863 ], [ 2.976535500000011, 47.569424497999989 ], [ 2.874630500000023, 47.520424999 ], [ 3.074774499, 47.029995000999975 ], [ 3.032063, 46.794909501 ], [ 2.28104350000001, 46.420403497 ], [ 2.167784499999982, 46.424068998999985 ], [ 1.4151855, 46.347215001 ], [ 1.177279, 46.383947998 ], [ 0.867469, 46.748216499000023 ], [ 0.05383, 47.163733499999978 ], [ 0.230000500000017, 47.608397498999977 ], [ 0.614432500000021, 47.694215497000016 ], [ 0.841217498999981, 48.103059501000018 ], [ 0.797658499000022, 48.19445500099999 ], [ 0.814824499999986, 48.670163499000012 ], [ 1.501526500000011, 48.941051997999978 ], [ 1.9221465, 48.457599499000025 ], [ 1.99409, 48.286584 ], [ 2.402663, 48.3207175 ], [ 2.476016500000014, 48.1296365 ], [ 2.936316, 48.163391499999989 ] ] ] } }, -{ "type": "Feature", "id": 1005, "properties": { "NUTS_ID": "FR25", "STAT_LEVL_": 2, "SHAPE_AREA": 2.1604044366599999, "SHAPE_LEN": 7.9769272330999996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.297224500000027, 49.429863001 ], [ 0.412810499999978, 48.950626499 ], [ 0.814824499999986, 48.670163499000012 ], [ 0.797658499000022, 48.19445500099999 ], [ 0.35289, 48.459688 ], [ -0.054527, 48.3820045 ], [ -0.234124, 48.561847500999988 ], [ -0.86036, 48.501458499000023 ], [ -1.070164499999976, 48.508492 ], [ -1.42794, 48.461915001000023 ], [ -1.571089500000028, 48.626442 ], [ -1.391047, 48.644653496999979 ], [ -1.942384, 49.725959999 ], [ -1.266492500000027, 49.69559849699999 ], [ -1.3077705, 49.545719 ], [ -1.11962, 49.35556800099999 ], [ 0.297224500000027, 49.429863001 ] ] ] } }, -{ "type": "Feature", "id": 1009, "properties": { "NUTS_ID": "FR26", "STAT_LEVL_": 2, "SHAPE_AREA": 3.7043378695800002, "SHAPE_LEN": 9.0217169556400005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.37408, 47.604537999 ], [ 5.477542, 47.60871849900002 ], [ 5.375406999, 47.460167499000022 ], [ 5.518537499999979, 47.304183998999974 ], [ 5.255232499999977, 46.979887498999972 ], [ 5.440604, 46.637912 ], [ 5.310563499000011, 46.446769999000026 ], [ 4.953853998999989, 46.513422999 ], [ 4.780208500000015, 46.176675999 ], [ 4.388074500000016, 46.219790499 ], [ 3.899538499000016, 46.275907999000026 ], [ 3.998868500000015, 46.46486699899998 ], [ 3.629422499999976, 46.749456497999972 ], [ 3.032063, 46.794909501 ], [ 3.074774499, 47.029995000999975 ], [ 2.874630500000023, 47.520424999 ], [ 2.976535500000011, 47.569424497999989 ], [ 2.8519905, 47.757863 ], [ 3.12857, 47.983377001 ], [ 2.936316, 48.163391499999989 ], [ 3.049454, 48.360027499000012 ], [ 3.414788999, 48.390268499 ], [ 3.914676, 47.975023 ], [ 4.293421500000022, 47.92567349699999 ], [ 4.704233, 48.020234999000024 ], [ 4.958992, 47.761870499 ], [ 5.37408, 47.604537999 ] ] ] } }, -{ "type": "Feature", "id": 1015, "properties": { "NUTS_ID": "FR30", "STAT_LEVL_": 2, "SHAPE_AREA": 1.5419431428799999, "SHAPE_LEN": 6.4342402718200002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.863276, 50.708343496999987 ], [ 3.0187085, 50.773532999 ], [ 3.098481, 50.779019 ], [ 3.176996, 50.756164497999976 ], [ 3.245294, 50.713009498000019 ], [ 3.286492, 50.52756899799999 ], [ 3.615081499999974, 50.490399001000014 ], [ 3.65551, 50.461735498999985 ], [ 3.710389, 50.303165499999977 ], [ 4.027774500000021, 50.358330498999976 ], [ 4.140853, 49.978759997 ], [ 3.1727045, 50.011996497999974 ], [ 3.090252, 50.053740499000014 ], [ 1.641539500000022, 50.352149997000026 ], [ 1.580953, 50.8695525 ], [ 2.067705, 51.00649999699999 ], [ 2.546011, 51.089381998000022 ], [ 2.607036, 50.91268949900001 ], [ 2.863276, 50.708343496999987 ] ] ] } }, -{ "type": "Feature", "id": 1019, "properties": { "NUTS_ID": "FR41", "STAT_LEVL_": 2, "SHAPE_AREA": 2.8873361388399998, "SHAPE_LEN": 8.2960198920299995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.818117, 49.5463105 ], [ 5.893386, 49.496944498 ], [ 6.367107499999975, 49.469507001000011 ], [ 6.556986, 49.419208498999978 ], [ 6.723465499999975, 49.218828998999982 ], [ 7.101069, 49.155998 ], [ 7.36875550000002, 49.16145799899999 ], [ 7.635651, 49.053950499999985 ], [ 7.536287500000014, 48.932412996999972 ], [ 7.067510500000026, 49.066366501 ], [ 6.954672, 48.893890498000019 ], [ 7.30645, 48.769112498000027 ], [ 7.079356, 48.536418500000025 ], [ 7.123163499999976, 48.513587998999981 ], [ 7.198287, 48.310471499000016 ], [ 6.846175500000015, 47.822942496999985 ], [ 6.8235335, 47.813051 ], [ 6.1470185, 48.01552049899999 ], [ 5.8847235, 47.92604649899999 ], [ 5.470055, 48.420926499000018 ], [ 4.9884305, 48.684422000999973 ], [ 4.950990499999989, 49.23686749699999 ], [ 5.107566500000019, 49.584689498999978 ], [ 5.393511, 49.617111 ], [ 5.470882999000025, 49.49723799899999 ], [ 5.734555999, 49.545690501000024 ], [ 5.818117, 49.5463105 ] ] ] } }, -{ "type": "Feature", "id": 1024, "properties": { "NUTS_ID": "FR42", "STAT_LEVL_": 2, "SHAPE_AREA": 1.05138959987, "SHAPE_LEN": 5.59639523334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.635651, 49.053950499999985 ], [ 7.910654500000021, 49.045163499000012 ], [ 8.068407499999978, 48.999316497999985 ], [ 8.232632998999975, 48.966571500999976 ], [ 7.9596305, 48.718580998999983 ], [ 7.680713, 48.257266996999988 ], [ 7.5779195, 48.121391999000025 ], [ 7.577291, 48.115654999000014 ], [ 7.545990500000016, 47.743573998999977 ], [ 7.589039, 47.589877999 ], [ 7.5551595, 47.56456399699999 ], [ 7.510905499999978, 47.502582497999981 ], [ 7.445019, 47.46172349699998 ], [ 7.42113949899999, 47.446387999000024 ], [ 7.380894, 47.431892499000014 ], [ 7.326466, 47.439853500000027 ], [ 7.130353, 47.503040499 ], [ 6.846175500000015, 47.822942496999985 ], [ 7.198287, 48.310471499000016 ], [ 7.123163499999976, 48.513587998999981 ], [ 7.079356, 48.536418500000025 ], [ 7.30645, 48.769112498000027 ], [ 6.954672, 48.893890498000019 ], [ 7.067510500000026, 49.066366501 ], [ 7.536287500000014, 48.932412996999972 ], [ 7.635651, 49.053950499999985 ] ] ] } }, -{ "type": "Feature", "id": 1027, "properties": { "NUTS_ID": "FR43", "STAT_LEVL_": 2, "SHAPE_AREA": 1.9444617739700001, "SHAPE_LEN": 6.28624551483 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.846175500000015, 47.822942496999985 ], [ 7.130353, 47.503040499 ], [ 6.939186, 47.433704499999976 ], [ 6.879806, 47.352439998000023 ], [ 7.061636, 47.34373449899999 ], [ 6.858914, 47.165294499000026 ], [ 6.460011, 46.851551498999982 ], [ 6.138106, 46.557666997000013 ], [ 6.064003, 46.416228997000019 ], [ 5.4736565, 46.264284001000021 ], [ 5.310563499000011, 46.446769999000026 ], [ 5.440604, 46.637912 ], [ 5.255232499999977, 46.979887498999972 ], [ 5.518537499999979, 47.304183998999974 ], [ 5.375406999, 47.460167499000022 ], [ 5.477542, 47.60871849900002 ], [ 5.37408, 47.604537999 ], [ 5.8847235, 47.92604649899999 ], [ 6.1470185, 48.01552049899999 ], [ 6.8235335, 47.813051 ], [ 6.846175500000015, 47.822942496999985 ] ] ] } }, -{ "type": "Feature", "id": 1033, "properties": { "NUTS_ID": "FR51", "STAT_LEVL_": 2, "SHAPE_AREA": 3.8763044061, "SHAPE_LEN": 10.085981059 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.797658499000022, 48.19445500099999 ], [ 0.841217498999981, 48.103059501000018 ], [ 0.614432500000021, 47.694215497000016 ], [ 0.230000500000017, 47.608397498999977 ], [ 0.05383, 47.163733499999978 ], [ -0.102116, 47.064799998000012 ], [ -0.891964, 46.975820499 ], [ -0.537795001, 46.386463999 ], [ -0.7504715, 46.304254499000024 ], [ -1.129406, 46.310271999 ], [ -1.8123445, 46.49341949799998 ], [ -2.141985, 46.81897349799999 ], [ -1.980413, 47.028907999000012 ], [ -2.547108001000026, 47.292373499 ], [ -2.458493, 47.448119999000028 ], [ -2.097034, 47.63135649899999 ], [ -1.245885, 47.776717498999972 ], [ -1.238248, 47.809992497 ], [ -1.015823501, 48.003285999000013 ], [ -1.070164499999976, 48.508492 ], [ -0.86036, 48.501458499000023 ], [ -0.234124, 48.561847500999988 ], [ -0.054527, 48.3820045 ], [ 0.35289, 48.459688 ], [ 0.797658499000022, 48.19445500099999 ] ] ] } }, -{ "type": "Feature", "id": 1037, "properties": { "NUTS_ID": "HU10", "STAT_LEVL_": 2, "SHAPE_AREA": 0.86330293364900001, "SHAPE_LEN": 4.1065573863199996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.666329, 47.588550000999987 ], [ 19.990462499999978, 47.346628001 ], [ 20.094639, 47.0074265 ], [ 18.965907500000014, 47.028965 ], [ 18.688433499999974, 47.577067499 ], [ 18.848478, 47.818228001000023 ], [ 18.7548155, 47.975082499 ], [ 18.928392, 48.056832499 ], [ 19.086134500000014, 47.838170499 ], [ 19.570937, 47.734900001000028 ], [ 19.666329, 47.588550000999987 ] ] ] } }, -{ "type": "Feature", "id": 1041, "properties": { "NUTS_ID": "HU21", "STAT_LEVL_": 2, "SHAPE_AREA": 1.37681274166, "SHAPE_LEN": 5.9550441362599997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.965907500000014, 47.028965 ], [ 18.925097, 46.85716850099999 ], [ 18.636275, 46.687217498999985 ], [ 18.210897499999987, 46.77816150000001 ], [ 18.205248499999982, 46.971633000999987 ], [ 17.419067499999983, 46.750656497000023 ], [ 17.074528499999985, 47.04871349699999 ], [ 17.1723915, 47.432483998 ], [ 17.737528, 47.47290749699999 ], [ 17.7652275, 47.27287850099998 ], [ 17.883888, 47.389586998000027 ], [ 17.893923, 47.739456999000026 ], [ 18.848478, 47.818228001000023 ], [ 18.688433499999974, 47.577067499 ], [ 18.965907500000014, 47.028965 ] ] ] } }, -{ "type": "Feature", "id": 1045, "properties": { "NUTS_ID": "HU22", "STAT_LEVL_": 2, "SHAPE_AREA": 1.26060733998, "SHAPE_LEN": 7.0741646506400002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.893923, 47.739456999000026 ], [ 17.883888, 47.389586998000027 ], [ 17.7652275, 47.27287850099998 ], [ 17.737528, 47.47290749699999 ], [ 17.1723915, 47.432483998 ], [ 17.074528499999985, 47.04871349699999 ], [ 17.419067499999983, 46.750656497000023 ], [ 17.2214945, 46.671697499 ], [ 17.187541, 46.429071997999984 ], [ 16.8760435, 46.320602496999982 ], [ 16.854754999000022, 46.350440999 ], [ 16.596805, 46.475902498999972 ], [ 16.3707935, 46.722243499 ], [ 16.113849, 46.869067998999981 ], [ 16.508267499999988, 47.001255999000023 ], [ 16.4337615, 47.352918499999987 ], [ 16.64622, 47.446597 ], [ 16.652076, 47.6229035 ], [ 16.421846, 47.664704498999981 ], [ 17.093074, 47.708236 ], [ 17.1607975, 48.006656501 ], [ 17.247427500000015, 48.012008998999988 ], [ 17.705436500000019, 47.758992498999987 ], [ 17.893923, 47.739456999000026 ] ] ] } }, -{ "type": "Feature", "id": 1049, "properties": { "NUTS_ID": "HU23", "STAT_LEVL_": 2, "SHAPE_AREA": 1.6763555730499999, "SHAPE_LEN": 5.7023003946699999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.925097, 46.85716850099999 ], [ 19.006243499999982, 46.704923496999982 ], [ 18.802291, 46.108764999000016 ], [ 18.821306, 45.914382997000018 ], [ 18.446884, 45.737048997999977 ], [ 17.911642, 45.790950996999982 ], [ 17.651499, 45.847835499999974 ], [ 17.294325, 45.988544500999978 ], [ 16.8760435, 46.320602496999982 ], [ 17.187541, 46.429071997999984 ], [ 17.2214945, 46.671697499 ], [ 17.419067499999983, 46.750656497000023 ], [ 18.205248499999982, 46.971633000999987 ], [ 18.210897499999987, 46.77816150000001 ], [ 18.636275, 46.687217498999985 ], [ 18.925097, 46.85716850099999 ] ] ] } }, -{ "type": "Feature", "id": 1054, "properties": { "NUTS_ID": "HU31", "STAT_LEVL_": 2, "SHAPE_AREA": 1.57920442329, "SHAPE_LEN": 7.1439435300999996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.121077500000013, 48.378311499 ], [ 21.122180500000013, 47.96182749899998 ], [ 20.8279715, 47.659018496999977 ], [ 20.771698, 47.654476500999976 ], [ 20.3941565, 47.420463498 ], [ 19.993662500000028, 47.672739501000024 ], [ 19.666329, 47.588550000999987 ], [ 19.570937, 47.734900001000028 ], [ 19.086134500000014, 47.838170499 ], [ 18.928392, 48.056832499 ], [ 19.0143225, 48.077736499000025 ], [ 20.051879, 48.16770399699999 ], [ 20.463937, 48.463967 ], [ 21.440056, 48.585232999000027 ], [ 21.721957, 48.351050499 ], [ 22.121077500000013, 48.378311499 ] ] ] } }, -{ "type": "Feature", "id": 1058, "properties": { "NUTS_ID": "HU32", "STAT_LEVL_": 2, "SHAPE_AREA": 2.0871446893500001, "SHAPE_LEN": 8.2411672073099993 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.896270500000014, 47.954120500999977 ], [ 22.1808375, 47.600094499000022 ], [ 22.12832, 47.598089496999989 ], [ 21.658955, 47.022131498000022 ], [ 21.2478405, 47.006699998999977 ], [ 21.300893499999972, 47.150679001000015 ], [ 20.9920975, 47.23228799899999 ], [ 20.4242655, 46.803470998000023 ], [ 20.061163, 46.80639099699999 ], [ 20.094639, 47.0074265 ], [ 19.990462499999978, 47.346628001 ], [ 19.666329, 47.588550000999987 ], [ 19.993662500000028, 47.672739501000024 ], [ 20.3941565, 47.420463498 ], [ 20.771698, 47.654476500999976 ], [ 20.8279715, 47.659018496999977 ], [ 21.122180500000013, 47.96182749899998 ], [ 22.121077500000013, 48.378311499 ], [ 22.155306, 48.403396499 ], [ 22.896270500000014, 47.954120500999977 ] ] ] } }, -{ "type": "Feature", "id": 1062, "properties": { "NUTS_ID": "HU33", "STAT_LEVL_": 2, "SHAPE_AREA": 2.1759118862800002, "SHAPE_LEN": 7.8165427205800002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.658955, 47.022131498000022 ], [ 21.441398, 46.651467 ], [ 21.103170499999976, 46.262590497000019 ], [ 20.7756, 46.275909999000021 ], [ 20.705303500000014, 46.160937499 ], [ 20.264296, 46.1263735 ], [ 19.86539, 46.150334499 ], [ 19.698099, 46.187930999 ], [ 19.3027095, 45.991550500000017 ], [ 18.889734, 45.921180497000023 ], [ 18.821306, 45.914382997000018 ], [ 18.802291, 46.108764999000016 ], [ 19.006243499999982, 46.704923496999982 ], [ 18.925097, 46.85716850099999 ], [ 18.965907500000014, 47.028965 ], [ 20.094639, 47.0074265 ], [ 20.061163, 46.80639099699999 ], [ 20.4242655, 46.803470998000023 ], [ 20.9920975, 47.23228799899999 ], [ 21.300893499999972, 47.150679001000015 ], [ 21.2478405, 47.006699998999977 ], [ 21.658955, 47.022131498000022 ] ] ] } }, -{ "type": "Feature", "id": 1068, "properties": { "NUTS_ID": "IE01", "STAT_LEVL_": 2, "SHAPE_AREA": 4.3523965868300003, "SHAPE_LEN": 17.462404901799999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.177718, 54.464973500999974 ], [ -7.565956, 54.126514499 ], [ -7.0286355, 54.421306497999979 ], [ -6.623778500000014, 54.036548497000013 ], [ -6.2680155, 54.102337 ], [ -6.1031835, 53.99999950099999 ], [ -6.3811025, 54.012704 ], [ -6.247098, 53.722454500000026 ], [ -6.749452500000018, 53.913742997999975 ], [ -7.343828499999972, 53.799062498000012 ], [ -7.063349, 53.468781501000024 ], [ -6.939413, 52.88005449799999 ], [ -7.674081, 52.781294 ], [ -7.674682691999976, 52.781863515999987 ], [ -8.081461029000025, 53.166883229 ], [ -8.359738204999985, 52.971357996999984 ], [ -9.008489770999972, 53.140603919 ], [ -9.009308499999975, 53.140817498999979 ], [ -9.009085012000014, 53.141198864999978 ], [ -8.933212, 53.270670997000025 ], [ -9.63143794299998, 53.296942788000024 ], [ -9.630072499999983, 53.297348496999973 ], [ -9.63144528700002, 53.297345429000018 ], [ -10.179155499999979, 53.406988999000021 ], [ -10.189941, 53.556088500999977 ], [ -9.80073826, 53.608912261 ], [ -9.900522, 53.764440997 ], [ -9.546066, 53.88420849900001 ], [ -10.070641500000022, 54.27627250099999 ], [ -9.132258499999978, 54.162360498 ], [ -8.508256, 54.216985497999985 ], [ -8.134833, 54.603353501000015 ], [ -8.7886565, 54.688915996999981 ], [ -8.281798499999979, 55.158847998 ], [ -7.339527, 55.374958 ], [ -6.924876, 55.233694500000013 ], [ -7.256068500000026, 55.067034998 ], [ -7.534506, 54.74713900099999 ], [ -7.921372, 54.696544499000026 ], [ -7.703411501, 54.608287999000027 ], [ -8.177718, 54.464973500999974 ] ] ] } }, -{ "type": "Feature", "id": 1070, "properties": { "NUTS_ID": "ITC2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.38508475661300001, "SHAPE_LEN": 2.6806923866800001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.86407650000001, 45.916750499999978 ], [ 7.936649, 45.724340499999983 ], [ 7.895811, 45.590028 ], [ 7.104723, 45.468454499000018 ], [ 6.8023685, 45.778562 ], [ 7.044886, 45.922412999000016 ], [ 7.86407650000001, 45.916750499999978 ] ] ] } }, -{ "type": "Feature", "id": 1072, "properties": { "NUTS_ID": "ITC3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.59362874578299996, "SHAPE_LEN": 5.9188564593599997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.686725500000023, 44.365921999000022 ], [ 10.018769500000019, 44.044535998000015 ], [ 9.511344, 44.216675497999972 ], [ 8.63301, 44.379803498 ], [ 8.135350999000025, 43.938940498000022 ], [ 7.529827, 43.784007997 ], [ 7.714236500000027, 44.061513499 ], [ 8.015629499999989, 44.110676499000022 ], [ 8.252819499, 44.528740501000016 ], [ 8.261596, 44.519424496999989 ], [ 8.576182, 44.509206001 ], [ 9.202995499999986, 44.613476499 ], [ 9.493363, 44.555858999 ], [ 9.4790595, 44.40924050000001 ], [ 9.686725500000023, 44.365921999000022 ] ] ] } }, -{ "type": "Feature", "id": 1077, "properties": { "NUTS_ID": "ITC4", "STAT_LEVL_": 2, "SHAPE_AREA": 2.7614940722400001, "SHAPE_LEN": 9.6008424673199997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.452801, 46.530682999000021 ], [ 10.622145499999988, 46.448101999000016 ], [ 10.515751500000022, 46.34322449699999 ], [ 10.502388, 45.830373 ], [ 10.840176499999984, 45.832758501 ], [ 10.631074, 45.609512500999983 ], [ 10.6546555, 45.415826998999989 ], [ 11.205502500000023, 45.109487499000011 ], [ 11.426765499999988, 44.950076 ], [ 11.246231500000022, 44.951427997 ], [ 10.887909499999978, 44.914265999 ], [ 10.504344, 44.922417999 ], [ 10.464030499999978, 44.937171501000023 ], [ 10.083503, 45.04395850100002 ], [ 9.8911015, 45.130898 ], [ 9.548684499999979, 45.132648499000027 ], [ 9.3246605, 44.69 ], [ 9.200074, 44.686099496999987 ], [ 8.887709, 45.059148999 ], [ 8.5477975, 45.168147497 ], [ 8.51356, 45.313278501000013 ], [ 8.8429155, 45.393841 ], [ 8.706896500000028, 45.558316 ], [ 8.593811, 45.828224998999985 ], [ 8.713936, 46.097271998999986 ], [ 8.912147, 45.830444999 ], [ 9.088803499999983, 45.896897001000013 ], [ 8.988276499999984, 45.972282498000027 ], [ 9.1593775, 46.169601 ], [ 9.248531500000013, 46.233768000999987 ], [ 9.714149500000019, 46.292708499000014 ], [ 10.2448745, 46.622091997999974 ], [ 10.452801, 46.530682999000021 ] ] ] } }, -{ "type": "Feature", "id": 1091, "properties": { "NUTS_ID": "ITF1", "STAT_LEVL_": 2, "SHAPE_AREA": 1.1910737036100001, "SHAPE_LEN": 4.6806817078299998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.779646999000022, 42.070021499 ], [ 14.485359, 41.759622998999987 ], [ 14.2297575, 41.877056497000012 ], [ 13.941038499, 41.68794399699999 ], [ 13.296299499999975, 41.948588500000028 ], [ 13.0305745, 42.115353 ], [ 13.1913805, 42.587491 ], [ 13.39403149899999, 42.591233999 ], [ 13.3577745, 42.694069997999975 ], [ 13.9157315, 42.894577 ], [ 14.1469065, 42.530596499000012 ], [ 14.253960499000016, 42.444798499 ], [ 14.779646999000022, 42.070021499 ] ] ] } }, -{ "type": "Feature", "id": 1096, "properties": { "NUTS_ID": "ITF2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.47183014395400003, "SHAPE_LEN": 3.2448607619200001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.138178499999981, 41.927007499000013 ], [ 14.934101, 41.619428998999979 ], [ 15.0076555, 41.486356999 ], [ 14.5051, 41.382461498 ], [ 14.382519, 41.443216499000016 ], [ 13.977928, 41.462454 ], [ 13.941038499, 41.68794399699999 ], [ 14.2297575, 41.877056497000012 ], [ 14.485359, 41.759622998999987 ], [ 14.779646999000022, 42.070021499 ], [ 15.138178499999981, 41.927007499000013 ] ] ] } }, -{ "type": "Feature", "id": 1099, "properties": { "NUTS_ID": "ITF3", "STAT_LEVL_": 2, "SHAPE_AREA": 1.43525192794, "SHAPE_LEN": 6.1603078757600001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.542921, 41.05582350100002 ], [ 15.335024499999975, 40.834843998 ], [ 15.8065315, 40.272222498000019 ], [ 15.644945499000016, 40.042790498999977 ], [ 15.356917, 39.999090997999986 ], [ 14.787251500000025, 40.666180498000017 ], [ 14.747420499999976, 40.67764649899999 ], [ 14.692414499999984, 40.634065998999972 ], [ 14.528490499999975, 40.607152498 ], [ 14.46862, 40.620201499000018 ], [ 14.324673, 40.569084998999983 ], [ 14.460677499999974, 40.742930500999989 ], [ 14.0321305, 40.898838997999974 ], [ 13.760795499999972, 41.223167997000019 ], [ 13.8737185, 41.338294001 ], [ 13.977928, 41.462454 ], [ 14.382519, 41.443216499000016 ], [ 14.5051, 41.382461498 ], [ 15.0076555, 41.486356999 ], [ 15.046827, 41.443310499 ], [ 15.149196500000016, 41.280412497999976 ], [ 15.542921, 41.05582350100002 ] ] ] } }, -{ "type": "Feature", "id": 1105, "properties": { "NUTS_ID": "ITF4", "STAT_LEVL_": 2, "SHAPE_AREA": 1.9638188166499999, "SHAPE_LEN": 9.5842599956000001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.867264, 40.397845499000027 ], [ 16.719678499, 40.481393500000024 ], [ 16.72499, 40.713814499000023 ], [ 16.2440985, 40.838008499000011 ], [ 16.202532, 40.917511 ], [ 15.870311, 41.139899999000022 ], [ 15.542921, 41.05582350100002 ], [ 15.149196500000016, 41.280412497999976 ], [ 15.046827, 41.443310499 ], [ 15.0076555, 41.486356999 ], [ 14.934101, 41.619428998999979 ], [ 15.138178499999981, 41.927007499000013 ], [ 16.17653150000001, 41.884789500000011 ], [ 15.89714, 41.603231999 ], [ 16.024738500000012, 41.425590499 ], [ 16.542302499000016, 41.229441 ], [ 17.388981, 40.89186349900001 ], [ 18.097453, 40.515377999 ], [ 18.517056, 40.135147999000026 ], [ 18.369068, 39.793742001 ], [ 18.047947500000021, 39.92847849899999 ], [ 17.763504499000021, 40.295507 ], [ 17.127098, 40.517620500000021 ], [ 16.867264, 40.397845499000027 ] ] ] } }, -{ "type": "Feature", "id": 1112, "properties": { "NUTS_ID": "ITF5", "STAT_LEVL_": 2, "SHAPE_AREA": 1.09753088693, "SHAPE_LEN": 4.5340961084 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.867264, 40.397845499000027 ], [ 16.644317, 40.119095999000024 ], [ 16.398881, 40.055399998999974 ], [ 16.337835499999983, 39.935806997999975 ], [ 15.75595850000002, 39.923496 ], [ 15.644945499000016, 40.042790498999977 ], [ 15.8065315, 40.272222498000019 ], [ 15.335024499999975, 40.834843998 ], [ 15.542921, 41.05582350100002 ], [ 15.870311, 41.139899999000022 ], [ 16.202532, 40.917511 ], [ 16.2440985, 40.838008499000011 ], [ 16.72499, 40.713814499000023 ], [ 16.719678499, 40.481393500000024 ], [ 16.867264, 40.397845499000027 ] ] ] } }, -{ "type": "Feature", "id": 1115, "properties": { "NUTS_ID": "ITF6", "STAT_LEVL_": 2, "SHAPE_AREA": 1.60604070436, "SHAPE_LEN": 7.0096335973499997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5820845, 38.46979049700002 ], [ 16.0638095, 37.924418996999975 ], [ 15.678212, 37.954119498000011 ], [ 15.636063, 38.231473498000014 ], [ 15.652291742999978, 38.247265964 ], [ 15.687350835000018, 38.281382564000012 ], [ 15.918956, 38.50676149899999 ], [ 15.8481175, 38.658864498000014 ], [ 16.2137535, 38.810439998999982 ], [ 16.093153, 39.048742998000023 ], [ 15.75595850000002, 39.923496 ], [ 16.337835499999983, 39.935806997999975 ], [ 16.398881, 40.055399998999974 ], [ 16.644317, 40.119095999000024 ], [ 16.527955500000019, 39.668659500999979 ], [ 17.025064499999985, 39.483578498999975 ], [ 17.188881, 39.020471998 ], [ 16.890732, 38.92712849899999 ], [ 16.566985499999987, 38.765481998999974 ], [ 16.5820845, 38.46979049700002 ] ] ] } }, -{ "type": "Feature", "id": 1122, "properties": { "NUTS_ID": "ITG1", "STAT_LEVL_": 2, "SHAPE_AREA": 2.5704041635100001, "SHAPE_LEN": 8.4805904823600002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.572551, 38.234204998999985 ], [ 15.2580825, 37.807223997999984 ], [ 15.091499, 37.3577085 ], [ 15.315962500000012, 37.035012498000015 ], [ 15.116582, 36.674955999000019 ], [ 15.000358, 36.702847497999983 ], [ 14.493577, 36.78673349799999 ], [ 14.337594500000023, 37.001979999000014 ], [ 14.036207, 37.10602799899999 ], [ 12.896496, 37.577118498 ], [ 12.672787, 37.560080998999979 ], [ 12.4429295, 37.811051998999972 ], [ 12.561744499999975, 38.065561998000021 ], [ 12.731687, 38.180297499 ], [ 12.811005, 38.081515497999987 ], [ 12.9772625, 38.040205999000023 ], [ 13.36569350000002, 38.182289498999978 ], [ 13.7438295, 37.97024649799999 ], [ 14.183486, 38.019396498999981 ], [ 15.652927, 38.26710399699999 ], [ 15.572551, 38.234204998999985 ] ] ] } }, -{ "type": "Feature", "id": 1132, "properties": { "NUTS_ID": "ITG2", "STAT_LEVL_": 2, "SHAPE_AREA": 2.54113479455, "SHAPE_LEN": 7.0390948148400003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.423461998999983, 41.176741000999982 ], [ 9.748871999000016, 40.660406997999985 ], [ 9.8270205, 40.512112499000011 ], [ 9.626526999000021, 40.224876998000013 ], [ 9.7352045, 40.075661998999976 ], [ 9.6511185, 39.549323997999977 ], [ 9.555865, 39.133966997000016 ], [ 9.1099865, 39.214018501 ], [ 8.859653, 38.877469498999972 ], [ 8.612392, 38.957787998000015 ], [ 8.368104499000026, 39.213810500000022 ], [ 8.393, 39.446529499 ], [ 8.5022545, 39.713006999000015 ], [ 8.399809, 40.407568498999979 ], [ 8.135010500000021, 40.736348998999972 ], [ 8.201709, 40.97256649799999 ], [ 8.4171275, 40.83831349899998 ], [ 8.802688499999988, 40.931047998 ], [ 9.163662, 41.235624001000019 ], [ 9.423461998999983, 41.176741000999982 ] ] ] } }, -{ "type": "Feature", "id": 1142, "properties": { "NUTS_ID": "ITH1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.91392241406899999, "SHAPE_LEN": 5.0580670730400001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.2407455, 47.069168499 ], [ 12.143811, 46.913779998 ], [ 12.477924, 46.679835497999989 ], [ 11.828336499999978, 46.508914499000014 ], [ 11.20649, 46.21977949699999 ], [ 10.9786995, 46.483954 ], [ 10.622145499999988, 46.448101999000016 ], [ 10.452801, 46.530682999000021 ], [ 10.4696515, 46.854909 ], [ 11.02225, 46.765410498999984 ], [ 11.164281500000016, 46.965722500000027 ], [ 11.627199500000017, 47.013299 ], [ 12.136014, 47.0806675 ], [ 12.2407455, 47.069168499 ] ] ] } }, -{ "type": "Feature", "id": 1144, "properties": { "NUTS_ID": "ITH2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.68980963493299996, "SHAPE_LEN": 4.16031414413 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.840176499999984, 45.832758501 ], [ 10.502388, 45.830373 ], [ 10.515751500000022, 46.34322449699999 ], [ 10.622145499999988, 46.448101999000016 ], [ 10.9786995, 46.483954 ], [ 11.20649, 46.21977949699999 ], [ 11.828336499999978, 46.508914499000014 ], [ 11.7744025, 46.358237997 ], [ 11.962298499999974, 46.187860998000019 ], [ 11.684318500000018, 45.984077999000021 ], [ 11.373413500000026, 45.983213997 ], [ 11.138337499999977, 45.697088499000017 ], [ 10.840176499999984, 45.832758501 ] ] ] } }, -{ "type": "Feature", "id": 1146, "properties": { "NUTS_ID": "ITH3", "STAT_LEVL_": 2, "SHAPE_AREA": 2.0197477502700001, "SHAPE_LEN": 9.1559164488700002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.690635, 46.656972000999986 ], [ 12.731392998999979, 46.634288 ], [ 12.498703, 46.412222500999974 ], [ 12.320955498999979, 46.2689145 ], [ 12.495829, 46.152560499 ], [ 12.4005345, 46.041996501000028 ], [ 12.661673, 45.792440999 ], [ 12.779838, 45.854448500999979 ], [ 12.979058, 45.834048997000025 ], [ 13.098785501, 45.644532997 ], [ 12.434162500000014, 45.424485996999977 ], [ 12.631836, 45.534338499 ], [ 12.413683999, 45.544310500999984 ], [ 12.132562, 45.300370499999985 ], [ 12.200494, 45.257337 ], [ 12.2045665, 45.197675998000022 ], [ 12.330571500000019, 45.1605505 ], [ 12.328777, 45.151860999 ], [ 12.302155605999985, 45.13788754699999 ], [ 12.279706042999976, 45.123266828 ], [ 12.399056499999972, 44.792615501 ], [ 12.0980285, 44.971468999000024 ], [ 11.426765499999988, 44.950076 ], [ 11.205502500000023, 45.109487499000011 ], [ 10.6546555, 45.415826998999989 ], [ 10.631074, 45.609512500999983 ], [ 10.840176499999984, 45.832758501 ], [ 11.138337499999977, 45.697088499000017 ], [ 11.373413500000026, 45.983213997 ], [ 11.684318500000018, 45.984077999000021 ], [ 11.962298499999974, 46.187860998000019 ], [ 11.7744025, 46.358237997 ], [ 11.828336499999978, 46.508914499000014 ], [ 12.477924, 46.679835497999989 ], [ 12.690635, 46.656972000999986 ] ] ] } }, -{ "type": "Feature", "id": 1154, "properties": { "NUTS_ID": "ITH4", "STAT_LEVL_": 2, "SHAPE_AREA": 0.90366658890200002, "SHAPE_LEN": 5.4317396789899997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.714184999, 46.522703499999977 ], [ 13.684032, 46.437472501 ], [ 13.3754925, 46.29823249899999 ], [ 13.664347500000019, 46.177549999 ], [ 13.496938999, 46.051334999 ], [ 13.597145, 45.81952250099999 ], [ 13.596243, 45.807937501000026 ], [ 13.9186565, 45.63351749899999 ], [ 13.7228235, 45.594725497000013 ], [ 13.579783, 45.786951499 ], [ 13.40649350000001, 45.725175001000025 ], [ 13.130853, 45.771844499999986 ], [ 13.098785501, 45.644532997 ], [ 12.979058, 45.834048997000025 ], [ 12.779838, 45.854448500999979 ], [ 12.661673, 45.792440999 ], [ 12.4005345, 46.041996501000028 ], [ 12.495829, 46.152560499 ], [ 12.320955498999979, 46.2689145 ], [ 12.498703, 46.412222500999974 ], [ 12.731392998999979, 46.634288 ], [ 13.504249500000014, 46.566303998000024 ], [ 13.714184999, 46.522703499999977 ] ] ] } }, -{ "type": "Feature", "id": 1159, "properties": { "NUTS_ID": "ITH5", "STAT_LEVL_": 2, "SHAPE_AREA": 2.5819292947200001, "SHAPE_LEN": 9.11749788813 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.504344, 44.922417999 ], [ 10.887909499999978, 44.914265999 ], [ 11.246231500000022, 44.951427997 ], [ 11.426765499999988, 44.950076 ], [ 12.0980285, 44.971468999000024 ], [ 12.399056499999972, 44.792615501 ], [ 12.269892, 44.630007497 ], [ 12.384282, 44.224726499999974 ], [ 12.450349, 44.162189496999986 ], [ 12.75078, 43.970601500999976 ], [ 12.669299, 43.823227498999984 ], [ 12.493956, 43.91554650099999 ], [ 12.513435500000014, 43.991269497000019 ], [ 12.4046075, 43.955678501000023 ], [ 12.4177, 43.899029997000014 ], [ 12.2837975, 43.764898997999978 ], [ 12.107464, 43.75375349699999 ], [ 11.98652850000002, 43.761913998000011 ], [ 11.710189, 43.877430498000024 ], [ 11.715906500000017, 44.122540499000024 ], [ 11.524959500000023, 44.157639999000025 ], [ 11.202439500000025, 44.100721 ], [ 11.049449, 44.090229998999973 ], [ 10.814787, 44.11617449900001 ], [ 10.624078, 44.120351501000016 ], [ 10.470149, 44.226041001 ], [ 10.253875, 44.268566998999972 ], [ 10.142054499999972, 44.353852999000026 ], [ 9.686725500000023, 44.365921999000022 ], [ 9.4790595, 44.40924050000001 ], [ 9.493363, 44.555858999 ], [ 9.202995499999986, 44.613476499 ], [ 9.200074, 44.686099496999987 ], [ 9.3246605, 44.69 ], [ 9.548684499999979, 45.132648499000027 ], [ 9.8911015, 45.130898 ], [ 10.083503, 45.04395850100002 ], [ 10.464030499999978, 44.937171501000023 ], [ 10.504344, 44.922417999 ] ] ] } }, -{ "type": "Feature", "id": 1170, "properties": { "NUTS_ID": "ITI1", "STAT_LEVL_": 2, "SHAPE_AREA": 2.5111235389100002, "SHAPE_LEN": 8.2573723067299998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.2837975, 43.764898997999978 ], [ 12.371335499999986, 43.709004500999981 ], [ 12.213856, 43.610824499999978 ], [ 12.025227, 43.415556998999989 ], [ 12.2237225, 43.296245498000019 ], [ 11.961263499999973, 43.166890498999976 ], [ 11.952102500000024, 42.900970497 ], [ 11.958612500000015, 42.874307497000018 ], [ 11.933317, 42.869329999 ], [ 11.894987500000013, 42.834653499000012 ], [ 11.746037, 42.78574249899998 ], [ 11.804794500000014, 42.643982998000013 ], [ 11.449938499999973, 42.377670501000011 ], [ 11.0979815, 42.393149499 ], [ 11.1765795, 42.541544 ], [ 10.7056725, 42.9418645 ], [ 10.499046, 42.93527050099999 ], [ 10.528247498999974, 43.231603999000015 ], [ 10.299847, 43.581928999000013 ], [ 10.258118, 43.815146998999978 ], [ 10.143476, 43.97542049899999 ], [ 10.018769500000019, 44.044535998000015 ], [ 9.686725500000023, 44.365921999000022 ], [ 10.142054499999972, 44.353852999000026 ], [ 10.253875, 44.268566998999972 ], [ 10.470149, 44.226041001 ], [ 10.624078, 44.120351501000016 ], [ 10.814787, 44.11617449900001 ], [ 11.049449, 44.090229998999973 ], [ 11.202439500000025, 44.100721 ], [ 11.524959500000023, 44.157639999000025 ], [ 11.715906500000017, 44.122540499000024 ], [ 11.710189, 43.877430498000024 ], [ 11.98652850000002, 43.761913998000011 ], [ 12.107464, 43.75375349699999 ], [ 12.2837975, 43.764898997999978 ] ] ] } }, -{ "type": "Feature", "id": 1181, "properties": { "NUTS_ID": "ITI2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.919179259857, "SHAPE_LEN": 4.2686462331100001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.189226, 42.733565499 ], [ 12.896352, 42.616417999000021 ], [ 12.444709, 42.398799499 ], [ 11.894987500000013, 42.834653499000012 ], [ 11.933317, 42.869329999 ], [ 11.958612500000015, 42.874307497000018 ], [ 11.952102500000024, 42.900970497 ], [ 11.961263499999973, 43.166890498999976 ], [ 12.2237225, 43.296245498000019 ], [ 12.025227, 43.415556998999989 ], [ 12.213856, 43.610824499999978 ], [ 12.767457, 43.459829996999986 ], [ 12.862358, 43.2112325 ], [ 12.895834499999978, 42.964570998999989 ], [ 13.235287500000027, 42.867662999 ], [ 13.189226, 42.733565499 ] ] ] } }, -{ "type": "Feature", "id": 1184, "properties": { "NUTS_ID": "ITI3", "STAT_LEVL_": 2, "SHAPE_AREA": 1.00375511097, "SHAPE_LEN": 4.93569426052 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.9157315, 42.894577 ], [ 13.3577745, 42.694069997999975 ], [ 13.189226, 42.733565499 ], [ 13.235287500000027, 42.867662999 ], [ 12.895834499999978, 42.964570998999989 ], [ 12.862358, 43.2112325 ], [ 12.767457, 43.459829996999986 ], [ 12.213856, 43.610824499999978 ], [ 12.371335499999986, 43.709004500999981 ], [ 12.2837975, 43.764898997999978 ], [ 12.4177, 43.899029997000014 ], [ 12.493956, 43.91554650099999 ], [ 12.669299, 43.823227498999984 ], [ 12.75078, 43.970601500999976 ], [ 13.172615, 43.75034599899999 ], [ 13.6420965, 43.474142498999981 ], [ 13.742970499000023, 43.29414699900002 ], [ 13.849453, 43.066659497999979 ], [ 13.9157315, 42.894577 ] ] ] } }, -{ "type": "Feature", "id": 1190, "properties": { "NUTS_ID": "ITI4", "STAT_LEVL_": 2, "SHAPE_AREA": 1.8973496858000001, "SHAPE_LEN": 7.5266030483100002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.189226, 42.733565499 ], [ 13.3577745, 42.694069997999975 ], [ 13.39403149899999, 42.591233999 ], [ 13.1913805, 42.587491 ], [ 13.0305745, 42.115353 ], [ 13.296299499999975, 41.948588500000028 ], [ 13.941038499, 41.68794399699999 ], [ 13.977928, 41.462454 ], [ 13.8737185, 41.338294001 ], [ 13.760795499999972, 41.223167997000019 ], [ 13.067982, 41.221979 ], [ 12.7733215, 41.416263999000023 ], [ 11.733844, 42.15805899899999 ], [ 11.449938499999973, 42.377670501000011 ], [ 11.804794500000014, 42.643982998000013 ], [ 11.746037, 42.78574249899998 ], [ 11.894987500000013, 42.834653499000012 ], [ 12.444709, 42.398799499 ], [ 12.896352, 42.616417999000021 ], [ 13.189226, 42.733565499 ] ], [ [ 12.4466885, 41.901744998000026 ], [ 12.458003, 41.901485498999989 ], [ 12.45582, 41.907197499 ], [ 12.4466885, 41.901744998000026 ] ] ] } }, -{ "type": "Feature", "id": 1198, "properties": { "NUTS_ID": "LI00", "STAT_LEVL_": 2, "SHAPE_AREA": 0.018972630538699999, "SHAPE_LEN": 0.59777272911599999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.607078, 47.0607745 ], [ 9.4760475, 47.051797498999974 ], [ 9.530749, 47.270581000999982 ], [ 9.620580500000017, 47.151645499999972 ], [ 9.607078, 47.0607745 ] ] ] } }, -{ "type": "Feature", "id": 1202, "properties": { "NUTS_ID": "LT00", "STAT_LEVL_": 2, "SHAPE_AREA": 9.1183198946200008, "SHAPE_LEN": 14.746266998499999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.91819, 56.440865 ], [ 25.0920375, 56.186041998 ], [ 25.821386500000017, 56.052179 ], [ 26.0461545, 55.944105998999987 ], [ 26.630365, 55.680666998999982 ], [ 26.553886, 55.388916000999984 ], [ 26.8356225, 55.285648498 ], [ 26.743454, 55.254102998 ], [ 25.779577500000016, 54.854839501000015 ], [ 25.762614, 54.5768945 ], [ 25.5319225, 54.342031498999972 ], [ 25.779838, 54.160037000999978 ], [ 25.497109500000022, 54.309776499 ], [ 24.835949500000027, 54.149027499 ], [ 24.435035500000026, 53.901003 ], [ 23.51465, 53.956559997999989 ], [ 23.321498500000018, 54.25332599799998 ], [ 22.792095500000016, 54.363358996999978 ], [ 22.588968, 55.070251498 ], [ 21.651070999000012, 55.179983500999981 ], [ 21.271226238999986, 55.244369351999978 ], [ 21.2643495, 55.245534997999982 ], [ 21.064238, 56.069136999000023 ], [ 21.978209, 56.385142998999982 ], [ 22.635563499999989, 56.368168 ], [ 22.920517, 56.39914299899999 ], [ 24.1518, 56.253348501 ], [ 24.91819, 56.440865 ] ] ] } }, -{ "type": "Feature", "id": 1215, "properties": { "NUTS_ID": "LU00", "STAT_LEVL_": 2, "SHAPE_AREA": 0.334562602948, "SHAPE_LEN": 2.34710743195 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.137662499999976, 50.129951499000015 ], [ 6.4749625, 49.821274999000025 ], [ 6.380052499999977, 49.551104999000017 ], [ 6.367107499999975, 49.469507001000011 ], [ 5.893386, 49.496944498 ], [ 5.818117, 49.5463105 ], [ 5.910688, 49.662388001000011 ], [ 5.746319, 49.853595 ], [ 6.0248995, 50.182779498 ], [ 6.137662499999976, 50.129951499000015 ] ] ] } }, -{ "type": "Feature", "id": 1219, "properties": { "NUTS_ID": "LV00", "STAT_LEVL_": 2, "SHAPE_AREA": 9.6020568119899998, "SHAPE_LEN": 18.2246422222 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.351579, 57.51823699900001 ], [ 27.690777, 57.37056099900002 ], [ 27.8701565, 57.28979499899998 ], [ 27.6594445, 56.8343655 ], [ 28.192765, 56.448565998999982 ], [ 28.154555500000015, 56.169843501 ], [ 27.615505499999983, 55.787071501000014 ], [ 26.630365, 55.680666998999982 ], [ 26.0461545, 55.944105998999987 ], [ 25.821386500000017, 56.052179 ], [ 25.0920375, 56.186041998 ], [ 24.91819, 56.440865 ], [ 24.1518, 56.253348501 ], [ 22.920517, 56.39914299899999 ], [ 22.635563499999989, 56.368168 ], [ 21.978209, 56.385142998999982 ], [ 21.064238, 56.069136999000023 ], [ 20.97067850000002, 56.352584497 ], [ 21.05211, 56.823620999000013 ], [ 21.3748955, 57.00309699799999 ], [ 21.419337, 57.290952499000014 ], [ 21.7031505, 57.5685305 ], [ 22.6050035, 57.758573999000021 ], [ 23.146890499999984, 57.316258 ], [ 23.304514, 57.064289499999973 ], [ 23.934532499999989, 57.006370496999978 ], [ 24.119202499999972, 57.086290001 ], [ 24.410199499999976, 57.266025501 ], [ 24.352817500000015, 57.876556500999982 ], [ 24.834082500000022, 57.9727795 ], [ 25.046307, 58.040146000999982 ], [ 26.056459, 57.848431496999979 ], [ 26.524905499999988, 57.516247497999984 ], [ 27.351579, 57.51823699900001 ] ] ] } }, -{ "type": "Feature", "id": 1228, "properties": { "NUTS_ID": "ME00", "STAT_LEVL_": 2, "SHAPE_AREA": 1.46919018022, "SHAPE_LEN": 5.89019509358 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.525213, 42.420462997000016 ], [ 18.438104, 42.555705000999978 ], [ 18.5672495, 42.651405497999974 ], [ 18.491927998999984, 42.983962997999981 ], [ 18.683405, 43.245486998999979 ], [ 19.224069, 43.527541 ], [ 20.063936500000011, 43.006823999 ], [ 20.352928500000019, 42.833381498999984 ], [ 20.024653, 42.765138498999988 ], [ 20.0763, 42.555823498999985 ], [ 19.621872, 42.589744498000016 ], [ 19.282484, 42.180015502 ], [ 19.372067, 41.850320497999974 ], [ 18.689521633000027, 42.464353484000014 ], [ 18.525213, 42.420462997000016 ] ] ] } }, -{ "type": "Feature", "id": 1232, "properties": { "NUTS_ID": "MK00", "STAT_LEVL_": 2, "SHAPE_AREA": 2.70884348404, "SHAPE_LEN": 6.7098309700699996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.9275915, 41.338539498999978 ], [ 22.879178500000023, 41.340652998 ], [ 22.732037, 41.146391498000014 ], [ 22.332052, 41.120272500999988 ], [ 22.216216, 41.170457498000019 ], [ 21.929438, 41.100350498000012 ], [ 21.787378, 40.9311255 ], [ 20.980204500000013, 40.855665 ], [ 20.837823, 40.927682999000012 ], [ 20.515577, 41.230955500999983 ], [ 20.456284499999981, 41.554024001000016 ], [ 20.557774, 41.581870502000015 ], [ 20.594286, 41.877327498 ], [ 21.10894, 42.206170998 ], [ 21.2126975, 42.110701001 ], [ 21.4443185, 42.234930498999972 ], [ 21.58694650000001, 42.262817498 ], [ 22.3602065, 42.311157001000026 ], [ 22.510412, 42.15515849799999 ], [ 22.867214, 42.022199496999974 ], [ 22.968327499999987, 41.51983549900001 ], [ 22.9275915, 41.338539498999978 ] ] ] } }, -{ "type": "Feature", "id": 1243, "properties": { "NUTS_ID": "MT00", "STAT_LEVL_": 2, "SHAPE_AREA": 0.0251866693234, "SHAPE_LEN": 1.05686311101 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.5720435, 35.849754497999982 ], [ 14.535398, 35.807502998000018 ], [ 14.416679499999987, 35.828189499000018 ], [ 14.342219999, 35.873474498 ], [ 14.319842, 35.970368 ], [ 14.376091499999973, 35.987453999000024 ], [ 14.350481, 35.969952498999987 ], [ 14.5720435, 35.849754497999982 ] ] ], [ [ [ 14.336181, 36.032258499000022 ], [ 14.218846, 36.020974497999987 ], [ 14.186361, 36.036271999 ], [ 14.184842, 36.074078498 ], [ 14.300056499999982, 36.057194998999989 ], [ 14.336181, 36.032258499000022 ] ] ] ] } }, -{ "type": "Feature", "id": 1248, "properties": { "NUTS_ID": "NL11", "STAT_LEVL_": 2, "SHAPE_AREA": 0.34887343422400002, "SHAPE_LEN": 2.8031276956500002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.208935, 53.243064498000024 ], [ 7.202794499999982, 53.113281498999982 ], [ 7.092692, 52.83820099899998 ], [ 6.935702, 52.993362499 ], [ 6.81381, 53.071048497999982 ], [ 6.315237, 53.094051498999988 ], [ 6.176817, 53.159450499 ], [ 6.1913015, 53.410937999 ], [ 6.882578, 53.440654999 ], [ 6.874905, 53.408012998 ], [ 7.0927125, 53.25701749699999 ], [ 7.208935, 53.243064498000024 ] ] ] } }, -{ "type": "Feature", "id": 1252, "properties": { "NUTS_ID": "NL12", "STAT_LEVL_": 2, "SHAPE_AREA": 0.44830530217199999, "SHAPE_LEN": 3.0220122170099999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.315237, 53.094051498999988 ], [ 6.369053, 52.921973499999979 ], [ 6.119814, 52.854267000999982 ], [ 5.819826499999976, 52.81731750099999 ], [ 5.795148499999982, 52.806499498999983 ], [ 5.377261499999975, 52.764805 ], [ 5.167425499999979, 52.998798498999975 ], [ 5.164383499999985, 53.000910501000021 ], [ 5.4112285, 53.151724498000021 ], [ 6.1913015, 53.410937999 ], [ 6.176817, 53.159450499 ], [ 6.315237, 53.094051498999988 ] ] ] } }, -{ "type": "Feature", "id": 1256, "properties": { "NUTS_ID": "NL13", "STAT_LEVL_": 2, "SHAPE_AREA": 0.32480128497, "SHAPE_LEN": 2.5535842840699998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.092692, 52.83820099899998 ], [ 7.006229500000018, 52.63876299899999 ], [ 6.709732499999973, 52.627823498999987 ], [ 6.629429500000015, 52.669658500000025 ], [ 6.1630035, 52.680061498999976 ], [ 6.119814, 52.854267000999982 ], [ 6.369053, 52.921973499999979 ], [ 6.315237, 53.094051498999988 ], [ 6.81381, 53.071048497999982 ], [ 6.935702, 52.993362499 ], [ 7.092692, 52.83820099899998 ] ] ] } }, -{ "type": "Feature", "id": 1261, "properties": { "NUTS_ID": "NL21", "STAT_LEVL_": 2, "SHAPE_AREA": 0.45840828681399998, "SHAPE_LEN": 3.8003197204700001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.709732499999973, 52.627823498999987 ], [ 6.697865499999978, 52.486285998000028 ], [ 6.987941499999977, 52.469540999 ], [ 7.065685, 52.241372999000021 ], [ 6.760465, 52.118569499999978 ], [ 6.381997500000011, 52.246086000999981 ], [ 6.166411499999981, 52.231045 ], [ 6.109792500000026, 52.440574501000015 ], [ 5.864311, 52.518169496999974 ], [ 5.777970499999981, 52.607532499 ], [ 6.017299499999979, 52.643230499000026 ], [ 5.795148499999982, 52.806499498999983 ], [ 5.819826499999976, 52.81731750099999 ], [ 6.119814, 52.854267000999982 ], [ 6.1630035, 52.680061498999976 ], [ 6.629429500000015, 52.669658500000025 ], [ 6.709732499999973, 52.627823498999987 ] ] ] } }, -{ "type": "Feature", "id": 1265, "properties": { "NUTS_ID": "NL22", "STAT_LEVL_": 2, "SHAPE_AREA": 0.69184857152400003, "SHAPE_LEN": 4.753381876 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.760465, 52.118569499999978 ], [ 6.828513, 51.9640665 ], [ 6.4077795, 51.828092001000016 ], [ 6.167766, 51.900804499 ], [ 5.953192, 51.747845998 ], [ 5.8651585, 51.757407999 ], [ 5.597879499999976, 51.828082999 ], [ 5.128057500000011, 51.73761 ], [ 5.000534, 51.820937999000023 ], [ 5.149456, 51.933452499 ], [ 5.606011500000022, 51.943248498 ], [ 5.404633, 52.249629998999978 ], [ 5.864311, 52.518169496999974 ], [ 6.109792500000026, 52.440574501000015 ], [ 6.166411499999981, 52.231045 ], [ 6.381997500000011, 52.246086000999981 ], [ 6.760465, 52.118569499999978 ] ] ] } }, -{ "type": "Feature", "id": 1272, "properties": { "NUTS_ID": "IE02", "STAT_LEVL_": 2, "SHAPE_AREA": 5.0044245269100003, "SHAPE_LEN": 16.034226797799999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.102773, 53.210773 ], [ -6.144516501, 52.737696498999981 ], [ -6.360401500000023, 52.174297998999975 ], [ -7.842156, 51.954218498999978 ], [ -8.534105, 51.603961498999979 ], [ -9.820953499999973, 51.44911749900001 ], [ -9.4395065, 51.723395000999972 ], [ -10.143066499999975, 51.597052999000027 ], [ -10.359855687999982, 51.89811573899999 ], [ -10.292081, 51.9134095 ], [ -10.305404416999977, 51.91783544499998 ], [ -9.792653, 52.155574499000011 ], [ -10.472409, 52.180784501 ], [ -9.365306771, 52.572083917999976 ], [ -9.365192, 52.572124499999973 ], [ -8.733330465999984, 52.662677988999974 ], [ -8.72813801, 52.663422141000012 ], [ -8.728047772000025, 52.663435361999973 ], [ -8.728093624999985, 52.663433558 ], [ -8.733924531000014, 52.66327281299999 ], [ -9.545411424, 52.640890680999973 ], [ -9.546329543000013, 52.640865521000023 ], [ -9.546003731999974, 52.641486854999982 ], [ -9.282234397000025, 53.14464463600001 ], [ -9.282228877000023, 53.144654906000028 ], [ -9.282189335999988, 53.14465521599999 ], [ -9.009308499999975, 53.140817498999979 ], [ -9.008489770999972, 53.140603919 ], [ -8.359738204999985, 52.971357996999984 ], [ -8.081461029000025, 53.166883229 ], [ -7.674682691999976, 52.781863515999987 ], [ -7.674081, 52.781294 ], [ -6.939413, 52.88005449799999 ], [ -7.063349, 53.468781501000024 ], [ -7.343828499999972, 53.799062498000012 ], [ -6.749452500000018, 53.913742997999975 ], [ -6.247098, 53.722454500000026 ], [ -6.2148995, 53.633406998999988 ], [ -6.102773, 53.210773 ] ] ] } }, -{ "type": "Feature", "id": 1280, "properties": { "NUTS_ID": "IS00", "STAT_LEVL_": 2, "SHAPE_AREA": 19.582305420200001, "SHAPE_LEN": 42.765015966100002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.194012499999985, 66.537420000999987 ], [ -15.7608105, 66.280061499999988 ], [ -14.530650501000025, 66.377677 ], [ -15.1874295, 66.107847999 ], [ -14.604863500000022, 65.959309 ], [ -14.841373499999975, 65.725313001000018 ], [ -13.606742500999985, 65.510168 ], [ -13.495021, 65.076342496999985 ], [ -14.962440500000014, 64.23983099899999 ], [ -18.177745, 63.458595998000021 ], [ -22.007397, 63.835987500999977 ], [ -22.13086850000002, 63.836598001000027 ], [ -22.749017, 63.970331498 ], [ -22.125507, 64.040599 ], [ -21.3700475, 64.380325998999979 ], [ -22.031621500000028, 64.303023999 ], [ -22.4159795, 64.812200999000027 ], [ -24.04781, 64.87882700099999 ], [ -21.8073225, 65.025850000999981 ], [ -21.7099895, 65.15945799799999 ], [ -22.560879, 65.169345998999972 ], [ -21.681208, 65.451475 ], [ -24.532042499999989, 65.503079 ], [ -24.099384, 65.805268499000022 ], [ -23.171936500000015, 65.774955998 ], [ -23.868307, 65.886556499999983 ], [ -23.182204500000012, 65.837784498000019 ], [ -23.819687, 66.034912 ], [ -23.478353, 66.194693500000028 ], [ -22.360858, 65.925525999 ], [ -22.976494, 66.222132499999987 ], [ -22.362860500000011, 66.2698555 ], [ -23.1958975, 66.350033997000025 ], [ -22.9317105, 66.4693605 ], [ -21.327746499999989, 66.006199001000027 ], [ -21.3420165, 65.734767501000022 ], [ -21.7825325, 65.764513497999985 ], [ -21.094844500000022, 65.447562999000013 ], [ -20.264036, 65.725345499000014 ], [ -20.421178, 66.084051499999987 ], [ -19.473689, 65.736606500999983 ], [ -19.361081500000012, 65.829324 ], [ -19.4362145, 66.0476645 ], [ -18.77751, 66.191427001000022 ], [ -17.4125985, 65.992246497 ], [ -16.194012499999985, 66.537420000999987 ] ] ] } }, -{ "type": "Feature", "id": 1285, "properties": { "NUTS_ID": "ITC1", "STAT_LEVL_": 2, "SHAPE_AREA": 2.9445259612200001, "SHAPE_LEN": 8.9909437416499998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.713936, 46.097271998999986 ], [ 8.593811, 45.828224998999985 ], [ 8.706896500000028, 45.558316 ], [ 8.8429155, 45.393841 ], [ 8.51356, 45.313278501000013 ], [ 8.5477975, 45.168147497 ], [ 8.887709, 45.059148999 ], [ 9.200074, 44.686099496999987 ], [ 9.202995499999986, 44.613476499 ], [ 8.576182, 44.509206001 ], [ 8.261596, 44.519424496999989 ], [ 8.252819499, 44.528740501000016 ], [ 8.015629499999989, 44.110676499000022 ], [ 7.714236500000027, 44.061513499 ], [ 7.007760500000018, 44.23670049899999 ], [ 6.887428, 44.361287 ], [ 6.948443, 44.654741999 ], [ 7.065755, 44.713464497000018 ], [ 6.630051, 45.109856499999978 ], [ 7.125157, 45.243994498 ], [ 7.104723, 45.468454499000018 ], [ 7.895811, 45.590028 ], [ 7.936649, 45.724340499999983 ], [ 7.86407650000001, 45.916750499999978 ], [ 7.8771375, 45.926954997999985 ], [ 8.384717, 46.452158499 ], [ 8.713936, 46.097271998999986 ] ] ] } }, -{ "type": "Feature", "id": 1295, "properties": { "NUTS_ID": "PL43", "STAT_LEVL_": 2, "SHAPE_AREA": 1.8445872214400001, "SHAPE_LEN": 6.2404958520799996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.416191, 51.784865 ], [ 15.979245, 51.802309001000026 ], [ 15.714032499999973, 51.51739699699999 ], [ 14.974183, 51.36394999700002 ], [ 14.729862, 51.581776999 ], [ 14.716716, 52.001188001 ], [ 14.755227, 52.070024998 ], [ 14.600891499999989, 52.272051998999984 ], [ 14.534361999, 52.395008 ], [ 14.565063, 52.624497 ], [ 14.904187, 52.883909499000026 ], [ 15.962497499999984, 53.041380996999976 ], [ 15.946907, 52.75489599799999 ], [ 15.776346499999988, 52.637869501000011 ], [ 15.880810499, 52.290429499000027 ], [ 15.833296, 52.11112300100001 ], [ 16.416191, 51.784865 ] ] ] } }, -{ "type": "Feature", "id": 1299, "properties": { "NUTS_ID": "PL51", "STAT_LEVL_": 2, "SHAPE_AREA": 2.5705263551200002, "SHAPE_LEN": 8.2441852102199995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.416191, 51.784865 ], [ 16.828372, 51.57218799899999 ], [ 17.257433, 51.642843001000017 ], [ 17.556245, 51.58430149899999 ], [ 17.795269500000018, 51.194146000999979 ], [ 17.578243499999985, 51.162241 ], [ 17.164896, 50.613462998999978 ], [ 16.907924499999979, 50.44945400099999 ], [ 17.028323, 50.229996998999979 ], [ 16.86327, 50.19812299900002 ], [ 16.58029, 50.142787998000017 ], [ 16.195729, 50.432135001 ], [ 16.443536, 50.586257499999988 ], [ 16.107318, 50.662072998999975 ], [ 15.535267499999975, 50.779375999000024 ], [ 15.032691, 51.021315999000024 ], [ 14.823362, 50.870550497000011 ], [ 15.037271, 51.243749998999988 ], [ 14.974183, 51.36394999700002 ], [ 15.714032499999973, 51.51739699699999 ], [ 15.979245, 51.802309001000026 ], [ 16.416191, 51.784865 ] ] ] } }, -{ "type": "Feature", "id": 1305, "properties": { "NUTS_ID": "PL52", "STAT_LEVL_": 2, "SHAPE_AREA": 1.2668851860100001, "SHAPE_LEN": 5.1566603755299996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.1636815, 51.172516997 ], [ 18.672954499000014, 51.056902501000025 ], [ 18.615877500000011, 50.85358750099999 ], [ 18.607473500000026, 50.550011 ], [ 18.425866499999984, 50.248965498000018 ], [ 18.059780499999988, 50.174652499999979 ], [ 18.035060999, 50.06577199899999 ], [ 17.868675, 49.972545997 ], [ 17.592736, 50.160014 ], [ 17.758479, 50.206568 ], [ 17.718403998999975, 50.32095 ], [ 17.429605, 50.254513001000021 ], [ 16.907924499999979, 50.44945400099999 ], [ 17.164896, 50.613462998999978 ], [ 17.578243499999985, 51.162241 ], [ 17.795269500000018, 51.194146000999979 ], [ 17.939456, 51.10886499899999 ], [ 18.1636815, 51.172516997 ] ] ] } }, -{ "type": "Feature", "id": 1309, "properties": { "NUTS_ID": "PL61", "STAT_LEVL_": 2, "SHAPE_AREA": 2.3250527676899999, "SHAPE_LEN": 6.4972781343900001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.1292765, 53.588260499 ], [ 19.7615955, 53.15179649800001 ], [ 19.684806, 52.963038998 ], [ 19.444664, 52.939042500000028 ], [ 19.522742999, 52.74920049799999 ], [ 19.289184499999976, 52.39271249799998 ], [ 19.04712, 52.332803999000021 ], [ 18.377150500000027, 52.53746350099999 ], [ 17.458523, 52.738948000999983 ], [ 17.509582500000022, 52.917767997 ], [ 17.3015565, 52.994803 ], [ 17.438793499999974, 53.26751450099999 ], [ 17.390653, 53.490964 ], [ 18.072036500000024, 53.781074998 ], [ 18.761577499999987, 53.604881998 ], [ 19.1292765, 53.588260499 ] ] ] } }, -{ "type": "Feature", "id": 1315, "properties": { "NUTS_ID": "PL62", "STAT_LEVL_": 2, "SHAPE_AREA": 3.3344017992300001, "SHAPE_LEN": 9.1371717569000008 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.792095500000016, 54.363358996999978 ], [ 22.476556500000015, 54.201305500999979 ], [ 22.782806, 53.915489498999989 ], [ 22.703502500000013, 53.767354496999985 ], [ 22.135728, 53.544539998 ], [ 21.598199912999974, 53.480181970999979 ], [ 21.55169, 53.478128001000016 ], [ 20.675953999, 53.269529498 ], [ 20.411137, 53.214165 ], [ 19.7615955, 53.15179649800001 ], [ 19.1292765, 53.588260499 ], [ 19.377739500000018, 53.984958998000025 ], [ 19.2176885, 54.11612149699999 ], [ 19.256953, 54.2784605 ], [ 19.8037685, 54.4424105 ], [ 20.313503, 54.402202000999978 ], [ 21.559322, 54.322504 ], [ 22.792095500000016, 54.363358996999978 ] ] ] } }, -{ "type": "Feature", "id": 1319, "properties": { "NUTS_ID": "PL63", "STAT_LEVL_": 2, "SHAPE_AREA": 2.48264567887, "SHAPE_LEN": 8.7792554017299995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.256953, 54.2784605 ], [ 19.2176885, 54.11612149699999 ], [ 19.377739500000018, 53.984958998000025 ], [ 19.1292765, 53.588260499 ], [ 18.761577499999987, 53.604881998 ], [ 18.072036500000024, 53.781074998 ], [ 17.390653, 53.490964 ], [ 16.892248, 53.655868999 ], [ 16.982053499000017, 53.904909499999974 ], [ 16.792764499999976, 53.985550499999988 ], [ 16.858620499999972, 54.38257649799999 ], [ 16.699085, 54.569247001 ], [ 17.666607, 54.7832315 ], [ 18.35961, 54.81719149700001 ], [ 18.828968499999974, 54.607707999000013 ], [ 18.3967745, 54.747280499999988 ], [ 18.541726499999982, 54.58448 ], [ 18.950029500000028, 54.358310501 ], [ 19.639032, 54.458294498999976 ], [ 19.648523, 54.453339 ], [ 19.256953, 54.2784605 ] ] ] } }, -{ "type": "Feature", "id": 1327, "properties": { "NUTS_ID": "PT11", "STAT_LEVL_": 2, "SHAPE_AREA": 2.2882624740200002, "SHAPE_LEN": 7.1108791504199997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.983513500000015, 41.972903998999982 ], [ -6.5884615, 41.967761998000015 ], [ -6.189352, 41.575046499 ], [ -6.479713, 41.294379999 ], [ -6.689786, 41.205241498000021 ], [ -6.929903500000023, 41.029466499000023 ], [ -7.40123545, 40.880941330999974 ], [ -7.4542035, 40.812609999000017 ], [ -7.9156385, 41.020001998 ], [ -8.08917150000002, 40.987557498 ], [ -8.273369, 40.763173497000025 ], [ -8.5491265, 40.791806996999981 ], [ -8.6531195, 40.964778497 ], [ -8.776427500000011, 41.471979497 ], [ -8.811573, 41.611576996999986 ], [ -8.863186, 41.872066499000027 ], [ -8.199000500000011, 42.154418998999972 ], [ -8.1650755, 41.818302 ], [ -8.051862500000027, 41.820613998 ], [ -7.20046450000001, 41.879749498000024 ], [ -6.983513500000015, 41.972903998999982 ] ] ] } }, -{ "type": "Feature", "id": 1336, "properties": { "NUTS_ID": "PT15", "STAT_LEVL_": 2, "SHAPE_AREA": 0.52293547670899998, "SHAPE_LEN": 3.8169800547900001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.401916500000027, 37.174827498000013 ], [ -7.8825875, 36.96182299899999 ], [ -8.592472, 37.1220545 ], [ -8.981500499999981, 37.027438497999981 ], [ -8.7963155, 37.442948 ], [ -8.3779285, 37.427245997 ], [ -8.065689500000019, 37.318969998 ], [ -7.512691500000017, 37.526256499 ], [ -7.401916500000027, 37.174827498000013 ] ] ] } }, -{ "type": "Feature", "id": 1338, "properties": { "NUTS_ID": "PT16", "STAT_LEVL_": 2, "SHAPE_AREA": 2.96847661888, "SHAPE_LEN": 8.9292265240499997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.865144, 40.270694499 ], [ -6.9512985, 40.257445999000026 ], [ -7.011960499999986, 40.126934 ], [ -6.864203, 40.011867498000015 ], [ -7.015405, 39.670856499000024 ], [ -7.53490245, 39.661986891000026 ], [ -7.8251085, 39.537363998999979 ], [ -7.959676, 39.560949499 ], [ -7.9394625, 39.409952498 ], [ -8.1726035, 39.233313996999982 ], [ -8.338524, 39.461524498000017 ], [ -8.759391, 39.475686999 ], [ -8.903426, 39.466005499 ], [ -8.930280499999981, 39.018022498999983 ], [ -9.333296, 39.02805749700002 ], [ -9.416459499999974, 39.054692999 ], [ -9.365950500999986, 39.348377998999979 ], [ -9.04026600100002, 39.741422000999989 ], [ -8.894938, 40.045502999 ], [ -8.784033, 40.520366498999977 ], [ -8.6531195, 40.964778497 ], [ -8.5491265, 40.791806996999981 ], [ -8.273369, 40.763173497000025 ], [ -8.08917150000002, 40.987557498 ], [ -7.9156385, 41.020001998 ], [ -7.4542035, 40.812609999000017 ], [ -7.40123545, 40.880941330999974 ], [ -6.929903500000023, 41.029466499000023 ], [ -6.801935, 40.861045998 ], [ -6.865144, 40.270694499 ] ] ] } }, -{ "type": "Feature", "id": 1347, "properties": { "NUTS_ID": "PT17", "STAT_LEVL_": 2, "SHAPE_AREA": 0.30151190928799998, "SHAPE_LEN": 3.4601073215999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -8.735066500000016, 38.516034999 ], [ -9.222857499999975, 38.413747999 ], [ -9.260362499999985, 38.662664999000015 ], [ -8.924883500000021, 38.758676499999979 ], [ -8.546800500000018, 38.763433997999982 ], [ -8.490975, 38.76131049899999 ], [ -8.6391155, 38.549488999 ], [ -8.735066500000016, 38.516034999 ] ] ], [ [ [ -8.968469, 38.827762499000016 ], [ -9.477468499999986, 38.701838497999972 ], [ -9.416459499999974, 39.054692999 ], [ -9.333296, 39.02805749700002 ], [ -8.930280499999981, 39.018022498999983 ], [ -8.968469, 38.827762499000016 ] ] ] ] } }, -{ "type": "Feature", "id": 1349, "properties": { "NUTS_ID": "PT18", "STAT_LEVL_": 2, "SHAPE_AREA": 3.23742735079, "SHAPE_LEN": 8.7331231445800004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.9317385, 38.208377998 ], [ -7.002483499999983, 38.0227165 ], [ -7.2632845, 37.979908 ], [ -7.512691500000017, 37.526256499 ], [ -8.065689500000019, 37.318969998 ], [ -8.3779285, 37.427245997 ], [ -8.7963155, 37.442948 ], [ -8.735066500000016, 38.516034999 ], [ -8.6391155, 38.549488999 ], [ -8.490975, 38.76131049899999 ], [ -8.546800500000018, 38.763433997999982 ], [ -8.924883500000021, 38.758676499999979 ], [ -8.968469, 38.827762499000016 ], [ -8.930280499999981, 39.018022498999983 ], [ -8.903426, 39.466005499 ], [ -8.759391, 39.475686999 ], [ -8.338524, 39.461524498000017 ], [ -8.1726035, 39.233313996999982 ], [ -7.9394625, 39.409952498 ], [ -7.959676, 39.560949499 ], [ -7.8251085, 39.537363998999979 ], [ -7.53490245, 39.661986891000026 ], [ -7.231467, 39.278431 ], [ -6.9513915, 39.024070499 ], [ -7.203135, 38.75101749800001 ], [ -7.316636, 38.439876498999979 ], [ -7.10795250000001, 38.188121500000022 ], [ -6.9317385, 38.208377998 ] ] ] } }, -{ "type": "Feature", "id": 1356, "properties": { "NUTS_ID": "PT20", "STAT_LEVL_": 2, "SHAPE_AREA": 0.043939992241600001, "SHAPE_LEN": 1.4808539034099999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -25.1341635, 37.807617498000013 ], [ -25.5115255, 37.708371499 ], [ -25.85274, 37.85310549899998 ], [ -25.689569, 37.841939501000013 ], [ -25.1341635, 37.807617498000013 ] ] ] } }, -{ "type": "Feature", "id": 1359, "properties": { "NUTS_ID": "PT30", "STAT_LEVL_": 2, "SHAPE_AREA": 0.055018856820200003, "SHAPE_LEN": 1.11196618179 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.746594500000015, 32.73417 ], [ -16.944882501, 32.632935498999984 ], [ -17.2126035, 32.736969999 ], [ -17.193386499999974, 32.870556498999974 ], [ -16.746594500000015, 32.73417 ] ] ] } }, -{ "type": "Feature", "id": 1363, "properties": { "NUTS_ID": "RO11", "STAT_LEVL_": 2, "SHAPE_AREA": 4.12390517584, "SHAPE_LEN": 8.8819070628900008 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.947100499999976, 47.729124 ], [ 24.960837500000025, 47.596850999000026 ], [ 25.063383, 47.13653849799999 ], [ 24.400994998999977, 46.750535499000023 ], [ 24.183093105000012, 46.802148026 ], [ 23.985275, 46.430917998999973 ], [ 22.811950500000023, 46.56885950100002 ], [ 22.676575500000013, 46.405825497000023 ], [ 21.441398, 46.651467 ], [ 21.658955, 47.022131498000022 ], [ 22.12832, 47.598089496999989 ], [ 22.1808375, 47.600094499000022 ], [ 22.896270500000014, 47.954120500999977 ], [ 23.1885355, 48.108687998999983 ], [ 23.493605, 47.96781149899999 ], [ 24.583293500000025, 47.964851496999984 ], [ 24.947100499999976, 47.729124 ] ] ] } }, -{ "type": "Feature", "id": 1370, "properties": { "NUTS_ID": "RO12", "STAT_LEVL_": 2, "SHAPE_AREA": 3.92995911014, "SHAPE_LEN": 9.4690049802199994 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.4399845, 46.038876499000025 ], [ 26.392094499999985, 45.802389496999979 ], [ 26.093334500000026, 45.516305997000018 ], [ 26.0727185, 45.505787999 ], [ 25.452539, 45.441341998999974 ], [ 25.321577499999989, 45.381088998 ], [ 25.103214, 45.585193999000012 ], [ 24.68492550000002, 45.604110997000021 ], [ 24.5128345, 45.586824998999987 ], [ 23.703613, 45.496772001000011 ], [ 23.597270499999979, 45.473471499000027 ], [ 23.234864, 46.030501996999988 ], [ 22.748716, 46.351207499999987 ], [ 22.676575500000013, 46.405825497000023 ], [ 22.811950500000023, 46.56885950100002 ], [ 23.985275, 46.430917998999973 ], [ 24.183093105000012, 46.802148026 ], [ 24.400994998999977, 46.750535499000023 ], [ 25.063383, 47.13653849799999 ], [ 25.2467105, 47.097919 ], [ 25.661582499000019, 47.091646500000024 ], [ 25.8619675, 46.923383498000021 ], [ 25.79531, 46.71911749899999 ], [ 25.975159500000018, 46.69731249900002 ], [ 26.263439, 46.246338497000011 ], [ 26.4399845, 46.038876499000025 ] ] ] } }, -{ "type": "Feature", "id": 1378, "properties": { "NUTS_ID": "RO21", "STAT_LEVL_": 2, "SHAPE_AREA": 4.3028983650099999, "SHAPE_LEN": 9.2209686130800002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.115802, 46.107826997000018 ], [ 27.610243, 46.136248498999976 ], [ 27.562554499999976, 46.002876997999977 ], [ 27.503053, 46.139620998999987 ], [ 27.4928185, 46.159212998999976 ], [ 26.4399845, 46.038876499000025 ], [ 26.263439, 46.246338497000011 ], [ 25.975159500000018, 46.69731249900002 ], [ 25.79531, 46.71911749899999 ], [ 25.8619675, 46.923383498000021 ], [ 25.661582499000019, 47.091646500000024 ], [ 25.2467105, 47.097919 ], [ 25.063383, 47.13653849799999 ], [ 24.960837500000025, 47.596850999000026 ], [ 24.947100499999976, 47.729124 ], [ 26.098827500000027, 47.97879599700002 ], [ 26.63056, 48.259749999 ], [ 27.1646515, 47.994683499000018 ], [ 27.3911665, 47.58939749699999 ], [ 28.113805500000012, 46.838411001 ], [ 28.260886, 46.437139499000011 ], [ 28.115802, 46.107826997000018 ] ] ] } }, -{ "type": "Feature", "id": 1385, "properties": { "NUTS_ID": "RO22", "STAT_LEVL_": 2, "SHAPE_AREA": 4.0466299814199997, "SHAPE_LEN": 11.781261604699999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.115802, 46.107826997000018 ], [ 28.088561500000026, 45.606112499 ], [ 28.21136, 45.467279999000027 ], [ 28.28599, 45.430630001 ], [ 28.717, 45.224379999 ], [ 29.42759, 45.44223999899998 ], [ 29.6796395, 45.211838 ], [ 29.600269, 44.839554498999973 ], [ 28.994085, 44.679625498 ], [ 28.625982500000021, 44.297031998000023 ], [ 28.578884, 43.738739 ], [ 27.69541, 43.987343 ], [ 27.271344999, 44.12633649899999 ], [ 28.017373998999972, 44.340248997 ], [ 28.110168499999986, 44.439703501 ], [ 27.881007, 44.763076499000022 ], [ 27.203458500000011, 44.787073998999972 ], [ 26.6055515, 44.856993998 ], [ 26.0727185, 45.505787999 ], [ 26.093334500000026, 45.516305997000018 ], [ 26.392094499999985, 45.802389496999979 ], [ 26.4399845, 46.038876499000025 ], [ 27.4928185, 46.159212998999976 ], [ 27.503053, 46.139620998999987 ], [ 27.562554499999976, 46.002876997999977 ], [ 27.610243, 46.136248498999976 ], [ 28.115802, 46.107826997000018 ] ] ] } }, -{ "type": "Feature", "id": 1393, "properties": { "NUTS_ID": "RO31", "STAT_LEVL_": 2, "SHAPE_AREA": 3.9547184404600002, "SHAPE_LEN": 11.6967165344 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0727185, 45.505787999 ], [ 26.6055515, 44.856993998 ], [ 27.203458500000011, 44.787073998999972 ], [ 27.881007, 44.763076499000022 ], [ 28.110168499999986, 44.439703501 ], [ 28.017373998999972, 44.340248997 ], [ 27.271344999, 44.12633649899999 ], [ 26.379968, 44.042950999000027 ], [ 26.358359999000015, 44.038415500999974 ], [ 25.671862499999975, 43.691339998999979 ], [ 25.544640500000014, 43.64298149699999 ], [ 25.293740500000013, 43.654294 ], [ 24.641605998999978, 43.733412999 ], [ 24.755096, 43.817601498999977 ], [ 24.613092499, 44.014155997999978 ], [ 24.884019500000022, 44.382636497000021 ], [ 24.438121, 44.845375499 ], [ 24.5128345, 45.586824998999987 ], [ 24.68492550000002, 45.604110997000021 ], [ 25.103214, 45.585193999000012 ], [ 25.321577499999989, 45.381088998 ], [ 25.452539, 45.441341998999974 ], [ 26.0727185, 45.505787999 ] ], [ [ 26.416060500000015, 44.521682999 ], [ 26.301818500000024, 44.768875 ], [ 25.970744, 44.710408501000018 ], [ 25.8907395, 44.540952999000012 ], [ 25.870018500000015, 44.35740049899999 ], [ 26.259956499999987, 44.294985999 ], [ 26.416060500000015, 44.521682999 ] ] ] } }, -{ "type": "Feature", "id": 1401, "properties": { "NUTS_ID": "RO32", "STAT_LEVL_": 2, "SHAPE_AREA": 0.18702136140600001, "SHAPE_LEN": 1.65076928773 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.416060500000015, 44.521682999 ], [ 26.259956499999987, 44.294985999 ], [ 25.870018500000015, 44.35740049899999 ], [ 25.8907395, 44.540952999000012 ], [ 25.970744, 44.710408501000018 ], [ 26.301818500000024, 44.768875 ], [ 26.416060500000015, 44.521682999 ] ] ] } }, -{ "type": "Feature", "id": 1405, "properties": { "NUTS_ID": "RO41", "STAT_LEVL_": 2, "SHAPE_AREA": 3.2936654731799999, "SHAPE_LEN": 9.3151045322500003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.641605998999978, 43.733412999 ], [ 24.324132, 43.699567996999974 ], [ 24.112719, 43.699566498000024 ], [ 23.63008, 43.791259997999987 ], [ 22.997154500000022, 43.807626997 ], [ 22.838719, 43.877852001 ], [ 23.045898, 44.063749499999972 ], [ 22.966399500000023, 44.098524997000027 ], [ 22.6751615, 44.215662996999981 ], [ 22.4573995, 44.4674665 ], [ 22.705956500000013, 44.603216498999984 ], [ 22.467334, 44.7147455 ], [ 22.1595795, 44.471777498999984 ], [ 22.016132500000026, 44.599202499 ], [ 22.154162, 44.59519949700001 ], [ 22.207799, 44.816878497 ], [ 22.418032, 44.756857498999977 ], [ 22.656632, 45.108166997000012 ], [ 22.686246499999982, 45.257960998999977 ], [ 23.59064, 45.353072499 ], [ 23.597270499999979, 45.473471499000027 ], [ 23.703613, 45.496772001000011 ], [ 24.5128345, 45.586824998999987 ], [ 24.438121, 44.845375499 ], [ 24.884019500000022, 44.382636497000021 ], [ 24.613092499, 44.014155997999978 ], [ 24.755096, 43.817601498999977 ], [ 24.641605998999978, 43.733412999 ] ] ] } }, -{ "type": "Feature", "id": 1407, "properties": { "NUTS_ID": "NL23", "STAT_LEVL_": 2, "SHAPE_AREA": 0.309937998411, "SHAPE_LEN": 2.5075505365400002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.864311, 52.518169496999974 ], [ 5.404633, 52.249629998999978 ], [ 5.335462, 52.29021849899999 ], [ 5.079161, 52.388653 ], [ 5.0604265, 52.578937499 ], [ 5.377261499999975, 52.764805 ], [ 5.795148499999982, 52.806499498999983 ], [ 6.017299499999979, 52.643230499000026 ], [ 5.777970499999981, 52.607532499 ], [ 5.864311, 52.518169496999974 ] ] ] } }, -{ "type": "Feature", "id": 1410, "properties": { "NUTS_ID": "NL31", "STAT_LEVL_": 2, "SHAPE_AREA": 0.229959014706, "SHAPE_LEN": 2.02926129032 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.335462, 52.29021849899999 ], [ 5.404633, 52.249629998999978 ], [ 5.606011500000022, 51.943248498 ], [ 5.149456, 51.933452499 ], [ 4.877899500000012, 51.937835498000027 ], [ 4.794524, 52.22672649899999 ], [ 5.021537500000022, 52.302498499000023 ], [ 5.335462, 52.29021849899999 ] ] ] } }, -{ "type": "Feature", "id": 1412, "properties": { "NUTS_ID": "NL32", "STAT_LEVL_": 2, "SHAPE_AREA": 0.40767895522199998, "SHAPE_LEN": 3.1639832698600001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.377261499999975, 52.764805 ], [ 5.0604265, 52.578937499 ], [ 5.079161, 52.388653 ], [ 5.335462, 52.29021849899999 ], [ 5.021537500000022, 52.302498499000023 ], [ 4.794524, 52.22672649899999 ], [ 4.728766, 52.20981949899999 ], [ 4.611684, 52.31358699899999 ], [ 4.493847500000015, 52.32826000099999 ], [ 4.560596499999974, 52.437426001 ], [ 4.609676499999978, 52.573401000999979 ], [ 4.649071, 52.756177499999978 ], [ 4.730989, 52.962188498999978 ], [ 5.164383499999985, 53.000910501000021 ], [ 5.167425499999979, 52.998798498999975 ], [ 5.377261499999975, 52.764805 ] ] ] } }, -{ "type": "Feature", "id": 1420, "properties": { "NUTS_ID": "NL33", "STAT_LEVL_": 2, "SHAPE_AREA": 0.45687345162199999, "SHAPE_LEN": 3.4920526723799998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.611684, 52.31358699899999 ], [ 4.728766, 52.20981949899999 ], [ 4.794524, 52.22672649899999 ], [ 4.877899500000012, 51.937835498000027 ], [ 5.149456, 51.933452499 ], [ 5.000534, 51.820937999000023 ], [ 4.676294499999983, 51.7249185 ], [ 4.620420500000023, 51.71412650000002 ], [ 4.249017, 51.6458015 ], [ 4.161857000999987, 51.666831576999982 ], [ 4.135041090000016, 51.673303697999984 ], [ 3.678739, 51.695324001000017 ], [ 3.839083, 51.758297 ], [ 4.1277885, 52.000542497000026 ], [ 4.198018499999989, 52.054144496999982 ], [ 4.3742325, 52.187089996999987 ], [ 4.493847500000015, 52.32826000099999 ], [ 4.611684, 52.31358699899999 ] ] ] } }, -{ "type": "Feature", "id": 1427, "properties": { "NUTS_ID": "NL34", "STAT_LEVL_": 2, "SHAPE_AREA": 0.13223311163599999, "SHAPE_LEN": 4.1009217265500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.9776665, 51.225131998999984 ], [ 3.8563395, 51.211056 ], [ 3.380661, 51.274299497000015 ], [ 3.367216499999984, 51.368134499 ], [ 4.23481750000002, 51.348254 ], [ 3.9776665, 51.225131998999984 ] ] ], [ [ [ 4.249017, 51.6458015 ], [ 4.279565, 51.376017497000021 ], [ 4.24366950000001, 51.374729499000011 ], [ 3.4342, 51.526157499000021 ], [ 4.223578, 51.438655997000012 ], [ 4.161857000999987, 51.666831576999982 ], [ 4.249017, 51.6458015 ] ] ] ] } }, -{ "type": "Feature", "id": 1431, "properties": { "NUTS_ID": "NL41", "STAT_LEVL_": 2, "SHAPE_AREA": 0.64833468247199999, "SHAPE_LEN": 4.3603427068 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.8651585, 51.757407999 ], [ 6.047766500000023, 51.558505997999987 ], [ 5.838077, 51.566467499 ], [ 5.8402455, 51.34692400099999 ], [ 5.5662835, 51.220836497999983 ], [ 5.237716499999976, 51.261600499 ], [ 5.10218, 51.42900499699999 ], [ 4.759926, 51.50246449799999 ], [ 4.669544, 51.426383999 ], [ 4.279565, 51.376017497000021 ], [ 4.249017, 51.6458015 ], [ 4.620420500000023, 51.71412650000002 ], [ 4.676294499999983, 51.7249185 ], [ 5.000534, 51.820937999000023 ], [ 5.128057500000011, 51.73761 ], [ 5.597879499999976, 51.828082999 ], [ 5.8651585, 51.757407999 ] ] ] } }, -{ "type": "Feature", "id": 1436, "properties": { "NUTS_ID": "NL42", "STAT_LEVL_": 2, "SHAPE_AREA": 0.28219573142499998, "SHAPE_LEN": 3.5693945439900001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.953192, 51.747845998 ], [ 6.224405, 51.364978999000016 ], [ 6.072657, 51.242587497999978 ], [ 6.174812, 51.1845135 ], [ 5.877084998999976, 51.032101 ], [ 6.0869475, 50.913134999000022 ], [ 6.020998999000028, 50.754295500000012 ], [ 5.892073, 50.755237498999975 ], [ 5.682000499000026, 50.757446497999979 ], [ 5.687622, 50.811923998999987 ], [ 5.758272498999986, 50.954795 ], [ 5.766149, 51.009235499999988 ], [ 5.798274, 51.059853498999985 ], [ 5.5662835, 51.220836497999983 ], [ 5.8402455, 51.34692400099999 ], [ 5.838077, 51.566467499 ], [ 6.047766500000023, 51.558505997999987 ], [ 5.8651585, 51.757407999 ], [ 5.953192, 51.747845998 ] ] ] } }, -{ "type": "Feature", "id": 1442, "properties": { "NUTS_ID": "NO01", "STAT_LEVL_": 2, "SHAPE_AREA": 0.90365272472000002, "SHAPE_LEN": 4.8185333132599997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.822262, 60.052144998000017 ], [ 11.839729, 59.840767 ], [ 11.926970499999982, 59.790475999000023 ], [ 10.686118, 59.489406998999982 ], [ 10.5818175, 59.756759500999976 ], [ 10.764788, 59.8295445 ], [ 10.681954881000024, 59.884828632999984 ], [ 10.64198, 59.911508500000025 ], [ 10.497314500000016, 59.7883385 ], [ 10.489164999000025, 60.01726 ], [ 10.600720500000023, 60.13161 ], [ 10.680319499, 60.1335305 ], [ 10.933902499999988, 60.346691997999983 ], [ 10.713308499999982, 60.524164997000014 ], [ 11.153986, 60.605148000999975 ], [ 11.2095645, 60.504914498 ], [ 11.822262, 60.052144998000017 ] ] ] } }, -{ "type": "Feature", "id": 1445, "properties": { "NUTS_ID": "NO02", "STAT_LEVL_": 2, "SHAPE_AREA": 8.6932138411000004, "SHAPE_LEN": 15.8007202379 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.2546595, 62.331024496999987 ], [ 12.29937, 62.267494 ], [ 12.137665, 61.723816998000018 ], [ 12.870847500000025, 61.356494998000016 ], [ 12.670176500000025, 61.055976498 ], [ 12.22399, 61.013078001 ], [ 12.606881499999986, 60.512742496999977 ], [ 12.499544999000022, 60.09765699799999 ], [ 11.839729, 59.840767 ], [ 11.822262, 60.052144998000017 ], [ 11.2095645, 60.504914498 ], [ 11.153986, 60.605148000999975 ], [ 10.713308499999982, 60.524164997000014 ], [ 10.933902499999988, 60.346691997999983 ], [ 10.680319499, 60.1335305 ], [ 10.600720500000023, 60.13161 ], [ 10.03533, 60.632055001000026 ], [ 9.478695, 60.530145498000024 ], [ 8.251701, 61.073943997000015 ], [ 8.051171, 61.232776500999989 ], [ 8.262332500000014, 61.533979500999976 ], [ 7.5138235, 61.727364500000022 ], [ 7.349109, 62.00768199700002 ], [ 9.062062, 62.372608497999977 ], [ 9.792455, 62.287932001 ], [ 10.1969, 62.687693500000023 ], [ 12.2546595, 62.331024496999987 ] ] ] } }, -{ "type": "Feature", "id": 1448, "properties": { "NUTS_ID": "NO03", "STAT_LEVL_": 2, "SHAPE_AREA": 5.6903743056099998, "SHAPE_LEN": 14.528180644000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.251701, 61.073943997000015 ], [ 9.478695, 60.530145498000024 ], [ 10.03533, 60.632055001000026 ], [ 10.600720500000023, 60.13161 ], [ 10.489164999000025, 60.01726 ], [ 10.497314500000016, 59.7883385 ], [ 10.54188649299999, 59.708155780000027 ], [ 10.555847737000022, 59.683040208000023 ], [ 10.617811, 59.571571499000015 ], [ 10.421314, 59.525081500999988 ], [ 10.4391965, 59.665851498999984 ], [ 10.212189500000022, 59.737282 ], [ 10.3198815, 59.691343501 ], [ 10.374606, 59.676967499999989 ], [ 10.386558499999978, 59.275020498 ], [ 10.273399499999982, 59.041736500000013 ], [ 9.839197001, 59.044178998 ], [ 9.289463, 58.839130496 ], [ 9.46771050000001, 58.829845498 ], [ 9.365971, 58.771349 ], [ 8.996341500000028, 58.991956499000025 ], [ 7.966328499999975, 58.968421 ], [ 7.506116001, 59.607801 ], [ 7.214666500000021, 59.672687 ], [ 7.096287500000017, 59.782777 ], [ 7.488040500000011, 60.098838498000021 ], [ 7.732114500000023, 60.520970499999976 ], [ 7.46964, 60.675547498000014 ], [ 8.251701, 61.073943997000015 ] ] ], [ [ [ 11.8261965, 59.237849998 ], [ 11.632557, 58.908306501000027 ], [ 11.460827, 58.988658499 ], [ 11.15222652599999, 59.068580457 ], [ 11.133916596, 59.073322399 ], [ 10.825053, 59.153312501000016 ], [ 10.686118, 59.489406998999982 ], [ 11.926970499999982, 59.790475999000023 ], [ 11.93987850000002, 59.69458099799999 ], [ 11.691129, 59.589547499999981 ], [ 11.8261965, 59.237849998 ] ] ] ] } }, -{ "type": "Feature", "id": 1453, "properties": { "NUTS_ID": "NO04", "STAT_LEVL_": 2, "SHAPE_AREA": 3.91684786219, "SHAPE_LEN": 12.8731007401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.214666500000021, 59.672687 ], [ 7.506116001, 59.607801 ], [ 7.966328499999975, 58.968421 ], [ 8.996341500000028, 58.991956499000025 ], [ 9.365971, 58.771349 ], [ 9.082190498999978, 58.74871449699998 ], [ 9.0575915, 58.725215999 ], [ 9.244501, 58.725330499999984 ], [ 8.185152, 58.1429415 ], [ 7.038199, 58.021426999000028 ], [ 6.553461500000026, 58.117786498999976 ], [ 6.89118, 58.2743605 ], [ 6.438839, 58.2908195 ], [ 5.491752, 58.75478 ], [ 5.5742715, 59.030342500000017 ], [ 5.995267500000011, 58.968890998 ], [ 6.217452499999979, 59.266296497999974 ], [ 5.941965499999981, 59.361309001 ], [ 5.614074, 59.330623499000012 ], [ 5.550886, 59.271621499999981 ], [ 5.295012441999972, 59.370869887000026 ], [ 5.298477, 59.145370501 ], [ 5.175062500000024, 59.178374497999982 ], [ 5.302875500000027, 59.481168001000015 ], [ 5.534834, 59.7320785 ], [ 5.506673157000023, 59.52538185899999 ], [ 5.794665721, 59.650943915000028 ], [ 5.80379270899999, 59.649380173999987 ], [ 5.823972500000025, 59.645922998 ], [ 6.651835, 59.711413 ], [ 7.096287500000017, 59.782777 ], [ 7.214666500000021, 59.672687 ] ] ] } }, -{ "type": "Feature", "id": 1457, "properties": { "NUTS_ID": "NO05", "STAT_LEVL_": 2, "SHAPE_AREA": 7.4945283417799997, "SHAPE_LEN": 35.447629056899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.115073511999981, 60.965715414999977 ], [ 5.026263, 61.01004050099999 ], [ 5.426630526999986, 61.043119309000019 ], [ 5.394584, 61.069965497 ], [ 4.947169499999973, 61.25885 ], [ 5.209688823000022, 61.334528406 ], [ 4.977364500000022, 61.41730899800001 ], [ 5.843049, 61.45913699800002 ], [ 5.24131566599999, 61.583933230000014 ], [ 4.994847999, 61.591152001000012 ], [ 4.969778, 61.72112249700001 ], [ 6.846349, 61.870303997 ], [ 5.4584625, 61.93935 ], [ 5.089433, 62.167289499999981 ], [ 5.491458, 62.014787500000011 ], [ 5.6237655, 62.067054500999973 ], [ 5.405087499999979, 62.1274295 ], [ 6.3250655, 62.060600500000021 ], [ 5.931158, 62.21788399799999 ], [ 6.328697, 62.37550749799999 ], [ 6.653805499999976, 62.193794497999988 ], [ 6.573409500000025, 62.54216 ], [ 6.2564425, 62.529735500000015 ], [ 6.334281499999975, 62.61331949800001 ], [ 8.146601499999974, 62.688270500999977 ], [ 6.898579, 62.909847501 ], [ 7.3014915, 63.010261496999988 ], [ 7.450778500000013, 62.90481949799999 ], [ 8.11747, 62.921828998000024 ], [ 8.107145499000012, 63.105423 ], [ 8.764103, 63.18451 ], [ 9.4685455, 63.177874001000021 ], [ 9.463019499999973, 62.848407001 ], [ 8.919962, 62.711771 ], [ 9.24373, 62.556077999000024 ], [ 9.062062, 62.372608497999977 ], [ 7.349109, 62.00768199700002 ], [ 7.5138235, 61.727364500000022 ], [ 8.262332500000014, 61.533979500999976 ], [ 8.051171, 61.232776500999989 ], [ 8.251701, 61.073943997000015 ], [ 7.46964, 60.675547498000014 ], [ 7.732114500000023, 60.520970499999976 ], [ 7.488040500000011, 60.098838498000021 ], [ 7.096287500000017, 59.782777 ], [ 6.651835, 59.711413 ], [ 5.823972500000025, 59.645922998 ], [ 5.80379270899999, 59.649380173999987 ], [ 5.794665721, 59.650943915000028 ], [ 6.381009, 59.874691 ], [ 5.675114, 59.848640499 ], [ 5.994348, 59.954563 ], [ 6.0828945, 60.191448 ], [ 6.353219500000023, 60.370498998000016 ], [ 6.829082746999973, 60.471445758000016 ], [ 6.716949, 60.520217996999975 ], [ 6.0151285, 60.269165 ], [ 5.817266, 59.983326 ], [ 5.5750435, 60.153873498999985 ], [ 5.756293, 60.399605 ], [ 5.446748500000012, 60.156437000999972 ], [ 5.2010105, 60.290233501999978 ], [ 5.309116500000016, 60.388206502 ], [ 5.262637499999983, 60.505832496999972 ], [ 5.7384535, 60.459213499999976 ], [ 5.7344455, 60.673576500000024 ], [ 5.708317500000021, 60.471111501 ], [ 5.339822, 60.541588 ], [ 5.706546, 60.759361497999976 ], [ 5.280158, 60.540760001000024 ], [ 5.207727998999985, 60.621887001 ], [ 5.281049, 60.632553 ], [ 4.94567, 60.809383500000024 ], [ 5.469385499999987, 60.659252 ], [ 5.140299, 60.84025250000002 ], [ 5.115073511999981, 60.965715414999977 ] ] ], [ [ [ 5.396219498999983, 59.711742501 ], [ 5.183555500000011, 59.574615500999982 ], [ 5.0594595, 59.854045998 ], [ 5.179249, 59.877666498999986 ], [ 5.396219498999983, 59.711742501 ] ] ] ] } }, -{ "type": "Feature", "id": 1461, "properties": { "NUTS_ID": "NO06", "STAT_LEVL_": 2, "SHAPE_AREA": 7.1201230414800003, "SHAPE_LEN": 28.430885440099999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.514355244, 64.878553708000027 ], [ 11.278464499999984, 64.857429498999977 ], [ 11.9609795, 65.077147997999987 ], [ 11.981972, 65.070815497000012 ], [ 12.0461065, 65.06245 ], [ 12.092824, 65.0398255 ], [ 12.187348499999985, 65.000111498000024 ], [ 12.182329, 64.981381 ], [ 14.325985, 65.118916001 ], [ 13.654257500000028, 64.580340498999988 ], [ 14.113869500000021, 64.462484501 ], [ 14.157109, 64.195054497 ], [ 13.967524500000025, 64.00797 ], [ 12.683565, 63.9742235 ], [ 12.149767, 63.593946999000025 ], [ 11.974581, 63.269228 ], [ 12.0524555, 63.1834445 ], [ 12.218231, 63.000332500000013 ], [ 12.056142, 62.611918499000012 ], [ 12.2546595, 62.331024496999987 ], [ 10.1969, 62.687693500000023 ], [ 9.792455, 62.287932001 ], [ 9.062062, 62.372608497999977 ], [ 9.24373, 62.556077999000024 ], [ 8.919962, 62.711771 ], [ 9.463019499999973, 62.848407001 ], [ 9.4685455, 63.177874001000021 ], [ 8.764103, 63.18451 ], [ 8.832189, 63.201980000999981 ], [ 8.490692, 63.2775115 ], [ 8.765663999000026, 63.34213649899999 ], [ 8.650367, 63.400879 ], [ 8.7551115, 63.424341 ], [ 9.0929175, 63.287159 ], [ 9.501772, 63.39708699800002 ], [ 9.249117, 63.367828497 ], [ 9.147209, 63.488140000999977 ], [ 9.753410499999973, 63.645359000999974 ], [ 9.714933499999972, 63.615505000999974 ], [ 9.977688, 63.441615997999975 ], [ 9.8231755, 63.312244501 ], [ 10.85359, 63.439093496999988 ], [ 10.941581, 63.564289 ], [ 10.627927, 63.546741500999985 ], [ 11.458975, 63.802337500000021 ], [ 11.0724775, 63.858989501 ], [ 11.501289499999984, 64.005218501 ], [ 11.222313, 64.074219001000017 ], [ 10.5912035, 63.804355499999986 ], [ 11.070417500000019, 63.8419495 ], [ 10.955013501, 63.7456095 ], [ 10.170315, 63.526134496999987 ], [ 9.8057985, 63.626873 ], [ 10.130084, 63.754104499999983 ], [ 9.529121499999974, 63.712398496999981 ], [ 10.010268949000022, 64.045650763000026 ], [ 10.634974129999989, 64.391002416999982 ], [ 10.548171, 64.44136050100002 ], [ 11.3407555, 64.436919998 ], [ 11.225456, 64.311905001000014 ], [ 11.7259625, 64.584793 ], [ 11.1820715, 64.740906 ], [ 11.514355244, 64.878553708000027 ] ] ] } }, -{ "type": "Feature", "id": 1464, "properties": { "NUTS_ID": "NO07", "STAT_LEVL_": 2, "SHAPE_AREA": 22.165087784800001, "SHAPE_LEN": 102.592049905 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.548399, 70.96723950099999 ], [ 27.855804499999977, 70.430145499999981 ], [ 28.510006, 70.447929999 ], [ 28.397211, 70.542122001 ], [ 28.96657349899999, 70.884941 ], [ 31.060808, 70.287788501000023 ], [ 28.73865071, 70.155567389999987 ], [ 28.575159, 70.118652500999985 ], [ 29.767906536, 69.823490934 ], [ 29.459511, 69.648964001000024 ], [ 30.839926, 69.775808000999973 ], [ 30.954538500000012, 69.632432 ], [ 30.085324500000013, 69.658104501000025 ], [ 30.1884235, 69.568457500000022 ], [ 28.92968, 69.051905 ], [ 28.8057925, 69.111147 ], [ 29.336974, 69.478310500000021 ], [ 27.984522, 70.01396549899999 ], [ 25.950607, 69.6965505 ], [ 25.702101, 69.253661501000011 ], [ 25.777502500000026, 69.018279001 ], [ 24.903199500000028, 68.554591 ], [ 22.374526, 68.716667 ], [ 21.9836115, 69.072893500000021 ], [ 21.2788215, 69.311883998999974 ], [ 20.548636499999986, 69.059968501000014 ], [ 20.0600475, 69.045759001000022 ], [ 20.3358725, 68.802312500000028 ], [ 19.921397, 68.356013001 ], [ 18.125925, 68.536515999000017 ], [ 18.151354, 68.19879 ], [ 17.899761500000011, 67.969372 ], [ 17.281524, 68.118815 ], [ 16.158001500000012, 67.51915900099999 ], [ 16.387759, 67.045462499999985 ], [ 15.3772265, 66.484303996999984 ], [ 15.453994500000022, 66.345233501 ], [ 14.516289, 66.132579 ], [ 14.6254765, 65.811808499999984 ], [ 14.325985, 65.118916001 ], [ 12.182329, 64.981381 ], [ 12.9642955, 65.322120499999983 ], [ 12.041082500000016, 65.216194 ], [ 12.292716, 65.588462998000011 ], [ 12.781976499999985, 65.462524499999972 ], [ 12.347975, 65.627327 ], [ 12.646986, 65.814437997000027 ], [ 12.666879418, 65.920708010999988 ], [ 12.3801345, 65.894111 ], [ 14.147304500000018, 66.330467 ], [ 13.0099535, 66.191283999 ], [ 13.562423500000023, 66.30467999699999 ], [ 12.990386999, 66.348778 ], [ 13.733414499999981, 66.609176500999979 ], [ 13.2072895, 66.716881 ], [ 14.000651, 66.797889500999986 ], [ 13.492176, 66.949196500000028 ], [ 14.01318550000002, 66.961944501 ], [ 14.0676185, 67.161491501 ], [ 14.511739499999976, 67.207649 ], [ 15.08839799899999, 67.236534 ], [ 15.433605, 67.104980500000011 ], [ 15.481187, 67.1844635 ], [ 15.162948498999981, 67.329765 ], [ 14.308716, 67.263771 ], [ 15.650709213000027, 67.53825820899999 ], [ 15.160784499999977, 67.632698 ], [ 15.855372499999987, 67.7099 ], [ 14.75716, 67.804359499999975 ], [ 16.001165500000013, 67.996216002999972 ], [ 15.526616, 68.065216002 ], [ 15.395943499999987, 68.036521999 ], [ 15.440778500000022, 68.024948 ], [ 15.4147835, 67.995910499999979 ], [ 15.275926500000025, 68.050613 ], [ 16.062347499, 68.255936001 ], [ 16.819980499999986, 68.155219999 ], [ 16.275680500000021, 68.373138499999982 ], [ 17.900738, 68.417808 ], [ 16.075683500000025, 68.414055001 ], [ 16.5795895, 68.541367 ], [ 17.685274, 68.674110499999983 ], [ 17.251898, 68.75971199899999 ], [ 17.805559, 68.749992500000019 ], [ 17.447077, 68.907905501000016 ], [ 18.166633499, 69.1502 ], [ 17.96954549899999, 69.228561501 ], [ 18.238685499999974, 69.482642999 ], [ 19.547487499999988, 69.214874499000018 ], [ 18.934316500000023, 69.59994500099998 ], [ 19.2743185, 69.779205499999989 ], [ 20.394979499999977, 69.890387998999984 ], [ 19.930265500000019, 69.266662500999985 ], [ 20.459503, 69.762077498999986 ], [ 21.325062, 69.909232998999983 ], [ 21.241577, 70.008903499999974 ], [ 22.140845, 69.745193501000017 ], [ 21.727436, 70.05191050000002 ], [ 21.19089, 70.221240500000022 ], [ 21.424858, 70.22282400099999 ], [ 21.478477275999978, 70.200361853 ], [ 21.493496359, 70.199272055999984 ], [ 21.56427, 70.323387001000015 ], [ 21.8320885, 70.168754501000024 ], [ 21.782270499999981, 70.258720499999981 ], [ 21.983658, 70.329452499000013 ], [ 22.96682, 70.189369000999989 ], [ 23.001796500000012, 69.91750349900002 ], [ 23.407093, 69.964683499999978 ], [ 23.52833, 70.015915 ], [ 23.132837, 70.085571501 ], [ 23.179638, 70.216247501 ], [ 23.246681500000022, 70.248192 ], [ 24.090675499999975, 70.541496499 ], [ 24.298256, 70.686134501000026 ], [ 24.236952, 70.8358915 ], [ 24.553296499999988, 70.97564699899999 ], [ 25.911754499999972, 70.875648500000011 ], [ 25.086530499999981, 70.514610499000014 ], [ 24.912155, 70.096092 ], [ 25.153381500000023, 70.064895499999977 ], [ 26.572368499999982, 70.954368500999976 ], [ 26.733936500000027, 70.824897998999973 ], [ 26.475652500000024, 70.354866 ], [ 27.032476499999973, 70.483855999000014 ], [ 26.951067, 70.546791 ], [ 27.7029875, 70.800621001000025 ], [ 27.1011425, 70.93241899899999 ], [ 27.66123, 71.126999001 ], [ 28.548399, 70.96723950099999 ] ] ], [ [ [ 16.005573, 68.7555385 ], [ 15.7227115, 68.536804001 ], [ 16.076727, 68.748443499000018 ], [ 16.302828, 68.715187001 ], [ 16.123302500000023, 68.84416199899999 ], [ 16.409397, 68.857864499000016 ], [ 16.456951999000012, 68.557357998999976 ], [ 14.98062149899999, 68.273948500000017 ], [ 15.716285, 68.693619001 ], [ 15.464602500000012, 68.753418001 ], [ 15.619679500000018, 68.952705499999979 ], [ 15.959016500000018, 68.889045499000019 ], [ 15.963360495000018, 68.876588513 ], [ 15.988082191999979, 68.805695734999972 ], [ 16.005573, 68.7555385 ] ] ], [ [ [ 23.4573385, 70.765121500000021 ], [ 22.798172, 70.513825000999987 ], [ 21.928592499999979, 70.642860499999983 ], [ 23.4573385, 70.765121500000021 ] ] ], [ [ [ 18.080169500000011, 69.426903001000028 ], [ 16.782012999000017, 69.0575945 ], [ 17.658531, 69.487670998999988 ], [ 18.080169500000011, 69.426903001000028 ] ] ], [ [ [ 15.41872, 68.7030565 ], [ 14.368575998999972, 68.684494 ], [ 15.317963500000019, 68.917221 ], [ 15.253855, 68.755890001000012 ], [ 15.41872, 68.7030565 ] ] ], [ [ [ 15.165045500000019, 68.442626999000026 ], [ 14.206444499999975, 68.17415599899999 ], [ 14.4163855, 68.393623499 ], [ 15.165045500000019, 68.442626999000026 ] ] ] ] } }, -{ "type": "Feature", "id": 1470, "properties": { "NUTS_ID": "PL11", "STAT_LEVL_": 2, "SHAPE_AREA": 2.4276629344199998, "SHAPE_LEN": 6.7897286233400003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.432815, 51.33940499900001 ], [ 19.993847, 51.183954001000018 ], [ 20.0394705, 50.990206496999974 ], [ 19.74706, 50.86597000099999 ], [ 19.243142499999976, 51.036844497 ], [ 18.672954499000014, 51.056902501000025 ], [ 18.1636815, 51.172516997 ], [ 18.0745215, 51.349915001 ], [ 18.47196550000001, 51.851005499 ], [ 18.685665500000027, 51.821002997999983 ], [ 18.827809, 52.06418800099999 ], [ 19.04712, 52.332803999000021 ], [ 19.289184499999976, 52.39271249799998 ], [ 19.936101, 52.299733499000013 ], [ 20.658493, 51.724147999000024 ], [ 20.385006, 51.641610001 ], [ 20.4248905, 51.611619500000018 ], [ 20.528847499999983, 51.462917996999977 ], [ 20.432815, 51.33940499900001 ] ] ] } }, -{ "type": "Feature", "id": 1476, "properties": { "NUTS_ID": "PL12", "STAT_LEVL_": 2, "SHAPE_AREA": 4.6157702037700004, "SHAPE_LEN": 11.415563776799999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.128409, 52.287841500000013 ], [ 22.622901499000022, 52.018744497 ], [ 21.889174500000024, 51.973184 ], [ 21.879981, 51.69363149899999 ], [ 21.6155425, 51.617562 ], [ 21.87317600099999, 51.474913499000024 ], [ 21.802998, 51.072078998999984 ], [ 21.630164499999978, 51.06338899799999 ], [ 20.432815, 51.33940499900001 ], [ 20.528847499999983, 51.462917996999977 ], [ 20.4248905, 51.611619500000018 ], [ 20.385006, 51.641610001 ], [ 20.658493, 51.724147999000024 ], [ 19.936101, 52.299733499000013 ], [ 19.289184499999976, 52.39271249799998 ], [ 19.522742999, 52.74920049799999 ], [ 19.444664, 52.939042500000028 ], [ 19.684806, 52.963038998 ], [ 19.7615955, 53.15179649800001 ], [ 20.411137, 53.214165 ], [ 20.675953999, 53.269529498 ], [ 21.55169, 53.478128001000016 ], [ 21.598199912999974, 53.480181970999979 ], [ 21.735427500000014, 53.312727999 ], [ 21.694427500000018, 53.138093997999988 ], [ 22.453771500000016, 52.788238499999977 ], [ 22.408589, 52.609689999000011 ], [ 22.58041350000002, 52.393157997 ], [ 23.128409, 52.287841500000013 ] ] ] } }, -{ "type": "Feature", "id": 1486, "properties": { "NUTS_ID": "PL21", "STAT_LEVL_": 2, "SHAPE_AREA": 1.90934263009, "SHAPE_LEN": 6.1692243857299998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.208831499999974, 50.354897499 ], [ 21.150439, 49.976484500000026 ], [ 21.297149499999989, 49.842864 ], [ 21.241772, 49.776104499999974 ], [ 21.397712500000011, 49.433793998999988 ], [ 20.9237225, 49.296234498999979 ], [ 20.6149395, 49.417832998999984 ], [ 19.883929500000022, 49.204176999000026 ], [ 19.467386499999975, 49.613767 ], [ 19.414951499999972, 49.775265 ], [ 19.09321, 49.956658996999977 ], [ 19.253810499999986, 50.134193 ], [ 19.489045499999975, 50.397027499999979 ], [ 19.8445375, 50.434195499999987 ], [ 19.949966500000016, 50.504782501000022 ], [ 20.681539, 50.205875497000022 ], [ 21.208831499999974, 50.354897499 ] ] ] } }, -{ "type": "Feature", "id": 1493, "properties": { "NUTS_ID": "PL22", "STAT_LEVL_": 2, "SHAPE_AREA": 1.48515741573, "SHAPE_LEN": 6.2803044208900003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.74706, 50.86597000099999 ], [ 19.712949499999979, 50.729156000999978 ], [ 19.949966500000016, 50.504782501000022 ], [ 19.8445375, 50.434195499999987 ], [ 19.489045499999975, 50.397027499999979 ], [ 19.253810499999986, 50.134193 ], [ 19.09321, 49.956658996999977 ], [ 19.414951499999972, 49.775265 ], [ 19.467386499999975, 49.613767 ], [ 19.153403, 49.40377700099998 ], [ 18.851551, 49.51718900100002 ], [ 18.575724, 49.910423 ], [ 18.035060999, 50.06577199899999 ], [ 18.059780499999988, 50.174652499999979 ], [ 18.425866499999984, 50.248965498000018 ], [ 18.607473500000026, 50.550011 ], [ 18.615877500000011, 50.85358750099999 ], [ 18.672954499000014, 51.056902501000025 ], [ 19.243142499999976, 51.036844497 ], [ 19.74706, 50.86597000099999 ] ] ] } }, -{ "type": "Feature", "id": 1503, "properties": { "NUTS_ID": "PL31", "STAT_LEVL_": 2, "SHAPE_AREA": 3.2377427514699999, "SHAPE_LEN": 8.0098617805100005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.178338, 52.283140998000022 ], [ 23.653733, 52.072494999000014 ], [ 23.529021, 51.731750998999985 ], [ 23.617665999, 51.507613999 ], [ 23.709221, 51.277648498000019 ], [ 24.1457825, 50.869376999 ], [ 24.0345575, 50.44484350099998 ], [ 23.547642, 50.251602 ], [ 23.387574500000028, 50.405392999000014 ], [ 22.638222, 50.303077497 ], [ 22.437193, 50.399717499000019 ], [ 22.5862, 50.477348498000026 ], [ 22.519738, 50.583233499000016 ], [ 21.8643035, 50.80270649900001 ], [ 21.802998, 51.072078998999984 ], [ 21.87317600099999, 51.474913499000024 ], [ 21.6155425, 51.617562 ], [ 21.879981, 51.69363149899999 ], [ 21.889174500000024, 51.973184 ], [ 22.622901499000022, 52.018744497 ], [ 23.128409, 52.287841500000013 ], [ 23.178338, 52.283140998000022 ] ] ] } }, -{ "type": "Feature", "id": 1508, "properties": { "NUTS_ID": "PL32", "STAT_LEVL_": 2, "SHAPE_AREA": 2.3689456279900001, "SHAPE_LEN": 7.2683387219400002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.547642, 50.251602 ], [ 22.6861495, 49.57316549699999 ], [ 22.894087, 49.016692998999986 ], [ 22.56684, 49.088377498999989 ], [ 21.397712500000011, 49.433793998999988 ], [ 21.241772, 49.776104499999974 ], [ 21.297149499999989, 49.842864 ], [ 21.150439, 49.976484500000026 ], [ 21.208831499999974, 50.354897499 ], [ 21.8643035, 50.80270649900001 ], [ 22.519738, 50.583233499000016 ], [ 22.5862, 50.477348498000026 ], [ 22.437193, 50.399717499000019 ], [ 22.638222, 50.303077497 ], [ 23.387574500000028, 50.405392999000014 ], [ 23.547642, 50.251602 ] ] ] } }, -{ "type": "Feature", "id": 1513, "properties": { "NUTS_ID": "PL33", "STAT_LEVL_": 2, "SHAPE_AREA": 1.5499128468800001, "SHAPE_LEN": 5.2599395959399997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.802998, 51.072078998999984 ], [ 21.8643035, 50.80270649900001 ], [ 21.208831499999974, 50.354897499 ], [ 20.681539, 50.205875497000022 ], [ 19.949966500000016, 50.504782501000022 ], [ 19.712949499999979, 50.729156000999978 ], [ 19.74706, 50.86597000099999 ], [ 20.0394705, 50.990206496999974 ], [ 19.993847, 51.183954001000018 ], [ 20.432815, 51.33940499900001 ], [ 21.630164499999978, 51.06338899799999 ], [ 21.802998, 51.072078998999984 ] ] ] } }, -{ "type": "Feature", "id": 1516, "properties": { "NUTS_ID": "PL34", "STAT_LEVL_": 2, "SHAPE_AREA": 2.7322079498699998, "SHAPE_LEN": 7.5099734213299998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.51465, 53.956559997999989 ], [ 23.588702, 53.695928497000011 ], [ 23.918259, 53.157621999000014 ], [ 23.916239, 52.904812 ], [ 23.93864, 52.712916001 ], [ 23.178338, 52.283140998000022 ], [ 23.128409, 52.287841500000013 ], [ 22.58041350000002, 52.393157997 ], [ 22.408589, 52.609689999000011 ], [ 22.453771500000016, 52.788238499999977 ], [ 21.694427500000018, 53.138093997999988 ], [ 21.735427500000014, 53.312727999 ], [ 21.598199912999974, 53.480181970999979 ], [ 22.135728, 53.544539998 ], [ 22.703502500000013, 53.767354496999985 ], [ 22.782806, 53.915489498999989 ], [ 22.476556500000015, 54.201305500999979 ], [ 22.792095500000016, 54.363358996999978 ], [ 23.321498500000018, 54.25332599799998 ], [ 23.51465, 53.956559997999989 ] ] ] } }, -{ "type": "Feature", "id": 1521, "properties": { "NUTS_ID": "PL41", "STAT_LEVL_": 2, "SHAPE_AREA": 3.98911898331, "SHAPE_LEN": 10.1502319712 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.390653, 53.490964 ], [ 17.438793499999974, 53.26751450099999 ], [ 17.3015565, 52.994803 ], [ 17.509582500000022, 52.917767997 ], [ 17.458523, 52.738948000999983 ], [ 18.377150500000027, 52.53746350099999 ], [ 19.04712, 52.332803999000021 ], [ 18.827809, 52.06418800099999 ], [ 18.685665500000027, 51.821002997999983 ], [ 18.47196550000001, 51.851005499 ], [ 18.0745215, 51.349915001 ], [ 18.1636815, 51.172516997 ], [ 17.939456, 51.10886499899999 ], [ 17.795269500000018, 51.194146000999979 ], [ 17.556245, 51.58430149899999 ], [ 17.257433, 51.642843001000017 ], [ 16.828372, 51.57218799899999 ], [ 16.416191, 51.784865 ], [ 15.833296, 52.11112300100001 ], [ 15.880810499, 52.290429499000027 ], [ 15.776346499999988, 52.637869501000011 ], [ 15.946907, 52.75489599799999 ], [ 15.962497499999984, 53.041380996999976 ], [ 16.3173, 53.043952499999989 ], [ 16.6969115, 53.301046 ], [ 16.45421, 53.488475500999982 ], [ 16.892248, 53.655868999 ], [ 17.390653, 53.490964 ] ] ] } }, -{ "type": "Feature", "id": 1528, "properties": { "NUTS_ID": "PL42", "STAT_LEVL_": 2, "SHAPE_AREA": 3.1298885351300001, "SHAPE_LEN": 9.1584286662000007 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.892248, 53.655868999 ], [ 16.45421, 53.488475500999982 ], [ 16.6969115, 53.301046 ], [ 16.3173, 53.043952499999989 ], [ 15.962497499999984, 53.041380996999976 ], [ 14.904187, 52.883909499000026 ], [ 14.565063, 52.624497 ], [ 14.436438, 52.679900498999984 ], [ 14.156692, 52.895590998999978 ], [ 14.143658, 52.9613685 ], [ 14.412157, 53.329635998000015 ], [ 14.267542, 53.697806496999988 ], [ 14.619581499999981, 53.649783999000022 ], [ 14.573513, 53.849196999000014 ], [ 14.2130775, 53.866479498999979 ], [ 14.226302, 53.928652998000018 ], [ 15.388074500000016, 54.158907 ], [ 16.699085, 54.569247001 ], [ 16.858620499999972, 54.38257649799999 ], [ 16.792764499999976, 53.985550499999988 ], [ 16.982053499000017, 53.904909499999974 ], [ 16.892248, 53.655868999 ] ] ] } }, -{ "type": "Feature", "id": 1536, "properties": { "NUTS_ID": "RO42", "STAT_LEVL_": 2, "SHAPE_AREA": 3.6424982529699999, "SHAPE_LEN": 9.0187448510500001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.676575500000013, 46.405825497000023 ], [ 22.748716, 46.351207499999987 ], [ 23.234864, 46.030501996999988 ], [ 23.597270499999979, 45.473471499000027 ], [ 23.59064, 45.353072499 ], [ 22.686246499999982, 45.257960998999977 ], [ 22.656632, 45.108166997000012 ], [ 22.418032, 44.756857498999977 ], [ 22.207799, 44.816878497 ], [ 22.154162, 44.59519949700001 ], [ 22.016132500000026, 44.599202499 ], [ 22.012350500000025, 44.602318498999978 ], [ 21.35847, 44.82161199699999 ], [ 21.560126500000024, 44.8890065 ], [ 21.479178499999989, 45.193027501000017 ], [ 21.016575, 45.324627497999984 ], [ 20.662833, 45.794115998999985 ], [ 20.264296, 46.1263735 ], [ 20.705303500000014, 46.160937499 ], [ 20.7756, 46.275909999000021 ], [ 21.103170499999976, 46.262590497000019 ], [ 21.441398, 46.651467 ], [ 22.676575500000013, 46.405825497000023 ] ] ] } }, -{ "type": "Feature", "id": 1543, "properties": { "NUTS_ID": "SE11", "STAT_LEVL_": 2, "SHAPE_AREA": 1.0267044483600001, "SHAPE_LEN": 5.9373756798599997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.572396, 58.950852498000017 ], [ 17.245373001000019, 59.204196997999986 ], [ 17.416126500000018, 59.384139998000023 ], [ 17.629102499999988, 59.693004496000015 ], [ 18.3647995, 59.864387497 ], [ 18.513265499999989, 60.14808899799999 ], [ 18.838097, 60.110722501 ], [ 19.0854185, 59.758264497000027 ], [ 18.058382209, 59.379042366000022 ], [ 18.138552267000023, 59.332316024000022 ], [ 18.708546500000011, 59.290029998000023 ], [ 17.991549570000018, 58.966979990000027 ], [ 17.868635241999982, 58.847063186000014 ], [ 17.850585, 58.901825998999982 ], [ 17.827534277999973, 58.884624761999987 ], [ 17.605396633, 58.94228633099999 ], [ 17.592441408000013, 58.945649194 ], [ 17.572396, 58.950852498000017 ] ] ] } }, -{ "type": "Feature", "id": 1545, "properties": { "NUTS_ID": "SE12", "STAT_LEVL_": 2, "SHAPE_AREA": 6.6381811610500003, "SHAPE_LEN": 16.423212745299999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.513265499999989, 60.14808899799999 ], [ 18.3647995, 59.864387497 ], [ 17.629102499999988, 59.693004496000015 ], [ 17.416126500000018, 59.384139998000023 ], [ 17.245373001000019, 59.204196997999986 ], [ 17.572396, 58.950852498000017 ], [ 16.75066350100002, 58.626932001 ], [ 16.218891636000023, 58.625096370999984 ], [ 16.948542, 58.4797815 ], [ 16.414471, 58.475954499000011 ], [ 16.927406, 58.335789498 ], [ 16.627013499999975, 58.356352500000014 ], [ 16.854670499, 58.172553497000024 ], [ 16.666683499999976, 57.996076497999979 ], [ 16.239588, 58.134933499999988 ], [ 15.942313999000021, 57.803287497999975 ], [ 15.421051, 57.704879498000025 ], [ 15.1283585, 57.716312501 ], [ 14.982714, 58.1491125 ], [ 14.41671, 58.187240497 ], [ 14.778936499, 58.645992501000023 ], [ 14.295995, 59.012779501000011 ], [ 14.437155500000017, 60.026160996999977 ], [ 15.422092500000019, 59.854747499999974 ], [ 15.801567, 60.179103499 ], [ 16.703831, 60.195720498000014 ], [ 17.192478, 60.300712499999975 ], [ 17.370218, 60.654461500000025 ], [ 17.675121999, 60.505647996999983 ], [ 17.9892855, 60.6041095 ], [ 18.617636, 60.232382500000028 ], [ 18.310146499999973, 60.316625499999986 ], [ 18.513265499999989, 60.14808899799999 ] ] ] } }, -{ "type": "Feature", "id": 1552, "properties": { "NUTS_ID": "SE21", "STAT_LEVL_": 2, "SHAPE_AREA": 5.3215564680699998, "SHAPE_LEN": 16.526624023499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.1283585, 57.716312501 ], [ 15.421051, 57.704879498000025 ], [ 15.942313999000021, 57.803287497999975 ], [ 16.239588, 58.134933499999988 ], [ 16.666683499999976, 57.996076497999979 ], [ 16.690222393, 57.99604851399999 ], [ 16.73475643099999, 57.995995569 ], [ 16.813461, 57.995902 ], [ 16.727634500000022, 57.443552997999973 ], [ 16.0498715, 56.321888500999989 ], [ 15.586373499999979, 56.48294 ], [ 15.363503499999979, 56.48237599700002 ], [ 14.514669500000025, 56.460036998000021 ], [ 13.462636499999974, 56.428188501000022 ], [ 13.298661, 56.823604500999977 ], [ 13.681201, 56.972114501000021 ], [ 13.100760499999978, 57.145515499 ], [ 13.688058, 57.558208501000024 ], [ 13.772147, 58.048560996999981 ], [ 14.41671, 58.187240497 ], [ 14.982714, 58.1491125 ], [ 15.1283585, 57.716312501 ] ] ], [ [ [ 18.711624, 57.244686498000021 ], [ 18.340005500000018, 57.072327998999981 ], [ 18.091156, 57.259374001000026 ], [ 18.106193500000018, 57.53464150100001 ], [ 18.777192500000012, 57.867417000999978 ], [ 19.097435, 57.819173001000024 ], [ 18.810876, 57.705975501000012 ], [ 18.761467499999981, 57.469703501000026 ], [ 18.917816500000015, 57.403347499 ], [ 18.711624, 57.244686498000021 ] ] ], [ [ [ 17.07371999899999, 57.179024001000016 ], [ 16.400671, 56.195806996999977 ], [ 16.413673, 56.589974499999983 ], [ 16.959014, 57.291363499999989 ], [ 17.076804309000011, 57.355879516000016 ], [ 17.07371999899999, 57.179024001000016 ] ] ] ] } }, -{ "type": "Feature", "id": 1557, "properties": { "NUTS_ID": "SI04", "STAT_LEVL_": 2, "SHAPE_AREA": 0.89638290032699997, "SHAPE_LEN": 5.5475772181199998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5651755, 46.372453496999981 ], [ 14.565212, 46.367696998999975 ], [ 14.908764500000018, 46.207565998 ], [ 14.711757499999976, 46.07792999899999 ], [ 14.948575, 45.978610496999977 ], [ 14.564807499999972, 45.791461998999978 ], [ 14.129577499999982, 45.869498998999973 ], [ 14.0423715, 45.761358998999981 ], [ 14.11819650000001, 45.48123899699999 ], [ 14.109059, 45.482458496999982 ], [ 13.583067, 45.477409997 ], [ 13.7228235, 45.594725497000013 ], [ 13.9186565, 45.63351749899999 ], [ 13.596243, 45.807937501000026 ], [ 13.597145, 45.81952250099999 ], [ 13.496938999, 46.051334999 ], [ 13.664347500000019, 46.177549999 ], [ 13.3754925, 46.29823249899999 ], [ 13.684032, 46.437472501 ], [ 13.714184999, 46.522703499999977 ], [ 14.434500500000013, 46.442943501 ], [ 14.5651755, 46.372453496999981 ] ] ] } }, -{ "type": "Feature", "id": 1564, "properties": { "NUTS_ID": "SK01", "STAT_LEVL_": 2, "SHAPE_AREA": 0.243769281699, "SHAPE_LEN": 1.8834293815700001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.247427500000015, 48.012008998999988 ], [ 17.1607975, 48.006656501 ], [ 17.066741, 48.11868149899999 ], [ 16.976203, 48.172244498 ], [ 16.851106, 48.438635001000023 ], [ 16.949778, 48.535791999000025 ], [ 17.235799, 48.567409500999986 ], [ 17.477537, 48.3525785 ], [ 17.529213, 48.196497500000021 ], [ 17.247427500000015, 48.012008998999988 ] ] ] } }, -{ "type": "Feature", "id": 1566, "properties": { "NUTS_ID": "SK02", "STAT_LEVL_": 2, "SHAPE_AREA": 1.83780527502, "SHAPE_LEN": 6.9407493556400004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0143225, 48.077736499000025 ], [ 18.928392, 48.056832499 ], [ 18.7548155, 47.975082499 ], [ 18.848478, 47.818228001000023 ], [ 17.893923, 47.739456999000026 ], [ 17.705436500000019, 47.758992498999987 ], [ 17.247427500000015, 48.012008998999988 ], [ 17.529213, 48.196497500000021 ], [ 17.477537, 48.3525785 ], [ 17.235799, 48.567409500999986 ], [ 16.949778, 48.535791999000025 ], [ 16.940278, 48.617245498999978 ], [ 17.2016625, 48.878028997 ], [ 17.3967255, 48.813349997999978 ], [ 17.64693, 48.854265998000017 ], [ 18.322436, 49.315059 ], [ 18.826351, 48.744058999 ], [ 18.478677, 48.548603997999976 ], [ 19.062313, 48.188361499999985 ], [ 19.0143225, 48.077736499000025 ] ] ] } }, -{ "type": "Feature", "id": 1570, "properties": { "NUTS_ID": "SK03", "STAT_LEVL_": 2, "SHAPE_AREA": 1.9631115984, "SHAPE_LEN": 6.5273432752599998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.883929500000022, 49.204176999000026 ], [ 19.992254499000012, 48.907499998999981 ], [ 20.2674505, 48.874073001 ], [ 20.1822955, 48.728225 ], [ 20.463937, 48.463967 ], [ 20.051879, 48.16770399699999 ], [ 19.0143225, 48.077736499000025 ], [ 19.062313, 48.188361499999985 ], [ 18.478677, 48.548603997999976 ], [ 18.826351, 48.744058999 ], [ 18.322436, 49.315059 ], [ 18.4035955, 49.396745499000019 ], [ 18.851551, 49.51718900100002 ], [ 19.153403, 49.40377700099998 ], [ 19.467386499999975, 49.613767 ], [ 19.883929500000022, 49.204176999000026 ] ] ] } }, -{ "type": "Feature", "id": 1573, "properties": { "NUTS_ID": "SK04", "STAT_LEVL_": 2, "SHAPE_AREA": 1.9131529494, "SHAPE_LEN": 6.5505345016699996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.56684, 49.088377498999989 ], [ 22.382817499999987, 48.86226399899999 ], [ 22.155306, 48.403396499 ], [ 22.121077500000013, 48.378311499 ], [ 21.721957, 48.351050499 ], [ 21.440056, 48.585232999000027 ], [ 20.463937, 48.463967 ], [ 20.1822955, 48.728225 ], [ 20.2674505, 48.874073001 ], [ 19.992254499000012, 48.907499998999981 ], [ 19.883929500000022, 49.204176999000026 ], [ 20.6149395, 49.417832998999984 ], [ 20.9237225, 49.296234498999979 ], [ 21.397712500000011, 49.433793998999988 ], [ 22.56684, 49.088377498999989 ] ] ] } }, -{ "type": "Feature", "id": 1578, "properties": { "NUTS_ID": "TR10", "STAT_LEVL_": 2, "SHAPE_AREA": 0.63573077059399996, "SHAPE_LEN": 4.8702439844700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.0726335, 41.124540498999977 ], [ 28.824152, 40.954229499 ], [ 27.991102500000011, 41.018344997999975 ], [ 28.181659498999977, 41.564058999 ], [ 29.1158845, 41.228910498 ], [ 29.037527, 41.155839999000023 ], [ 29.0726335, 41.124540498999977 ] ] ], [ [ [ 29.849114, 41.064824498 ], [ 29.342517499999985, 40.807657499000015 ], [ 29.031469500000014, 40.967085 ], [ 29.087270499999988, 41.178521999 ], [ 29.265264, 41.230552 ], [ 29.865624500000024, 41.143447498 ], [ 29.849114, 41.064824498 ] ] ] ] } }, -{ "type": "Feature", "id": 1581, "properties": { "NUTS_ID": "TR21", "STAT_LEVL_": 2, "SHAPE_AREA": 1.99841529999, "SHAPE_LEN": 6.7315670669400003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.035512499999982, 41.983079498999984 ], [ 28.152973, 41.57896249700002 ], [ 28.181659498999977, 41.564058999 ], [ 27.991102500000011, 41.018344997999975 ], [ 27.5128535, 40.974729497 ], [ 26.968651500000021, 40.553368998999986 ], [ 26.962811, 40.667037999 ], [ 26.773845, 40.741130999 ], [ 26.734886500000016, 40.64293299799999 ], [ 26.151155500000016, 40.5893155 ], [ 26.032758, 40.730256999 ], [ 26.291015500000015, 40.93188349899998 ], [ 26.321652, 41.250406499 ], [ 26.628431499999976, 41.345533499 ], [ 26.6001205, 41.601198997999973 ], [ 26.357879, 41.711104498999987 ], [ 26.561544500000025, 41.92627349899999 ], [ 26.9492285, 42.000213498999983 ], [ 27.059650499999975, 42.088336997999988 ], [ 27.559395, 41.904781496999988 ], [ 28.035512499999982, 41.983079498999984 ] ] ] } }, -{ "type": "Feature", "id": 1585, "properties": { "NUTS_ID": "TR22", "STAT_LEVL_": 2, "SHAPE_AREA": 2.5807494770199999, "SHAPE_LEN": 10.9485000929 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.164779, 40.395613 ], [ 28.067550499999982, 40.253133999 ], [ 28.2650375, 39.870233998 ], [ 28.968574, 39.600677499000028 ], [ 28.885427, 39.372048998000025 ], [ 28.597988, 39.280636 ], [ 28.652546500000028, 39.147368498999981 ], [ 28.15897, 39.05698399900001 ], [ 27.800632, 39.313108 ], [ 27.381316, 39.352746501000013 ], [ 26.763921, 39.175209999 ], [ 26.671144500000025, 39.279348497 ], [ 26.950548500000025, 39.559968498999979 ], [ 26.618685, 39.547879498999976 ], [ 26.062643, 39.479497998999989 ], [ 26.179243, 39.99143399799999 ], [ 26.7568455, 40.403798998000013 ], [ 27.319921500000021, 40.433412498 ], [ 27.5062805, 40.304677998999978 ], [ 27.879064500000027, 40.372956998 ], [ 27.753523, 40.528421498 ], [ 28.016809500000022, 40.447443 ], [ 28.164779, 40.395613 ] ] ], [ [ [ 26.968651500000021, 40.553368998999986 ], [ 26.165872499999978, 40.052561 ], [ 26.218675500000018, 40.319448497 ], [ 26.838197499999978, 40.58582499900001 ], [ 26.734886500000016, 40.64293299799999 ], [ 26.773845, 40.741130999 ], [ 26.962811, 40.667037999 ], [ 26.968651500000021, 40.553368998999986 ] ] ] ] } }, -{ "type": "Feature", "id": 1589, "properties": { "NUTS_ID": "TR31", "STAT_LEVL_": 2, "SHAPE_AREA": 1.1209372772199999, "SHAPE_LEN": 8.1125298209400007 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.4426095, 38.104661498999974 ], [ 28.285376, 38.110739498999976 ], [ 27.264569, 37.875048498000012 ], [ 26.757936500000028, 38.221479499999987 ], [ 26.5912, 38.102750497999978 ], [ 26.281446500000015, 38.26644349899999 ], [ 26.344708121999986, 38.485118011 ], [ 26.348637239000027, 38.49869967 ], [ 26.397398, 38.667249498999979 ], [ 26.6252955, 38.52710550099999 ], [ 26.674020499999983, 38.311987 ], [ 27.167742, 38.440419999000028 ], [ 26.73378550000001, 38.653470998999978 ], [ 27.06627450000002, 38.877225997999972 ], [ 26.763921, 39.175209999 ], [ 27.381316, 39.352746501000013 ], [ 27.4262905, 38.944966498999975 ], [ 27.101313499000014, 38.77824549799999 ], [ 27.260101500000019, 38.548467501 ], [ 28.286419500000022, 38.319715998999982 ], [ 28.4426095, 38.104661498999974 ] ] ] } }, -{ "type": "Feature", "id": 1591, "properties": { "NUTS_ID": "TR32", "STAT_LEVL_": 2, "SHAPE_AREA": 3.1947943783300001, "SHAPE_LEN": 13.064469818599999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.852119, 37.752285498999981 ], [ 29.500381, 37.618871997999975 ], [ 29.606530500000019, 37.395360998 ], [ 29.341447, 37.006848998 ], [ 29.71326449899999, 36.956309498999985 ], [ 29.637207, 36.669686001 ], [ 29.2605615, 36.304398998000011 ], [ 29.102026, 36.386720497999988 ], [ 29.103811, 36.670343498000022 ], [ 28.928788999, 36.754858001 ], [ 28.851038, 36.662084499 ], [ 28.270406499999979, 36.852479997999978 ], [ 27.979345500000022, 36.553571498 ], [ 28.131860500000016, 36.793966501 ], [ 27.374422, 36.685484 ], [ 28.032835, 36.787759999 ], [ 28.330560499, 37.033395498 ], [ 27.565542, 36.977285499 ], [ 27.4248715, 37.03574199799999 ], [ 27.264269, 36.964120998 ], [ 27.32292, 37.15848349800001 ], [ 27.47090350000002, 37.08077799900002 ], [ 27.611025, 37.257513 ], [ 27.404363, 37.368095 ], [ 27.424582461, 37.407003472999975 ], [ 27.419004802000018, 37.41190175600002 ], [ 27.202436499999976, 37.350824499999987 ], [ 27.21665, 37.59111199900002 ], [ 27.003069, 37.659795998999982 ], [ 27.234331, 37.72418399899999 ], [ 27.264569, 37.875048498000012 ], [ 28.285376, 38.110739498999976 ], [ 28.4426095, 38.104661498999974 ], [ 28.616089, 38.089585999 ], [ 28.847341500000027, 38.240428501 ], [ 29.580195, 38.246578499 ], [ 29.755703499999981, 38.484307496999975 ], [ 30.027253499999972, 38.214679499999988 ], [ 29.653922500000022, 37.960175499 ], [ 29.852119, 37.752285498999981 ] ] ] } }, -{ "type": "Feature", "id": 1595, "properties": { "NUTS_ID": "TR33", "STAT_LEVL_": 2, "SHAPE_AREA": 4.8043626292099999, "SHAPE_LEN": 12.866254769399999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.6197325, 39.10305549899999 ], [ 31.621331, 38.619947497999988 ], [ 31.233349499999974, 38.409972998 ], [ 30.986741, 38.466414499 ], [ 30.039979500000015, 37.752413999 ], [ 29.852119, 37.752285498999981 ], [ 29.653922500000022, 37.960175499 ], [ 30.027253499999972, 38.214679499999988 ], [ 29.755703499999981, 38.484307496999975 ], [ 29.580195, 38.246578499 ], [ 28.847341500000027, 38.240428501 ], [ 28.616089, 38.089585999 ], [ 28.4426095, 38.104661498999974 ], [ 28.286419500000022, 38.319715998999982 ], [ 27.260101500000019, 38.548467501 ], [ 27.101313499000014, 38.77824549799999 ], [ 27.4262905, 38.944966498999975 ], [ 27.381316, 39.352746501000013 ], [ 27.800632, 39.313108 ], [ 28.15897, 39.05698399900001 ], [ 28.652546500000028, 39.147368498999981 ], [ 28.597988, 39.280636 ], [ 28.885427, 39.372048998000025 ], [ 28.968574, 39.600677499000028 ], [ 29.1940935, 39.600573998000016 ], [ 29.396933, 39.901012499999979 ], [ 29.74218350000001, 39.871334 ], [ 29.760535, 39.710123497999973 ], [ 30.0601345, 39.658641 ], [ 30.355477, 39.499004999000022 ], [ 30.429491499999983, 39.217612498999983 ], [ 30.741455499999972, 39.126772999000025 ], [ 31.192543, 39.279110498000023 ], [ 31.6197325, 39.10305549899999 ] ] ] } }, -{ "type": "Feature", "id": 1601, "properties": { "NUTS_ID": "TR41", "STAT_LEVL_": 2, "SHAPE_AREA": 3.0588850509899999, "SHAPE_LEN": 9.9751178265299991 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.82533, 40.125784499000019 ], [ 31.676844, 40.035240500999976 ], [ 32.069824, 39.276070998000023 ], [ 31.8153175, 39.128693499 ], [ 31.6197325, 39.10305549899999 ], [ 31.192543, 39.279110498000023 ], [ 30.741455499999972, 39.126772999000025 ], [ 30.429491499999983, 39.217612498999983 ], [ 30.355477, 39.499004999000022 ], [ 30.0601345, 39.658641 ], [ 29.760535, 39.710123497999973 ], [ 29.74218350000001, 39.871334 ], [ 29.396933, 39.901012499999979 ], [ 29.1940935, 39.600573998000016 ], [ 28.968574, 39.600677499000028 ], [ 28.2650375, 39.870233998 ], [ 28.067550499999982, 40.253133999 ], [ 28.164779, 40.395613 ], [ 29.154478, 40.425374998999985 ], [ 28.991232500000024, 40.466273498000021 ], [ 29.4102205, 40.550392499 ], [ 29.924952, 40.551626499 ], [ 29.964417, 40.522084499000016 ], [ 30.521932, 40.294341501000019 ], [ 30.650090499999976, 40.144735998999977 ], [ 30.82533, 40.125784499000019 ] ] ] } }, -{ "type": "Feature", "id": 1605, "properties": { "NUTS_ID": "TR42", "STAT_LEVL_": 2, "SHAPE_AREA": 2.0869899628800002, "SHAPE_LEN": 9.4248561123200005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.2956565, 41.11632 ], [ 31.75363, 41.005629999 ], [ 32.134024, 41.030704 ], [ 32.560043, 40.807477499000015 ], [ 32.554816, 40.691943998 ], [ 31.911622, 40.328740498 ], [ 31.128547500000025, 40.36527999899999 ], [ 30.82533, 40.125784499000019 ], [ 30.650090499999976, 40.144735998999977 ], [ 30.521932, 40.294341501000019 ], [ 29.964417, 40.522084499000016 ], [ 29.924952, 40.551626499 ], [ 29.4102205, 40.550392499 ], [ 28.991232500000024, 40.466273498000021 ], [ 28.780161, 40.53619199799999 ], [ 29.546993, 40.695436 ], [ 29.9421865, 40.750489999000024 ], [ 29.342517499999985, 40.807657499000015 ], [ 29.849114, 41.064824498 ], [ 29.865624500000024, 41.143447498 ], [ 30.354686500000014, 41.184194499 ], [ 30.9820555, 41.072602501 ], [ 31.2956565, 41.11632 ] ] ] } }, -{ "type": "Feature", "id": 1612, "properties": { "NUTS_ID": "TR51", "STAT_LEVL_": 2, "SHAPE_AREA": 2.6770228737599999, "SHAPE_LEN": 9.7096746052899991 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.695422, 40.33224149900002 ], [ 33.247372499999983, 39.64108699799999 ], [ 33.441716, 39.35144900099999 ], [ 33.886019, 39.043412499 ], [ 33.722786, 38.942947998000022 ], [ 33.7054745, 38.680822499999977 ], [ 33.464405, 38.636591499000019 ], [ 33.337978, 39.050211998 ], [ 32.992395499999986, 39.244097001 ], [ 32.44286, 38.958912999 ], [ 31.8153175, 39.128693499 ], [ 32.069824, 39.276070998000023 ], [ 31.676844, 40.035240500999976 ], [ 30.82533, 40.125784499000019 ], [ 31.128547500000025, 40.36527999899999 ], [ 31.911622, 40.328740498 ], [ 32.554816, 40.691943998 ], [ 32.972095498999977, 40.615893501000016 ], [ 33.220758999, 40.320784498000023 ], [ 33.695422, 40.33224149900002 ] ] ] } }, -{ "type": "Feature", "id": 1614, "properties": { "NUTS_ID": "TR52", "STAT_LEVL_": 2, "SHAPE_AREA": 5.1009588366400003, "SHAPE_LEN": 11.336343491499999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.464405, 38.636591499000019 ], [ 33.2033695, 38.278494001000013 ], [ 33.3944535, 37.97126099799999 ], [ 34.033573499999989, 38.004810997999982 ], [ 34.4004265, 37.751674998999988 ], [ 34.3350345, 37.479407497000011 ], [ 34.428914500000019, 37.316384998999979 ], [ 33.997476, 37.097663997999973 ], [ 32.95091050000002, 36.831344999 ], [ 33.238955499999975, 36.520920999 ], [ 32.573227, 36.357624 ], [ 32.457231499999978, 36.738470999000015 ], [ 31.740267500000016, 37.35582599899999 ], [ 31.4533915, 37.333832998999981 ], [ 31.300975, 37.404258997999989 ], [ 31.419393, 37.973507997000013 ], [ 31.5975305, 38.0560855 ], [ 31.233349499999974, 38.409972998 ], [ 31.621331, 38.619947497999988 ], [ 31.6197325, 39.10305549899999 ], [ 31.8153175, 39.128693499 ], [ 32.44286, 38.958912999 ], [ 32.992395499999986, 39.244097001 ], [ 33.337978, 39.050211998 ], [ 33.464405, 38.636591499000019 ] ] ] } }, -{ "type": "Feature", "id": 1618, "properties": { "NUTS_ID": "TR61", "STAT_LEVL_": 2, "SHAPE_AREA": 3.62010169803, "SHAPE_LEN": 11.1316431683 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.233349499999974, 38.409972998 ], [ 31.5975305, 38.0560855 ], [ 31.419393, 37.973507997000013 ], [ 31.300975, 37.404258997999989 ], [ 31.4533915, 37.333832998999981 ], [ 31.740267500000016, 37.35582599899999 ], [ 32.457231499999978, 36.738470999000015 ], [ 32.573227, 36.357624 ], [ 32.57634, 36.093232999 ], [ 32.029032, 36.538202499000022 ], [ 30.698167500000011, 36.884519497999975 ], [ 30.327932499999974, 36.296952998999984 ], [ 29.644518, 36.196329 ], [ 29.2605615, 36.304398998000011 ], [ 29.637207, 36.669686001 ], [ 29.71326449899999, 36.956309498999985 ], [ 29.341447, 37.006848998 ], [ 29.606530500000019, 37.395360998 ], [ 29.500381, 37.618871997999975 ], [ 29.852119, 37.752285498999981 ], [ 30.039979500000015, 37.752413999 ], [ 30.986741, 38.466414499 ], [ 31.233349499999974, 38.409972998 ] ] ] } }, -{ "type": "Feature", "id": 1622, "properties": { "NUTS_ID": "TR62", "STAT_LEVL_": 2, "SHAPE_AREA": 3.04327508632, "SHAPE_LEN": 11.081011848099999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.440496, 38.21943249899999 ], [ 36.303865, 37.734576499000013 ], [ 36.0404835, 37.660304999 ], [ 35.884942498999976, 37.344126499000026 ], [ 35.856385, 37.169712998000023 ], [ 36.0454575, 37.188982999000018 ], [ 36.05271, 37.018507999 ], [ 35.963096, 36.902986999 ], [ 35.56584, 36.5647945 ], [ 35.339365, 36.538526499 ], [ 34.899245, 36.738280998999983 ], [ 34.5607205, 36.768163496999989 ], [ 33.68421, 36.133401999 ], [ 32.57634, 36.093232999 ], [ 32.573227, 36.357624 ], [ 33.238955499999975, 36.520920999 ], [ 32.95091050000002, 36.831344999 ], [ 33.997476, 37.097663997999973 ], [ 34.428914500000019, 37.316384998999979 ], [ 34.748, 37.409303998999974 ], [ 34.8854045, 37.67054299900002 ], [ 35.218708, 37.759224499000027 ], [ 35.574764, 37.737158498999975 ], [ 35.6144215, 37.962110999 ], [ 36.253814, 38.379422998999985 ], [ 36.440496, 38.21943249899999 ] ] ] } }, -{ "type": "Feature", "id": 1625, "properties": { "NUTS_ID": "TR63", "STAT_LEVL_": 2, "SHAPE_AREA": 2.3721356137599998, "SHAPE_LEN": 9.2624314110399997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.6386675, 37.931167 ], [ 37.432401, 37.641709 ], [ 37.623216500000012, 37.511652497 ], [ 37.08278, 37.175676 ], [ 36.901796, 37.333660499000018 ], [ 36.697388499999988, 37.218142496999974 ], [ 36.465673, 36.94866749900001 ], [ 36.660010393999983, 36.833231536000028 ], [ 36.549576, 36.487769997999976 ], [ 36.683648, 36.236783499000012 ], [ 36.39222, 36.213326 ], [ 36.37497, 35.99791399899999 ], [ 36.168469, 35.819717997999987 ], [ 35.917953, 35.928695499000014 ], [ 35.978777, 36.019441498999981 ], [ 35.779623, 36.318555998000022 ], [ 36.2157305, 36.65963549899999 ], [ 36.1485765, 36.855066498999975 ], [ 35.963096, 36.902986999 ], [ 36.05271, 37.018507999 ], [ 36.0454575, 37.188982999000018 ], [ 35.856385, 37.169712998000023 ], [ 35.884942498999976, 37.344126499000026 ], [ 36.0404835, 37.660304999 ], [ 36.303865, 37.734576499000013 ], [ 36.440496, 38.21943249899999 ], [ 36.769845499999974, 38.546435998999982 ], [ 37.341487, 38.593515498999977 ], [ 37.259534499999972, 38.479911 ], [ 37.7602465, 38.203050997999981 ], [ 37.6386675, 37.931167 ] ] ] } }, -{ "type": "Feature", "id": 1630, "properties": { "NUTS_ID": "TR71", "STAT_LEVL_": 2, "SHAPE_AREA": 3.2471589654400002, "SHAPE_LEN": 9.3844985226300004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.9162255, 40.263038 ], [ 34.175507, 39.940434 ], [ 34.108037, 39.793002498000021 ], [ 34.6441815, 39.41150399899999 ], [ 34.9147415, 39.283632497999974 ], [ 35.034188, 39.004880997999976 ], [ 34.9680335, 38.788846998999986 ], [ 35.083858, 38.570535498000027 ], [ 34.885322, 38.344688497999982 ], [ 35.2656685, 38.106019998000022 ], [ 35.218708, 37.759224499000027 ], [ 34.8854045, 37.67054299900002 ], [ 34.748, 37.409303998999974 ], [ 34.428914500000019, 37.316384998999979 ], [ 34.3350345, 37.479407497000011 ], [ 34.4004265, 37.751674998999988 ], [ 34.033573499999989, 38.004810997999982 ], [ 33.3944535, 37.97126099799999 ], [ 33.2033695, 38.278494001000013 ], [ 33.464405, 38.636591499000019 ], [ 33.7054745, 38.680822499999977 ], [ 33.722786, 38.942947998000022 ], [ 33.886019, 39.043412499 ], [ 33.441716, 39.35144900099999 ], [ 33.247372499999983, 39.64108699799999 ], [ 33.695422, 40.33224149900002 ], [ 33.9162255, 40.263038 ] ] ] } }, -{ "type": "Feature", "id": 1636, "properties": { "NUTS_ID": "TR72", "STAT_LEVL_": 2, "SHAPE_AREA": 6.2061808062699999, "SHAPE_LEN": 13.508281758100001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.78355, 40.083271498999977 ], [ 38.3667795, 39.93940199799999 ], [ 38.349975, 39.149943496999981 ], [ 37.825541, 39.093950499000016 ], [ 37.341487, 38.593515498999977 ], [ 36.769845499999974, 38.546435998999982 ], [ 36.440496, 38.21943249899999 ], [ 36.253814, 38.379422998999985 ], [ 35.6144215, 37.962110999 ], [ 35.574764, 37.737158498999975 ], [ 35.218708, 37.759224499000027 ], [ 35.2656685, 38.106019998000022 ], [ 34.885322, 38.344688497999982 ], [ 35.083858, 38.570535498000027 ], [ 34.9680335, 38.788846998999986 ], [ 35.034188, 39.004880997999976 ], [ 34.9147415, 39.283632497999974 ], [ 34.6441815, 39.41150399899999 ], [ 34.108037, 39.793002498000021 ], [ 34.175507, 39.940434 ], [ 35.072878, 40.012056498999982 ], [ 35.1556395, 40.226113 ], [ 35.35115, 40.2433805 ], [ 35.442588, 40.23402249899999 ], [ 36.003423, 39.95451049799999 ], [ 36.606419500000015, 39.980525999 ], [ 36.8059275, 40.228436999 ], [ 37.450466, 40.170535498999982 ], [ 37.584064, 40.424386998999978 ], [ 37.73245750000001, 40.3425095 ], [ 38.148452500000019, 40.524218497999982 ], [ 38.213064, 40.213312498999983 ], [ 38.78355, 40.083271498999977 ] ] ] } }, -{ "type": "Feature", "id": 1641, "properties": { "NUTS_ID": "TR81", "STAT_LEVL_": 2, "SHAPE_AREA": 0.99100333273499996, "SHAPE_LEN": 4.7303579945500003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.560043, 40.807477499000015 ], [ 32.134024, 41.030704 ], [ 31.75363, 41.005629999 ], [ 31.2956565, 41.11632 ], [ 31.403204, 41.317392498 ], [ 32.062578, 41.580305999000018 ], [ 32.736103500000013, 41.849009498999976 ], [ 32.776286, 41.58835299899999 ], [ 32.884223500000019, 41.575608999 ], [ 33.127837, 41.414297 ], [ 32.8912545, 41.173115 ], [ 33.042014, 41.069345998000017 ], [ 32.560043, 40.807477499000015 ] ] ] } }, -{ "type": "Feature", "id": 1645, "properties": { "NUTS_ID": "TR82", "STAT_LEVL_": 2, "SHAPE_AREA": 2.8979616136700002, "SHAPE_LEN": 9.4790676173099992 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.513699499999973, 41.635979999000028 ], [ 35.364086, 41.270556496999973 ], [ 35.1020165, 41.400094498999977 ], [ 34.856751998999982, 41.215630498999985 ], [ 34.449347, 41.327383999 ], [ 34.177718, 41.146645499999977 ], [ 34.2630365, 40.890320498999984 ], [ 33.929878, 40.8278105 ], [ 34.1436195, 40.418695999000022 ], [ 33.9162255, 40.263038 ], [ 33.695422, 40.33224149900002 ], [ 33.220758999, 40.320784498000023 ], [ 32.972095498999977, 40.615893501000016 ], [ 32.554816, 40.691943998 ], [ 32.560043, 40.807477499000015 ], [ 33.042014, 41.069345998000017 ], [ 32.8912545, 41.173115 ], [ 33.127837, 41.414297 ], [ 32.884223500000019, 41.575608999 ], [ 32.776286, 41.58835299899999 ], [ 32.736103500000013, 41.849009498999976 ], [ 33.3196165, 42.01599299899999 ], [ 34.228878499000018, 41.954958998999984 ], [ 34.7977085, 41.954602997999984 ], [ 34.943724, 42.096982998999977 ], [ 35.513699499999973, 41.635979999000028 ] ] ] } }, -{ "type": "Feature", "id": 1649, "properties": { "NUTS_ID": "TR83", "STAT_LEVL_": 2, "SHAPE_AREA": 4.13587860163, "SHAPE_LEN": 11.0426996741 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.152348500000016, 41.148413498000025 ], [ 36.671261, 40.915629498999976 ], [ 37.632352, 40.543681998000011 ], [ 37.584064, 40.424386998999978 ], [ 37.450466, 40.170535498999982 ], [ 36.8059275, 40.228436999 ], [ 36.606419500000015, 39.980525999 ], [ 36.003423, 39.95451049799999 ], [ 35.442588, 40.23402249899999 ], [ 35.35115, 40.2433805 ], [ 35.1556395, 40.226113 ], [ 35.072878, 40.012056498999982 ], [ 34.175507, 39.940434 ], [ 33.9162255, 40.263038 ], [ 34.1436195, 40.418695999000022 ], [ 33.929878, 40.8278105 ], [ 34.2630365, 40.890320498999984 ], [ 34.177718, 41.146645499999977 ], [ 34.449347, 41.327383999 ], [ 34.856751998999982, 41.215630498999985 ], [ 35.1020165, 41.400094498999977 ], [ 35.364086, 41.270556496999973 ], [ 35.513699499999973, 41.635979999000028 ], [ 35.9609585, 41.734693 ], [ 36.385412499999973, 41.256273498999974 ], [ 36.651739, 41.383401999 ], [ 37.152348500000016, 41.148413498000025 ] ] ] } }, -{ "type": "Feature", "id": 1655, "properties": { "NUTS_ID": "TR90", "STAT_LEVL_": 2, "SHAPE_AREA": 3.81807358941, "SHAPE_LEN": 13.882364019500001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.515174931999979, 41.43828241599999 ], [ 42.596096, 41.2710925 ], [ 42.28524950000002, 40.916437998999982 ], [ 41.9458735, 40.950454997 ], [ 41.809857500000021, 40.684673499999974 ], [ 41.384645499999976, 40.567911998 ], [ 41.164019499, 40.834939498999972 ], [ 40.60606150000001, 40.536 ], [ 40.461455, 40.52868399800002 ], [ 40.089906, 40.572094999 ], [ 39.643336499999975, 40.095837999000025 ], [ 39.789502, 39.940146 ], [ 39.4362185, 39.878558 ], [ 38.95667850000001, 40.068511999 ], [ 38.78355, 40.083271498999977 ], [ 38.213064, 40.213312498999983 ], [ 38.148452500000019, 40.524218497999982 ], [ 37.73245750000001, 40.3425095 ], [ 37.584064, 40.424386998999978 ], [ 37.632352, 40.543681998000011 ], [ 36.671261, 40.915629498999976 ], [ 37.152348500000016, 41.148413498000025 ], [ 38.109992499999976, 40.95851799799999 ], [ 39.1793085, 41.074095999 ], [ 40.328287499999988, 40.987883501 ], [ 41.2519, 41.32993349899999 ], [ 41.547133499999973, 41.520375498000021 ], [ 42.515174931999979, 41.43828241599999 ] ] ] } }, -{ "type": "Feature", "id": 1663, "properties": { "NUTS_ID": "TRA1", "STAT_LEVL_": 2, "SHAPE_AREA": 4.2686962366900003, "SHAPE_LEN": 12.677230391 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.28524950000002, 40.916437998999982 ], [ 42.574649500000021, 40.669076999000026 ], [ 42.530173499999989, 40.435869498999978 ], [ 42.128152, 40.292448998999987 ], [ 42.575026998999988, 39.953925998999978 ], [ 42.3006995, 39.841677499000014 ], [ 42.530970500000024, 39.630930499999977 ], [ 42.406795, 39.467103499000018 ], [ 41.801216, 39.14470749899999 ], [ 41.20683, 39.353699001 ], [ 40.651635, 39.522910498999977 ], [ 40.4484405, 39.522155498000018 ], [ 39.828901499999972, 39.601652498000021 ], [ 39.072714, 39.437300499 ], [ 38.7295135, 39.137155496999981 ], [ 38.768138, 39.006262998000011 ], [ 38.6840535, 39.02384299900001 ], [ 38.349975, 39.149943496999981 ], [ 38.3667795, 39.93940199799999 ], [ 38.78355, 40.083271498999977 ], [ 38.95667850000001, 40.068511999 ], [ 39.4362185, 39.878558 ], [ 39.789502, 39.940146 ], [ 39.643336499999975, 40.095837999000025 ], [ 40.089906, 40.572094999 ], [ 40.461455, 40.52868399800002 ], [ 40.60606150000001, 40.536 ], [ 41.164019499, 40.834939498999972 ], [ 41.384645499999976, 40.567911998 ], [ 41.809857500000021, 40.684673499999974 ], [ 41.9458735, 40.950454997 ], [ 42.28524950000002, 40.916437998999982 ] ] ] } }, -{ "type": "Feature", "id": 1667, "properties": { "NUTS_ID": "TRA2", "STAT_LEVL_": 2, "SHAPE_AREA": 3.2145787729899999, "SHAPE_LEN": 9.9925360629799993 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.049955809999972, 39.362815426999987 ], [ 43.716901, 39.209512500000017 ], [ 43.412439, 39.393592499000022 ], [ 43.1418885, 39.310626996999986 ], [ 43.184449, 39.198752497999976 ], [ 42.979636, 39.016623498 ], [ 42.75008, 38.92519099899999 ], [ 42.671909, 39.21350849800001 ], [ 42.406795, 39.467103499000018 ], [ 42.530970500000024, 39.630930499999977 ], [ 42.3006995, 39.841677499000014 ], [ 42.575026998999988, 39.953925998999978 ], [ 42.128152, 40.292448998999987 ], [ 42.530173499999989, 40.435869498999978 ], [ 42.574649500000021, 40.669076999000026 ], [ 42.28524950000002, 40.916437998999982 ], [ 42.596096, 41.2710925 ], [ 42.515174931999979, 41.43828241599999 ], [ 42.836095, 41.584442497999987 ], [ 43.473827, 41.123297499999978 ], [ 43.469638, 41.057344998000019 ], [ 43.750409, 40.744998999000018 ], [ 43.583054, 40.45111099899998 ], [ 43.653923, 40.130377499000019 ], [ 44.351662, 40.022220998000023 ], [ 44.76841, 39.714094498 ], [ 44.812042500000018, 39.63174349799999 ], [ 44.502099499999986, 39.7169935 ], [ 44.401101, 39.416515999000012 ], [ 44.049955809999972, 39.362815426999987 ] ] ] } }, -{ "type": "Feature", "id": 1673, "properties": { "NUTS_ID": "TRB1", "STAT_LEVL_": 2, "SHAPE_AREA": 3.7864286893100001, "SHAPE_LEN": 10.092083987700001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.20683, 39.353699001 ], [ 41.116833, 39.273619998000015 ], [ 41.176564, 38.716726 ], [ 40.459416499999975, 38.622623498999985 ], [ 40.31407, 38.465824499 ], [ 39.162863, 38.304434497999978 ], [ 39.122747, 38.183312999 ], [ 38.816859, 38.012205499 ], [ 38.329782500000022, 38.204376998999976 ], [ 38.095202500000028, 38.108330497999987 ], [ 38.0894285, 37.954172998999979 ], [ 37.6386675, 37.931167 ], [ 37.7602465, 38.203050997999981 ], [ 37.259534499999972, 38.479911 ], [ 37.341487, 38.593515498999977 ], [ 37.825541, 39.093950499000016 ], [ 38.349975, 39.149943496999981 ], [ 38.6840535, 39.02384299900001 ], [ 38.768138, 39.006262998000011 ], [ 38.7295135, 39.137155496999981 ], [ 39.072714, 39.437300499 ], [ 39.828901499999972, 39.601652498000021 ], [ 40.4484405, 39.522155498000018 ], [ 40.651635, 39.522910498999977 ], [ 41.20683, 39.353699001 ] ] ] } }, -{ "type": "Feature", "id": 1678, "properties": { "NUTS_ID": "TRB2", "STAT_LEVL_": 2, "SHAPE_AREA": 4.6325769802999996, "SHAPE_LEN": 11.9196457825 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.049955809999972, 39.362815426999987 ], [ 44.300266998999973, 38.842627999 ], [ 44.30526, 38.400534998000012 ], [ 44.482518, 38.341299998000011 ], [ 44.223969, 37.899149998999974 ], [ 44.462854938000021, 37.809568168999988 ], [ 44.617768, 37.717975998999975 ], [ 44.588852, 37.443092998 ], [ 44.801659, 37.321662999000011 ], [ 44.793147499999975, 37.17628399900002 ], [ 44.349709, 37.038322998000012 ], [ 44.118882, 37.315686 ], [ 43.424563, 37.275334499999985 ], [ 43.307242, 37.438266498000019 ], [ 43.505390499999976, 37.713529998000013 ], [ 42.9662085, 37.762133 ], [ 42.767993499999989, 37.913629497999978 ], [ 41.702295, 38.246542998999985 ], [ 41.506182, 38.564977999 ], [ 41.380549998999982, 38.492253498000025 ], [ 41.176564, 38.716726 ], [ 41.116833, 39.273619998000015 ], [ 41.20683, 39.353699001 ], [ 41.801216, 39.14470749899999 ], [ 42.406795, 39.467103499000018 ], [ 42.671909, 39.21350849800001 ], [ 42.75008, 38.92519099899999 ], [ 42.979636, 39.016623498 ], [ 43.184449, 39.198752497999976 ], [ 43.1418885, 39.310626996999986 ], [ 43.412439, 39.393592499000022 ], [ 43.716901, 39.209512500000017 ], [ 44.049955809999972, 39.362815426999987 ] ] ] } }, -{ "type": "Feature", "id": 1684, "properties": { "NUTS_ID": "TRC1", "STAT_LEVL_": 2, "SHAPE_AREA": 1.5888417105, "SHAPE_LEN": 7.8376010319700002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.122747, 38.183312999 ], [ 39.262784, 38.146125998 ], [ 39.099832, 38.012478499 ], [ 38.8514505, 37.649203999 ], [ 38.008049998999979, 37.454740997999977 ], [ 37.8355575, 37.165888498000015 ], [ 38.047589500000015, 36.845554497000023 ], [ 37.585516499999983, 36.703768498999978 ], [ 37.127495, 36.659157 ], [ 36.678777500000024, 36.83266099799999 ], [ 36.660010393999983, 36.833231536000028 ], [ 36.465673, 36.94866749900001 ], [ 36.697388499999988, 37.218142496999974 ], [ 36.901796, 37.333660499000018 ], [ 37.08278, 37.175676 ], [ 37.623216500000012, 37.511652497 ], [ 37.432401, 37.641709 ], [ 37.6386675, 37.931167 ], [ 38.0894285, 37.954172998999979 ], [ 38.095202500000028, 38.108330497999987 ], [ 38.329782500000022, 38.204376998999976 ], [ 38.816859, 38.012205499 ], [ 39.122747, 38.183312999 ] ] ] } }, -{ "type": "Feature", "id": 1688, "properties": { "NUTS_ID": "TRC2", "STAT_LEVL_": 2, "SHAPE_AREA": 3.5080607549299998, "SHAPE_LEN": 10.0639511966 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.380549998999982, 38.492253498000025 ], [ 41.189474, 38.312026998000022 ], [ 41.25448, 38.1395195 ], [ 40.995091, 37.826863 ], [ 41.045006, 37.715030499000022 ], [ 39.8555495, 37.531011998 ], [ 40.226033, 36.901373498999988 ], [ 39.221524, 36.665340996999987 ], [ 38.386376, 36.898329997000019 ], [ 38.047589500000015, 36.845554497000023 ], [ 37.8355575, 37.165888498000015 ], [ 38.008049998999979, 37.454740997999977 ], [ 38.8514505, 37.649203999 ], [ 39.099832, 38.012478499 ], [ 39.262784, 38.146125998 ], [ 39.122747, 38.183312999 ], [ 39.162863, 38.304434497999978 ], [ 40.31407, 38.465824499 ], [ 40.459416499999975, 38.622623498999985 ], [ 41.176564, 38.716726 ], [ 41.380549998999982, 38.492253498000025 ] ] ] } }, -{ "type": "Feature", "id": 1691, "properties": { "NUTS_ID": "TRC3", "STAT_LEVL_": 2, "SHAPE_AREA": 2.6195038347000001, "SHAPE_LEN": 9.3171077078100009 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.424563, 37.275334499999985 ], [ 42.786801, 37.38367499899999 ], [ 42.3556825, 37.10799350100001 ], [ 42.180832, 37.290541999000027 ], [ 41.663342, 37.102903498999979 ], [ 40.770821, 37.11804999899999 ], [ 40.226033, 36.901373498999988 ], [ 39.8555495, 37.531011998 ], [ 41.045006, 37.715030499000022 ], [ 40.995091, 37.826863 ], [ 41.25448, 38.1395195 ], [ 41.189474, 38.312026998000022 ], [ 41.380549998999982, 38.492253498000025 ], [ 41.506182, 38.564977999 ], [ 41.702295, 38.246542998999985 ], [ 42.767993499999989, 37.913629497999978 ], [ 42.9662085, 37.762133 ], [ 43.505390499999976, 37.713529998000013 ], [ 43.307242, 37.438266498000019 ], [ 43.424563, 37.275334499999985 ] ] ] } }, -{ "type": "Feature", "id": 1698, "properties": { "NUTS_ID": "UKC1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.37691346161200001, "SHAPE_LEN": 3.5318666524600002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.3473725, 54.860690998999985 ], [ -1.2422295, 54.722594997999977 ], [ -1.261252, 54.571902997999985 ], [ -0.7909065, 54.5594825 ], [ -1.234791, 54.51036849799999 ], [ -1.434778, 54.487514498999985 ], [ -1.696865, 54.536060501 ], [ -2.1701665, 54.458256 ], [ -2.312043001, 54.791080500000021 ], [ -1.820951, 54.905727500000012 ], [ -1.559341501, 54.882102998999983 ], [ -1.3473725, 54.860690998999985 ] ] ] } }, -{ "type": "Feature", "id": 1703, "properties": { "NUTS_ID": "SE22", "STAT_LEVL_": 2, "SHAPE_AREA": 2.1604080779900001, "SHAPE_LEN": 9.6146171591300007 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0498715, 56.321888500999989 ], [ 15.85154799899999, 56.085102498000026 ], [ 15.592694, 56.211868998 ], [ 15.348007, 56.124922501000015 ], [ 14.687203, 56.167117 ], [ 14.781868499999973, 56.034379999 ], [ 14.721438499999977, 55.993557001 ], [ 14.5463995, 56.061317499999973 ], [ 14.220109499999978, 55.830457500000023 ], [ 14.360844, 55.554259498000022 ], [ 14.194909, 55.384035000999972 ], [ 12.80983950000001, 55.37825650000002 ], [ 13.063593, 55.670109497 ], [ 12.445960500000012, 56.302680001 ], [ 12.783795, 56.219567998 ], [ 12.619629499999974, 56.42242299899999 ], [ 12.899313, 56.4490045 ], [ 13.462636499999974, 56.428188501000022 ], [ 14.514669500000025, 56.460036998000021 ], [ 15.363503499999979, 56.48237599700002 ], [ 15.586373499999979, 56.48294 ], [ 16.0498715, 56.321888500999989 ] ] ] } }, -{ "type": "Feature", "id": 1706, "properties": { "NUTS_ID": "SE23", "STAT_LEVL_": 2, "SHAPE_AREA": 5.0815391104099996, "SHAPE_LEN": 13.2988074497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.295995, 59.012779501000011 ], [ 14.778936499, 58.645992501000023 ], [ 14.41671, 58.187240497 ], [ 13.772147, 58.048560996999981 ], [ 13.688058, 57.558208501000024 ], [ 13.100760499999978, 57.145515499 ], [ 13.681201, 56.972114501000021 ], [ 13.298661, 56.823604500999977 ], [ 13.462636499999974, 56.428188501000022 ], [ 12.899313, 56.4490045 ], [ 12.936727500000018, 56.587077 ], [ 11.913888, 57.40103749799999 ], [ 11.922900500000026, 57.562223 ], [ 11.990241500000025, 57.721453500999985 ], [ 11.6737205, 57.84875499899999 ], [ 11.844677282000021, 58.160147672999983 ], [ 11.406957, 58.143874 ], [ 11.702689, 58.433648 ], [ 11.220071499000028, 58.40892949800002 ], [ 11.3094795, 58.479590496000014 ], [ 11.256905, 58.677688000999979 ], [ 11.174135001000025, 58.718292497999983 ], [ 11.23903150000001, 58.838971500000014 ], [ 11.113543499, 58.998263497999972 ], [ 11.460827, 58.988658499 ], [ 11.632557, 58.908306501000027 ], [ 11.8261965, 59.237849998 ], [ 12.228614499, 59.256698498999981 ], [ 13.254575499999987, 58.725619998000013 ], [ 13.589992, 59.059444499999984 ], [ 14.295995, 59.012779501000011 ] ] ] } }, -{ "type": "Feature", "id": 1710, "properties": { "NUTS_ID": "SE31", "STAT_LEVL_": 2, "SHAPE_AREA": 11.651712396400001, "SHAPE_LEN": 19.773688617299999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.489299500000016, 62.136950499000022 ], [ 17.3074195, 61.85283999699999 ], [ 17.402429499999982, 61.7223975 ], [ 17.037339499999973, 61.574806497 ], [ 17.070646, 60.89967199900002 ], [ 17.370218, 60.654461500000025 ], [ 17.192478, 60.300712499999975 ], [ 16.703831, 60.195720498000014 ], [ 15.801567, 60.179103499 ], [ 15.422092500000019, 59.854747499999974 ], [ 14.437155500000017, 60.026160996999977 ], [ 14.295995, 59.012779501000011 ], [ 13.589992, 59.059444499999984 ], [ 13.254575499999987, 58.725619998000013 ], [ 12.228614499, 59.256698498999981 ], [ 11.8261965, 59.237849998 ], [ 11.691129, 59.589547499999981 ], [ 11.93987850000002, 59.69458099799999 ], [ 11.926970499999982, 59.790475999000023 ], [ 11.839729, 59.840767 ], [ 12.499544999000022, 60.09765699799999 ], [ 12.606881499999986, 60.512742496999977 ], [ 12.22399, 61.013078001 ], [ 12.670176500000025, 61.055976498 ], [ 12.870847500000025, 61.356494998000016 ], [ 12.137665, 61.723816998000018 ], [ 12.29937, 62.267494 ], [ 12.8061755, 62.21990599899999 ], [ 13.558676, 61.643413 ], [ 14.4475615, 61.594948000999977 ], [ 14.685895, 61.901668497 ], [ 15.091695, 61.817428499000016 ], [ 15.4304505, 62.145972498999981 ], [ 15.3273395, 62.272083501 ], [ 17.489299500000016, 62.136950499000022 ] ] ] } }, -{ "type": "Feature", "id": 1714, "properties": { "NUTS_ID": "SE32", "STAT_LEVL_": 2, "SHAPE_AREA": 13.8087167223, "SHAPE_LEN": 19.956419689699999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.286468, 63.4697195 ], [ 18.331517, 63.053526501000022 ], [ 18.55759150099999, 62.962596500000018 ], [ 18.0637, 62.610071 ], [ 17.4012075, 62.549360498999988 ], [ 17.392239500000017, 62.323179001000028 ], [ 17.6594715, 62.2330035 ], [ 17.489299500000016, 62.136950499000022 ], [ 15.3273395, 62.272083501 ], [ 15.4304505, 62.145972498999981 ], [ 15.091695, 61.817428499000016 ], [ 14.685895, 61.901668497 ], [ 14.4475615, 61.594948000999977 ], [ 13.558676, 61.643413 ], [ 12.8061755, 62.21990599899999 ], [ 12.29937, 62.267494 ], [ 12.2546595, 62.331024496999987 ], [ 12.056142, 62.611918499000012 ], [ 12.218231, 63.000332500000013 ], [ 12.0524555, 63.1834445 ], [ 11.974581, 63.269228 ], [ 12.149767, 63.593946999000025 ], [ 12.683565, 63.9742235 ], [ 13.967524500000025, 64.00797 ], [ 14.157109, 64.195054497 ], [ 14.113869500000021, 64.462484501 ], [ 13.654257500000028, 64.580340498999988 ], [ 14.325985, 65.118916001 ], [ 16.718954, 64.027877999 ], [ 17.261841, 63.91410049699999 ], [ 18.405653, 63.9956625 ], [ 19.286468, 63.4697195 ] ] ] } }, -{ "type": "Feature", "id": 1717, "properties": { "NUTS_ID": "SE33", "STAT_LEVL_": 2, "SHAPE_AREA": 32.748586380100001, "SHAPE_LEN": 28.077039168799999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.155129, 65.816027 ], [ 22.34076600100002, 65.868960499000025 ], [ 22.402720499, 65.537355497000021 ], [ 22.0356215, 65.4648855 ], [ 21.524723359, 65.231805586 ], [ 21.543604500000015, 65.063058997999974 ], [ 21.156021, 64.815484500000025 ], [ 21.605362500000012, 64.433961 ], [ 20.31427, 63.674042500999974 ], [ 19.8976955, 63.617022999000028 ], [ 19.683038999000019, 63.434309000999974 ], [ 19.286468, 63.4697195 ], [ 18.405653, 63.9956625 ], [ 17.261841, 63.91410049699999 ], [ 16.718954, 64.027877999 ], [ 14.325985, 65.118916001 ], [ 14.6254765, 65.811808499999984 ], [ 14.516289, 66.132579 ], [ 15.453994500000022, 66.345233501 ], [ 15.3772265, 66.484303996999984 ], [ 16.387759, 67.045462499999985 ], [ 16.158001500000012, 67.51915900099999 ], [ 17.281524, 68.118815 ], [ 17.899761500000011, 67.969372 ], [ 18.151354, 68.19879 ], [ 18.125925, 68.536515999000017 ], [ 19.921397, 68.356013001 ], [ 20.3358725, 68.802312500000028 ], [ 20.0600475, 69.045759001000022 ], [ 20.548636499999986, 69.059968501000014 ], [ 21.888943000999973, 68.5843835 ], [ 23.652348999000026, 67.958793001 ], [ 23.3940235, 67.485820999 ], [ 23.995160500999987, 66.819708999 ], [ 23.6455995, 66.3014085 ], [ 24.155129, 65.816027 ] ] ] } }, -{ "type": "Feature", "id": 1722, "properties": { "NUTS_ID": "SI03", "STAT_LEVL_": 2, "SHAPE_AREA": 1.4007612975799999, "SHAPE_LEN": 8.1701120752499996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.596805, 46.475902498999972 ], [ 16.242148499999985, 46.490075497000021 ], [ 16.301549, 46.378287996999973 ], [ 15.8768685, 46.280055499000014 ], [ 15.7914755, 46.259327497000015 ], [ 15.627262, 46.085953499000027 ], [ 15.706404500000019, 45.97534299900002 ], [ 15.404425, 45.792716997000014 ], [ 15.331290500000023, 45.762854999000012 ], [ 15.277050499999973, 45.604461499000024 ], [ 15.385532, 45.486580499000013 ], [ 15.226437499999975, 45.42708799799999 ], [ 14.570012500000018, 45.672944497 ], [ 14.11819650000001, 45.48123899699999 ], [ 14.0423715, 45.761358998999981 ], [ 14.129577499999982, 45.869498998999973 ], [ 14.564807499999972, 45.791461998999978 ], [ 14.948575, 45.978610496999977 ], [ 14.711757499999976, 46.07792999899999 ], [ 14.908764500000018, 46.207565998 ], [ 14.565212, 46.367696998999975 ], [ 14.5651755, 46.372453496999981 ], [ 14.6745805, 46.450687500000015 ], [ 15.065120499999978, 46.652112497000019 ], [ 15.40197949899999, 46.65354849900001 ], [ 15.649988, 46.705757 ], [ 15.786422, 46.7074695 ], [ 16.038086, 46.656145497000011 ], [ 15.996236, 46.8353985 ], [ 16.113849, 46.869067998999981 ], [ 16.3707935, 46.722243499 ], [ 16.596805, 46.475902498999972 ] ] ] } }, -{ "type": "Feature", "id": 1735, "properties": { "NUTS_ID": "UKM2", "STAT_LEVL_": 2, "SHAPE_AREA": 2.61844155576, "SHAPE_LEN": 11.665539645400001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.851041001, 56.97269799899999 ], [ -2.425346, 56.755187997 ], [ -3.051892501, 56.458499997999979 ], [ -3.27144769, 56.353184073000023 ], [ -3.2769755, 56.350532500999975 ], [ -3.264612652999972, 56.352858137 ], [ -3.243498734000013, 56.356829979999986 ], [ -2.803087, 56.439677997999979 ], [ -2.620387, 56.2611885 ], [ -3.391451500000016, 56.00593199799999 ], [ -3.866839500000026, 56.1206625 ], [ -3.820153, 56.099117501000023 ], [ -3.515724, 56.002258500999972 ], [ -3.425330499999973, 55.994030001 ], [ -3.077645500000017, 55.94689549899999 ], [ -2.3666235, 55.946113498999978 ], [ -2.034329, 55.811165 ], [ -2.335961, 55.63214499899999 ], [ -2.165465499999982, 55.468467501000021 ], [ -2.689751, 55.18906399799999 ], [ -2.858508, 55.108424999000022 ], [ -3.507365, 55.41234949699998 ], [ -3.471619, 55.771068497999977 ], [ -3.7440075, 55.782108498000014 ], [ -3.822552, 55.89659500099998 ], [ -4.020121, 56.028145000999984 ], [ -4.1523815, 56.008144500000014 ], [ -4.47081, 56.002395501000024 ], [ -4.598209, 56.084338999000011 ], [ -4.854503500000021, 56.370532998999977 ], [ -4.53214250000002, 56.795907999 ], [ -3.8016275, 56.936012498000025 ], [ -3.372107500000027, 56.874744497999984 ], [ -2.851041001, 56.97269799899999 ] ] ] } }, -{ "type": "Feature", "id": 1736, "properties": { "NUTS_ID": "UKM3", "STAT_LEVL_": 2, "SHAPE_AREA": 1.8240910934800001, "SHAPE_LEN": 7.5101901327 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.598209, 56.084338999000011 ], [ -4.47081, 56.002395501000024 ], [ -4.1523815, 56.008144500000014 ], [ -4.020121, 56.028145000999984 ], [ -3.822552, 55.89659500099998 ], [ -3.7440075, 55.782108498000014 ], [ -3.471619, 55.771068497999977 ], [ -3.507365, 55.41234949699998 ], [ -2.858508, 55.108424999000022 ], [ -3.091623992999985, 54.97554629199999 ], [ -4.4054395, 54.677509500999975 ], [ -5.183450000999983, 54.912364998999976 ], [ -5.040228500000012, 54.997726500999988 ], [ -4.65827250000001, 55.570289499000012 ], [ -4.888966499999981, 55.87478999699999 ], [ -4.7651305, 55.957771499999978 ], [ -4.392671741000015, 55.889815842000019 ], [ -4.609648, 55.94667449799999 ], [ -4.828885, 56.079009998 ], [ -4.78744838099999, 56.169451165999988 ], [ -4.786687023000013, 56.294805003000022 ], [ -4.598209, 56.084338999000011 ] ] ] } }, -{ "type": "Feature", "id": 1737, "properties": { "NUTS_ID": "UKM5", "STAT_LEVL_": 2, "SHAPE_AREA": 0.837955502282, "SHAPE_LEN": 4.9746472989 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.425346, 56.755187997 ], [ -2.851041001, 56.97269799899999 ], [ -3.372107500000027, 56.874744497999984 ], [ -3.8016275, 56.936012498000025 ], [ -2.649769, 57.52970099800001 ], [ -2.801509, 57.6952475 ], [ -1.78944, 57.503555498000026 ], [ -2.425346, 56.755187997 ] ] ] } }, -{ "type": "Feature", "id": 1738, "properties": { "NUTS_ID": "UKM6", "STAT_LEVL_": 2, "SHAPE_AREA": 5.48541557262, "SHAPE_LEN": 31.440485688399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.771491500000025, 57.867034999 ], [ -4.4320525, 57.494354000999977 ], [ -2.801509, 57.6952475 ], [ -2.649769, 57.52970099800001 ], [ -3.8016275, 56.936012498000025 ], [ -4.53214250000002, 56.795907999 ], [ -4.854503500000021, 56.370532998999977 ], [ -4.786687023000013, 56.294805003000022 ], [ -4.78744838099999, 56.169451165999988 ], [ -4.828885, 56.079009998 ], [ -5.419614, 55.896728498000016 ], [ -5.520004500000027, 55.361922998000011 ], [ -5.799178, 55.299698001000024 ], [ -5.436028, 55.857562998999981 ], [ -5.666273499999988, 55.800583001 ], [ -5.487101000999985, 56.256931501 ], [ -5.654321, 56.297649497 ], [ -5.38434560799999, 56.531742240000028 ], [ -5.122688000999972, 56.827274499 ], [ -5.684919, 56.4972955 ], [ -6.226232, 56.710991001000025 ], [ -5.75170300100001, 56.782165497999983 ], [ -5.924258, 56.891563497999982 ], [ -5.72895, 57.101478498 ], [ -5.5094375, 57.097774499000025 ], [ -5.681389, 57.1505305 ], [ -5.670602562999989, 57.208438753999985 ], [ -6.017994, 57.017947999 ], [ -6.7897145, 57.42120749899999 ], [ -6.296708, 57.707561498000018 ], [ -6.146597000999975, 57.574474497999972 ], [ -6.130341, 57.316936499 ], [ -5.885413500000027, 57.238167001000022 ], [ -5.6476125, 57.255294998000011 ], [ -5.664395153999976, 57.219288447 ], [ -5.415392, 57.230156 ], [ -5.82202, 57.363647496999988 ], [ -5.8141635, 57.858711 ], [ -5.071033000999989, 57.81991949799999 ], [ -5.458675, 58.074409495999987 ], [ -5.0071175, 58.625992000999986 ], [ -3.024449, 58.64426400100001 ], [ -3.116977500000019, 58.36858 ], [ -4.400494, 57.918987497999979 ], [ -3.771491500000025, 57.867034999 ] ] ], [ [ [ -6.180591, 58.467010500000015 ], [ -6.344816, 58.234204497 ], [ -6.135358, 58.259441498 ], [ -6.967598, 57.727894000999981 ], [ -7.1331955, 57.836654501 ], [ -6.8160135, 57.900836998999978 ], [ -7.079999499999985, 57.967232001000013 ], [ -6.907952, 58.049675001000026 ], [ -7.10329500099999, 58.073547500000018 ], [ -7.027442, 58.244353997000019 ], [ -6.180591, 58.467010500000015 ] ] ], [ [ [ -1.155833500000028, 60.338035499999989 ], [ -1.277545, 59.852599998000017 ], [ -1.702932, 60.255359499 ], [ -1.339904500999978, 60.359771497999986 ], [ -1.632932, 60.483162 ], [ -1.499491319000015, 60.543659871999978 ], [ -1.304159, 60.623996499999976 ], [ -1.155833500000028, 60.338035499999989 ] ] ], [ [ [ -5.646332, 56.440559501 ], [ -6.385666501, 56.288787997999975 ], [ -6.323570501, 56.606162998 ], [ -5.646332, 56.440559501 ] ] ], [ [ [ -2.9119245, 59.006061499 ], [ -2.704751499999986, 58.961914001000025 ], [ -3.368161499999985, 58.998829 ], [ -2.9119245, 59.006061499 ] ] ] ] } }, -{ "type": "Feature", "id": 1739, "properties": { "NUTS_ID": "UKC2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.76454701825899996, "SHAPE_LEN": 4.1705192524200001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.3473725, 54.860690998999985 ], [ -1.559341501, 54.882102998999983 ], [ -1.820951, 54.905727500000012 ], [ -2.312043001, 54.791080500000021 ], [ -2.567809, 54.8236425 ], [ -2.4862965, 55.083118499000022 ], [ -2.689751, 55.18906399799999 ], [ -2.165465499999982, 55.468467501000021 ], [ -2.335961, 55.63214499899999 ], [ -2.034329, 55.811165 ], [ -1.838949500000012, 55.642334 ], [ -1.639348, 55.578319497999985 ], [ -1.461693, 55.0743905 ], [ -1.3639015, 54.9441835 ], [ -1.3473725, 54.860690998999985 ] ] ] } }, -{ "type": "Feature", "id": 1744, "properties": { "NUTS_ID": "UKD1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.92977088113799999, "SHAPE_LEN": 4.0522667392500002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.312043001, 54.791080500000021 ], [ -2.1701665, 54.458256 ], [ -2.4608275, 54.226764498000023 ], [ -2.86947, 54.17673849900001 ], [ -3.149062, 54.093601 ], [ -3.174973, 54.114906499000028 ], [ -3.2049515, 54.215130000999977 ], [ -3.223693609, 54.249058382999976 ], [ -3.613598, 54.525096999000027 ], [ -3.3986365, 54.869125499 ], [ -3.11915, 54.927886999 ], [ -3.091623992999985, 54.97554629199999 ], [ -2.858508, 55.108424999000022 ], [ -2.689751, 55.18906399799999 ], [ -2.4862965, 55.083118499000022 ], [ -2.567809, 54.8236425 ], [ -2.312043001, 54.791080500000021 ] ] ] } }, -{ "type": "Feature", "id": 1747, "properties": { "NUTS_ID": "UKD3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.167065694131, "SHAPE_LEN": 1.8864801182199999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.909583, 53.53842149899998 ], [ -1.9633505, 53.50985349699999 ], [ -2.0310235, 53.370289001 ], [ -2.240760500000022, 53.359599999000011 ], [ -2.313970499999982, 53.357452500000022 ], [ -2.426563499999986, 53.387489497999979 ], [ -2.489705500000014, 53.460170498000025 ], [ -2.576719, 53.446087001000024 ], [ -2.730499501, 53.520629998 ], [ -2.511298, 53.627029500999981 ], [ -2.379104, 53.630901500999983 ], [ -2.371208, 53.667114501000015 ], [ -2.146293001, 53.682266 ], [ -1.909583, 53.53842149899998 ] ] ] } }, -{ "type": "Feature", "id": 1753, "properties": { "NUTS_ID": "UKD4", "STAT_LEVL_": 2, "SHAPE_AREA": 0.45083488441300001, "SHAPE_LEN": 3.20406197402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.046089, 53.850178 ], [ -2.06121, 53.825671999 ], [ -2.146293001, 53.682266 ], [ -2.371208, 53.667114501000015 ], [ -2.379104, 53.630901500999983 ], [ -2.511298, 53.627029500999981 ], [ -2.730499501, 53.520629998 ], [ -2.887978, 53.503860499999973 ], [ -3.046686500000021, 53.542991498999982 ], [ -2.956203, 53.697529001000021 ], [ -2.833743, 53.722129999 ], [ -3.057371499999988, 53.776481499 ], [ -3.047940499999982, 53.875774498999988 ], [ -2.86947, 54.17673849900001 ], [ -2.4608275, 54.226764498000023 ], [ -2.469517, 54.04625699799999 ], [ -2.1844825, 53.952304998999978 ], [ -2.046089, 53.850178 ] ] ] } }, -{ "type": "Feature", "id": 1760, "properties": { "NUTS_ID": "UKD6", "STAT_LEVL_": 2, "SHAPE_AREA": 0.30950076280900002, "SHAPE_LEN": 2.6508197127400002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.426563499999986, 53.387489497999979 ], [ -2.313970499999982, 53.357452500000022 ], [ -2.240760500000022, 53.359599999000011 ], [ -2.0310235, 53.370289001 ], [ -1.987376, 53.213608 ], [ -2.380768, 52.998428499999989 ], [ -2.69927450099999, 52.995460501000025 ], [ -2.726823500000023, 52.9832955 ], [ -3.084193, 53.256122498000025 ], [ -3.110706, 53.296317999 ], [ -2.928556500000013, 53.308277 ], [ -2.7524115, 53.3147545 ], [ -2.675166499999989, 53.354484500000012 ], [ -2.693358, 53.361835498 ], [ -2.576719, 53.446087001000024 ], [ -2.489705500000014, 53.460170498000025 ], [ -2.426563499999986, 53.387489497999979 ] ] ] } }, -{ "type": "Feature", "id": 1764, "properties": { "NUTS_ID": "UKD7", "STAT_LEVL_": 2, "SHAPE_AREA": 0.072684468425499998, "SHAPE_LEN": 2.1146134083499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.046686500000021, 53.542991498999982 ], [ -2.887978, 53.503860499999973 ], [ -2.730499501, 53.520629998 ], [ -2.576719, 53.446087001000024 ], [ -2.693358, 53.361835498 ], [ -2.826677, 53.331672501000014 ], [ -3.008742, 53.438411498999983 ], [ -3.1054585, 53.551548001000015 ], [ -2.956203, 53.697529001000021 ], [ -3.046686500000021, 53.542991498999982 ] ] ], [ [ [ -2.928556500000013, 53.308277 ], [ -3.110706, 53.296317999 ], [ -3.200367501000017, 53.387527499999976 ], [ -2.928556500000013, 53.308277 ] ] ] ] } }, -{ "type": "Feature", "id": 1770, "properties": { "NUTS_ID": "UKE1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.47198883345999998, "SHAPE_LEN": 5.0628428461099997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.017378, 53.525367501 ], [ -0.738485500000024, 53.519866998999987 ], [ -0.741809832, 53.516955832 ], [ -0.7974175, 53.455085998000015 ], [ -0.935518, 53.502521499000011 ], [ -0.8652705, 53.637733500000024 ], [ -1.0486, 53.65608199899998 ], [ -0.905781499999989, 53.725761501000022 ], [ -0.911604, 53.7284125 ], [ -0.9234475, 53.880794501000025 ], [ -0.925222, 53.991550501 ], [ -0.2124495, 54.15762700099998 ], [ 0.141740261999985, 53.61067700699999 ], [ -0.250096, 53.733318500999985 ], [ -0.419136501000025, 53.719619997 ], [ -0.698366, 53.684653998999977 ], [ -0.722945813000024, 53.611722574 ], [ -0.7450505, 53.571201498999983 ], [ -0.739235033, 53.52388799 ], [ -0.720730575, 53.611187982999979 ], [ -0.295713499999977, 53.713866999 ], [ 0.017378, 53.525367501 ] ] ] } }, -{ "type": "Feature", "id": 1774, "properties": { "NUTS_ID": "UKE2", "STAT_LEVL_": 2, "SHAPE_AREA": 1.1763775913300001, "SHAPE_LEN": 5.5535624985599998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.2124495, 54.15762700099998 ], [ -0.925222, 53.991550501 ], [ -0.9234475, 53.880794501000025 ], [ -0.911604, 53.7284125 ], [ -0.905781499999989, 53.725761501000022 ], [ -1.0486, 53.65608199899998 ], [ -1.232786499999975, 53.621139500000027 ], [ -1.3019855, 53.7417565 ], [ -1.294119, 53.9270975 ], [ -1.72716650000001, 53.910236499 ], [ -2.046089, 53.850178 ], [ -2.1844825, 53.952304998999978 ], [ -2.469517, 54.04625699799999 ], [ -2.4608275, 54.226764498000023 ], [ -2.1701665, 54.458256 ], [ -1.696865, 54.536060501 ], [ -1.434778, 54.487514498999985 ], [ -1.234791, 54.51036849799999 ], [ -0.7909065, 54.5594825 ], [ -0.2124495, 54.15762700099998 ] ] ] } }, -{ "type": "Feature", "id": 1777, "properties": { "NUTS_ID": "UKE3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.22042160874700001, "SHAPE_LEN": 2.1653459640600001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.935518, 53.502521499000011 ], [ -1.199686499999984, 53.311454997 ], [ -1.324675, 53.328853498 ], [ -1.599034500000016, 53.311401498 ], [ -1.801430499999981, 53.481018001 ], [ -1.822188499999982, 53.521117998000022 ], [ -1.586403500000017, 53.607204497999987 ], [ -1.232786499999975, 53.621139500000027 ], [ -1.0486, 53.65608199899998 ], [ -0.8652705, 53.637733500000024 ], [ -0.935518, 53.502521499000011 ] ] ] } }, -{ "type": "Feature", "id": 1780, "properties": { "NUTS_ID": "UKE4", "STAT_LEVL_": 2, "SHAPE_AREA": 0.25498020173699998, "SHAPE_LEN": 2.2489915633500002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.232786499999975, 53.621139500000027 ], [ -1.586403500000017, 53.607204497999987 ], [ -1.822188499999982, 53.521117998000022 ], [ -1.909583, 53.53842149899998 ], [ -2.146293001, 53.682266 ], [ -2.06121, 53.825671999 ], [ -2.046089, 53.850178 ], [ -1.72716650000001, 53.910236499 ], [ -1.294119, 53.9270975 ], [ -1.3019855, 53.7417565 ], [ -1.232786499999975, 53.621139500000027 ] ] ] } }, -{ "type": "Feature", "id": 1786, "properties": { "NUTS_ID": "UKF1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.61325828931699999, "SHAPE_LEN": 3.64653206853 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.822188499999982, 53.521117998000022 ], [ -1.801430499999981, 53.481018001 ], [ -1.599034500000016, 53.311401498 ], [ -1.324675, 53.328853498 ], [ -1.199686499999984, 53.311454997 ], [ -0.935518, 53.502521499000011 ], [ -0.7974175, 53.455085998000015 ], [ -0.778224500000022, 52.976932498999986 ], [ -0.819968500000016, 52.96047199899999 ], [ -1.267846, 52.873378998000021 ], [ -1.597507, 52.700431998999989 ], [ -1.987376, 53.213608 ], [ -2.0310235, 53.370289001 ], [ -1.9633505, 53.50985349699999 ], [ -1.909583, 53.53842149899998 ], [ -1.822188499999982, 53.521117998000022 ] ] ] } }, -{ "type": "Feature", "id": 1793, "properties": { "NUTS_ID": "UKF2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.69335831533000003, "SHAPE_LEN": 3.5134657969799998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.871292499999981, 52.0402525 ], [ -1.118058, 52.015426498000011 ], [ -1.331868499999985, 52.168487500000026 ], [ -1.20158, 52.396735998999986 ], [ -1.589611, 52.68727099900002 ], [ -1.597507, 52.700431998999989 ], [ -1.267846, 52.873378998000021 ], [ -0.819968500000016, 52.96047199899999 ], [ -0.778224500000022, 52.976932498999986 ], [ -0.4948475, 52.64027975099998 ], [ -0.41533, 52.578746997 ], [ -0.341543, 52.466945499000019 ], [ -0.465321500000016, 52.322956001000023 ], [ -0.668097, 52.195033998999975 ], [ -0.70541750000001, 52.191570497999976 ], [ -0.871292499999981, 52.0402525 ] ] ] } }, -{ "type": "Feature", "id": 1798, "properties": { "NUTS_ID": "UKF3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.79254781253600004, "SHAPE_LEN": 3.7025781612199999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.26596, 52.810116000999983 ], [ 0.171689, 52.738036998999974 ], [ -0.031214, 52.66153699900002 ], [ -0.4948475, 52.64027975099998 ], [ -0.778224500000022, 52.976932498999986 ], [ -0.7974175, 53.455085998000015 ], [ -0.741809832, 53.516955832 ], [ -0.738485500000024, 53.519866998999987 ], [ 0.017378, 53.525367501 ], [ 0.355712, 53.192062498999974 ], [ 0.043715500000019, 52.903881 ], [ 0.26596, 52.810116000999983 ] ] ] } }, -{ "type": "Feature", "id": 1801, "properties": { "NUTS_ID": "UKG1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.75177494433799996, "SHAPE_LEN": 5.39719405619 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.331868499999985, 52.168487500000026 ], [ -1.6657325, 51.987491498 ], [ -1.76762700099999, 52.112594499000011 ], [ -2.351362, 52.021365999000011 ], [ -2.6502135, 51.826152998999987 ], [ -3.067357500000014, 51.983150501000011 ], [ -3.1419115, 52.127876499000024 ], [ -2.954719, 52.349258500000019 ], [ -2.618022, 52.306964998000012 ], [ -2.287363, 52.455325999000024 ], [ -2.164830000999984, 52.430213998 ], [ -2.016967500000021, 52.43268949899999 ], [ -1.8687215, 52.404742999 ], [ -1.87201, 52.36760349799999 ], [ -1.601023, 52.38932399700002 ], [ -1.4241525, 52.434074499000019 ], [ -1.5954575, 52.455924998 ], [ -1.753495, 52.512973999 ], [ -1.788053, 52.587871499000016 ], [ -1.589611, 52.68727099900002 ], [ -1.20158, 52.396735998999986 ], [ -1.331868499999985, 52.168487500000026 ] ] ] } }, -{ "type": "Feature", "id": 1805, "properties": { "NUTS_ID": "UKG2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.86177429685200002, "SHAPE_LEN": 4.1887368149800004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.597507, 52.700431998999989 ], [ -1.589611, 52.68727099900002 ], [ -1.788053, 52.587871499000016 ], [ -1.872537500000021, 52.584953498 ], [ -2.050694001000011, 52.620533001000013 ], [ -2.1334655, 52.554076999000017 ], [ -2.164830000999984, 52.430213998 ], [ -2.287363, 52.455325999000024 ], [ -2.618022, 52.306964998000012 ], [ -2.954719, 52.349258500000019 ], [ -3.235562, 52.44255049899999 ], [ -3.14748, 52.890155998000012 ], [ -2.726823500000023, 52.9832955 ], [ -2.69927450099999, 52.995460501000025 ], [ -2.380768, 52.998428499999989 ], [ -1.987376, 53.213608 ], [ -1.597507, 52.700431998999989 ] ] ] } }, -{ "type": "Feature", "id": 1810, "properties": { "NUTS_ID": "UKG3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.092811966854999997, "SHAPE_LEN": 1.7136533458900001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.788053, 52.587871499000016 ], [ -1.753495, 52.512973999 ], [ -1.5954575, 52.455924998 ], [ -1.4241525, 52.434074499000019 ], [ -1.601023, 52.38932399700002 ], [ -1.87201, 52.36760349799999 ], [ -1.8687215, 52.404742999 ], [ -2.016967500000021, 52.43268949899999 ], [ -2.164830000999984, 52.430213998 ], [ -2.1334655, 52.554076999000017 ], [ -2.050694001000011, 52.620533001000013 ], [ -1.872537500000021, 52.584953498 ], [ -1.788053, 52.587871499000016 ] ] ] } }, -{ "type": "Feature", "id": 1819, "properties": { "NUTS_ID": "UKH1", "STAT_LEVL_": 2, "SHAPE_AREA": 1.5818293911800001, "SHAPE_LEN": 5.5812724533600004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.756430500000022, 52.471725498000012 ], [ 1.391530358000011, 51.98931597 ], [ 1.05638, 51.95149249799999 ], [ 0.705025499999977, 52.06266800100002 ], [ 0.404686500000025, 52.065498499 ], [ 0.389743, 52.036464501000012 ], [ 0.068169, 52.005786999 ], [ -0.157241000999989, 52.080547497999987 ], [ -0.249742, 52.184372000999986 ], [ -0.465321500000016, 52.322956001000023 ], [ -0.341543, 52.466945499000019 ], [ -0.41533, 52.578746997 ], [ -0.4948475, 52.64027975099998 ], [ -0.031214, 52.66153699900002 ], [ 0.171689, 52.738036998999974 ], [ 0.26596, 52.810116000999983 ], [ 0.695918, 52.98762899799999 ], [ 1.675478, 52.74269099899999 ], [ 1.7405435, 52.532100500000013 ], [ 1.756430500000022, 52.471725498000012 ] ] ] } }, -{ "type": "Feature", "id": 1826, "properties": { "NUTS_ID": "UKH2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.352041967362, "SHAPE_LEN": 2.6828826653500002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068169, 52.005786999 ], [ -0.011878500000023, 51.6808775 ], [ -0.18204750000001, 51.668601997 ], [ -0.304423, 51.636348499 ], [ -0.5005615, 51.599689497999975 ], [ -0.745649501, 51.842094498999984 ], [ -0.553598, 51.8267095 ], [ -0.652946499999985, 51.969230501000027 ], [ -0.5917725, 52.110691 ], [ -0.668097, 52.195033998999975 ], [ -0.465321500000016, 52.322956001000023 ], [ -0.249742, 52.184372000999986 ], [ -0.157241000999989, 52.080547497999987 ], [ 0.068169, 52.005786999 ] ] ] } }, -{ "type": "Feature", "id": 1831, "properties": { "NUTS_ID": "UKH3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.45675606534899998, "SHAPE_LEN": 4.1557810329100002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.05638, 51.95149249799999 ], [ 1.2919645, 51.870651 ], [ 0.844628, 51.781318499 ], [ 0.71307, 51.715091500000028 ], [ 0.756304, 51.691742 ], [ 0.9458965, 51.716212998 ], [ 0.776491998999973, 51.636024498999973 ], [ 0.76434071599999, 51.63674747499999 ], [ 0.85409737399999, 51.601599641 ], [ 0.958179500000028, 51.61969 ], [ 0.821244, 51.540714498 ], [ 0.626791, 51.532172999000011 ], [ 0.51370350000002, 51.531184998000015 ], [ 0.40186059199999, 51.456630585000028 ], [ 0.379662895000024, 51.457289678999985 ], [ 0.217437, 51.480072 ], [ 0.210514, 51.490035998999986 ], [ 0.313079500000015, 51.565814999 ], [ 0.200354, 51.624931499000013 ], [ 0.138225499999976, 51.623543 ], [ -0.012219500000015, 51.646228998000026 ], [ -0.011878500000023, 51.6808775 ], [ 0.068169, 52.005786999 ], [ 0.389743, 52.036464501000012 ], [ 0.404686500000025, 52.065498499 ], [ 0.705025499999977, 52.06266800100002 ], [ 1.05638, 51.95149249799999 ] ] ] } }, -{ "type": "Feature", "id": 1839, "properties": { "NUTS_ID": "UKI3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.015338348282600001, "SHAPE_LEN": 0.62348309678199998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.079542452999988, 51.507740223999974 ], [ -0.079878638000025, 51.500596307000023 ], [ -0.108863, 51.50844949899999 ], [ -0.128365499999973, 51.48505799899999 ], [ -0.140344, 51.419246497000017 ], [ -0.253975500000024, 51.437237 ], [ -0.222829, 51.471816997000019 ], [ -0.244502, 51.488700998000013 ], [ -0.253024, 51.5014 ], [ -0.246334499999989, 51.532798999000022 ], [ -0.215968, 51.527927498999986 ], [ -0.191422, 51.536288999000021 ], [ -0.213401001000022, 51.555148998999982 ], [ -0.171223, 51.572429500999988 ], [ -0.085154, 51.520332499 ], [ -0.078408, 51.521507500999974 ], [ -0.079542452999988, 51.507740223999974 ] ] ] } }, -{ "type": "Feature", "id": 1844, "properties": { "NUTS_ID": "UKI4", "STAT_LEVL_": 2, "SHAPE_AREA": 0.026769330792500001, "SHAPE_LEN": 0.9811022674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068394, 51.544414501 ], [ 0.09699949899999, 51.515670999 ], [ 0.073823467000011, 51.50462927699999 ], [ 0.048330898000017, 51.498521840000024 ], [ -0.024711500000024, 51.485649001000013 ], [ 0.028960499999982, 51.441623499 ], [ -0.078261, 51.4205055 ], [ -0.078611501000012, 51.41982249900002 ], [ -0.127744, 51.412315498999988 ], [ -0.140344, 51.419246497000017 ], [ -0.128365499999973, 51.48505799899999 ], [ -0.108863, 51.50844949899999 ], [ -0.079878638000025, 51.500596307000023 ], [ -0.079542452999988, 51.507740223999974 ], [ -0.078408, 51.521507500999974 ], [ -0.085154, 51.520332499 ], [ -0.171223, 51.572429500999988 ], [ -0.138722499999972, 51.610191498 ], [ -0.0413825, 51.605636499000013 ], [ -0.061119, 51.577785499000015 ], [ 0.068394, 51.544414501 ] ] ] } }, -{ "type": "Feature", "id": 1850, "properties": { "NUTS_ID": "UKI5", "STAT_LEVL_": 2, "SHAPE_AREA": 0.056562738212499998, "SHAPE_LEN": 1.48524701046 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.210514, 51.490035998999986 ], [ 0.217437, 51.480072 ], [ 0.152974, 51.408702999000013 ], [ 0.148871, 51.4085045 ], [ 0.028960499999982, 51.441623499 ], [ -0.024711500000024, 51.485649001000013 ], [ 0.048330898000017, 51.498521840000024 ], [ 0.073823467000011, 51.50462927699999 ], [ 0.09699949899999, 51.515670999 ], [ 0.068394, 51.544414501 ], [ -0.061119, 51.577785499000015 ], [ -0.0413825, 51.605636499000013 ], [ -0.138722499999972, 51.610191498 ], [ -0.18204750000001, 51.668601997 ], [ -0.011878500000023, 51.6808775 ], [ -0.012219500000015, 51.646228998000026 ], [ 0.138225499999976, 51.623543 ], [ 0.200354, 51.624931499000013 ], [ 0.313079500000015, 51.565814999 ], [ 0.210514, 51.490035998999986 ] ] ] } }, -{ "type": "Feature", "id": 1855, "properties": { "NUTS_ID": "UKI6", "STAT_LEVL_": 2, "SHAPE_AREA": 0.044732538271800001, "SHAPE_LEN": 1.1015014692 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.148871, 51.4085045 ], [ 0.042433500000016, 51.292667498000014 ], [ 0.002330500000028, 51.329132 ], [ -0.156508, 51.3215065 ], [ -0.330622, 51.329006000999982 ], [ -0.317662, 51.393665499 ], [ -0.253975500000024, 51.437237 ], [ -0.140344, 51.419246497000017 ], [ -0.127744, 51.412315498999988 ], [ -0.078611501000012, 51.41982249900002 ], [ -0.078261, 51.4205055 ], [ 0.028960499999982, 51.441623499 ], [ 0.148871, 51.4085045 ] ] ] } }, -{ "type": "Feature", "id": 1859, "properties": { "NUTS_ID": "UKI7", "STAT_LEVL_": 2, "SHAPE_AREA": 0.059320145935100002, "SHAPE_LEN": 1.1230751784399999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.138722499999972, 51.610191498 ], [ -0.171223, 51.572429500999988 ], [ -0.213401001000022, 51.555148998999982 ], [ -0.191422, 51.536288999000021 ], [ -0.215968, 51.527927498999986 ], [ -0.246334499999989, 51.532798999000022 ], [ -0.253024, 51.5014 ], [ -0.244502, 51.488700998000013 ], [ -0.222829, 51.471816997000019 ], [ -0.253975500000024, 51.437237 ], [ -0.317662, 51.393665499 ], [ -0.458605499999976, 51.456314 ], [ -0.509666501000027, 51.469173500000011 ], [ -0.489989499999979, 51.494747 ], [ -0.5005615, 51.599689497999975 ], [ -0.304423, 51.636348499 ], [ -0.18204750000001, 51.668601997 ], [ -0.138722499999972, 51.610191498 ] ] ] } }, -{ "type": "Feature", "id": 1866, "properties": { "NUTS_ID": "UKJ1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.77467063615099996, "SHAPE_LEN": 4.0123671060600001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5005615, 51.599689497999975 ], [ -0.489989499999979, 51.494747 ], [ -0.509666501000027, 51.469173500000011 ], [ -0.775435500000015, 51.331954997000025 ], [ -1.429674499999976, 51.336532499999976 ], [ -1.49828, 51.329376 ], [ -1.584689500000025, 51.524913998999978 ], [ -1.602793500000018, 51.518295498999976 ], [ -1.6830405, 51.690112997000028 ], [ -1.6657325, 51.987491498 ], [ -1.331868499999985, 52.168487500000026 ], [ -1.118058, 52.015426498000011 ], [ -0.871292499999981, 52.0402525 ], [ -0.70541750000001, 52.191570497999976 ], [ -0.668097, 52.195033998999975 ], [ -0.5917725, 52.110691 ], [ -0.652946499999985, 51.969230501000027 ], [ -0.553598, 51.8267095 ], [ -0.745649501, 51.842094498999984 ], [ -0.5005615, 51.599689497999975 ] ] ] } }, -{ "type": "Feature", "id": 1871, "properties": { "NUTS_ID": "UKJ2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.62517291620500004, "SHAPE_LEN": 4.3656818092999998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.317662, 51.393665499 ], [ -0.330622, 51.329006000999982 ], [ -0.156508, 51.3215065 ], [ 0.002330500000028, 51.329132 ], [ 0.042433500000016, 51.292667498000014 ], [ 0.0500535, 51.142643 ], [ 0.605435, 51.012058500000023 ], [ 0.779000999, 50.989479 ], [ 0.854784, 50.923709998999982 ], [ -0.03817650000002, 50.799503499000025 ], [ -0.216009, 50.827563997000027 ], [ -0.932831, 50.843151 ], [ -0.938582, 50.873718499 ], [ -0.753453499999978, 51.086452499000018 ], [ -0.8488835, 51.2107125 ], [ -0.775435500000015, 51.331954997000025 ], [ -0.509666501000027, 51.469173500000011 ], [ -0.458605499999976, 51.456314 ], [ -0.317662, 51.393665499 ] ] ] } }, -{ "type": "Feature", "id": 1878, "properties": { "NUTS_ID": "UKJ3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.46882759320599998, "SHAPE_LEN": 4.6775915611899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.753453499999978, 51.086452499000018 ], [ -0.938582, 50.873718499 ], [ -0.932831, 50.843151 ], [ -1.021779507000019, 50.835727013 ], [ -1.116579, 50.842498998 ], [ -1.3651595, 50.880069497000022 ], [ -1.4770375, 50.923957997 ], [ -1.306856, 50.819854498999973 ], [ -1.6920495, 50.736625498000024 ], [ -1.956807, 50.98982999899999 ], [ -1.6233815, 50.954635500999984 ], [ -1.49828, 51.329376 ], [ -1.429674499999976, 51.336532499999976 ], [ -0.775435500000015, 51.331954997000025 ], [ -0.8488835, 51.2107125 ], [ -0.753453499999978, 51.086452499000018 ] ] ], [ [ [ -1.069896, 50.683647001 ], [ -1.303737500000011, 50.576045997999984 ], [ -1.586375, 50.663165997000021 ], [ -1.292164500000013, 50.75799949899999 ], [ -1.069896, 50.683647001 ] ] ] ] } }, -{ "type": "Feature", "id": 1885, "properties": { "NUTS_ID": "UKJ4", "STAT_LEVL_": 2, "SHAPE_AREA": 0.4797968086, "SHAPE_LEN": 3.7061579840099999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.379662895000024, 51.457289678999985 ], [ 0.40186059199999, 51.456630585000028 ], [ 0.458900500000027, 51.454936998999983 ], [ 0.720437, 51.45972799899999 ], [ 0.539261022, 51.407019827 ], [ 0.6268945, 51.37521 ], [ 0.951056, 51.373244999 ], [ 0.950297499999976, 51.345749 ], [ 1.4497465, 51.377177997999979 ], [ 1.3796385, 51.1421585 ], [ 0.854784, 50.923709998999982 ], [ 0.779000999, 50.989479 ], [ 0.605435, 51.012058500000023 ], [ 0.0500535, 51.142643 ], [ 0.042433500000016, 51.292667498000014 ], [ 0.148871, 51.4085045 ], [ 0.152974, 51.408702999000013 ], [ 0.217437, 51.480072 ], [ 0.379662895000024, 51.457289678999985 ] ] ] } }, -{ "type": "Feature", "id": 1892, "properties": { "NUTS_ID": "UKK1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.98390192297300005, "SHAPE_LEN": 4.8348146520500004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.6657325, 51.987491498 ], [ -1.6830405, 51.690112997000028 ], [ -1.602793500000018, 51.518295498999976 ], [ -1.584689500000025, 51.524913998999978 ], [ -1.49828, 51.329376 ], [ -1.6233815, 50.954635500999984 ], [ -1.956807, 50.98982999899999 ], [ -2.325841500000024, 51.0796775 ], [ -2.289077, 51.325275501000021 ], [ -2.992948, 51.32031999899999 ], [ -2.679612, 51.480212999 ], [ -2.674005500000021, 51.544273498999985 ], [ -2.534737, 51.677245998999979 ], [ -2.66065692, 51.627663196000015 ], [ -2.6502135, 51.826152998999987 ], [ -2.351362, 52.021365999000011 ], [ -1.76762700099999, 52.112594499000011 ], [ -1.6657325, 51.987491498 ] ] ] } }, -{ "type": "Feature", "id": 1898, "properties": { "NUTS_ID": "UKK2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.845971591882, "SHAPE_LEN": 5.1234239214999997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.956807, 50.98982999899999 ], [ -1.6920495, 50.736625498000024 ], [ -1.7407255, 50.7215385 ], [ -2.0406, 50.719962999000018 ], [ -1.953566001000013, 50.594131499000014 ], [ -2.947815000999981, 50.718307501000027 ], [ -2.954316, 50.82117449899999 ], [ -3.834736, 51.141384 ], [ -3.7207785, 51.233093499 ], [ -2.992948, 51.32031999899999 ], [ -2.289077, 51.325275501000021 ], [ -2.325841500000024, 51.0796775 ], [ -1.956807, 50.98982999899999 ] ] ] } }, -{ "type": "Feature", "id": 1902, "properties": { "NUTS_ID": "UKK3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.45526803761000001, "SHAPE_LEN": 3.3859502886700001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.235094221, 50.460252785000023 ], [ -4.20370002300001, 50.398256189999984 ], [ -4.177532638, 50.364021469000022 ], [ -4.76328, 50.326236498000014 ], [ -5.185075499999982, 49.963165496999977 ], [ -5.479827, 50.126014499 ], [ -4.545959499999981, 50.928352499000027 ], [ -4.235094221, 50.460252785000023 ] ] ] } }, -{ "type": "Feature", "id": 1904, "properties": { "NUTS_ID": "UKK4", "STAT_LEVL_": 2, "SHAPE_AREA": 0.87891528861900003, "SHAPE_LEN": 4.4070154726000004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.947815000999981, 50.718307501000027 ], [ -3.5090305, 50.516514001000019 ], [ -3.507436, 50.378989999 ], [ -3.723704, 50.201519 ], [ -4.1231325, 50.346740497999974 ], [ -4.177532638, 50.364021469000022 ], [ -4.20370002300001, 50.398256189999984 ], [ -4.235094221, 50.460252785000023 ], [ -4.545959499999981, 50.928352499000027 ], [ -4.139783841, 51.077219300000024 ], [ -4.200037001, 51.200939 ], [ -3.7207785, 51.233093499 ], [ -3.834736, 51.141384 ], [ -2.954316, 50.82117449899999 ], [ -2.947815000999981, 50.718307501000027 ] ] ] } }, -{ "type": "Feature", "id": 1909, "properties": { "NUTS_ID": "UKL1", "STAT_LEVL_": 2, "SHAPE_AREA": 1.68557125007, "SHAPE_LEN": 12.0259665728 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.6378555, 51.469840998 ], [ -3.88623, 51.617385997999975 ], [ -4.307776, 51.610301999 ], [ -4.05255, 51.703281498000024 ], [ -4.929975500000012, 51.59847650099999 ], [ -5.3202485, 51.861602999000013 ], [ -4.207504501000017, 52.263820497999973 ], [ -3.9310135, 52.553612 ], [ -4.128679, 52.612781499999983 ], [ -4.058637499999975, 52.920723001 ], [ -4.767578500000013, 52.79496 ], [ -4.216110416999982, 53.19851737099998 ], [ -4.69663, 53.30674349899999 ], [ -4.040188, 53.310653499000011 ], [ -4.196792116999973, 53.210816994000027 ], [ -4.007376, 53.246928998999977 ], [ -3.363392499999975, 53.352028 ], [ -3.0902865, 52.971641498999986 ], [ -3.375009499999976, 52.892474998000012 ], [ -3.48307, 52.865539499000022 ], [ -3.926611, 52.560783499000024 ], [ -3.658389, 52.347758997000028 ], [ -3.647133, 52.038799497000014 ], [ -3.80665, 51.787929498999972 ], [ -3.591288500000019, 51.754619498000011 ], [ -3.334463, 51.790408999000022 ], [ -3.157343500000025, 51.816058999 ], [ -2.958938, 51.628749998999979 ], [ -3.118871500000012, 51.545707499 ], [ -3.237515, 51.552627498999982 ], [ -3.497506499999986, 51.51264549699999 ], [ -3.6378555, 51.469840998 ] ] ] } }, -{ "type": "Feature", "id": 1918, "properties": { "NUTS_ID": "UKL2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.92108711622299999, "SHAPE_LEN": 8.0216146948299993 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.084193, 53.256122498000025 ], [ -2.726823500000023, 52.9832955 ], [ -3.14748, 52.890155998000012 ], [ -3.235562, 52.44255049899999 ], [ -2.954719, 52.349258500000019 ], [ -3.1419115, 52.127876499000024 ], [ -3.067357500000014, 51.983150501000011 ], [ -2.6502135, 51.826152998999987 ], [ -2.66065692, 51.627663196000015 ], [ -3.082688, 51.501907499000026 ], [ -3.6378555, 51.469840998 ], [ -3.497506499999986, 51.51264549699999 ], [ -3.237515, 51.552627498999982 ], [ -3.118871500000012, 51.545707499 ], [ -2.958938, 51.628749998999979 ], [ -3.157343500000025, 51.816058999 ], [ -3.334463, 51.790408999000022 ], [ -3.591288500000019, 51.754619498000011 ], [ -3.80665, 51.787929498999972 ], [ -3.647133, 52.038799497000014 ], [ -3.658389, 52.347758997000028 ], [ -3.926611, 52.560783499000024 ], [ -3.48307, 52.865539499000022 ], [ -3.375009499999976, 52.892474998000012 ], [ -3.0902865, 52.971641498999986 ], [ -3.363392499999975, 53.352028 ], [ -3.084193, 53.256122498000025 ] ] ] } }, -{ "type": "Feature", "id": 1944, "properties": { "NUTS_ID": "UKN0", "STAT_LEVL_": 2, "SHAPE_AREA": 1.88082099117, "SHAPE_LEN": 7.4104194730500001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.2680155, 54.102337 ], [ -6.623778500000014, 54.036548497000013 ], [ -7.0286355, 54.421306497999979 ], [ -7.565956, 54.126514499 ], [ -8.177718, 54.464973500999974 ], [ -7.703411501, 54.608287999000027 ], [ -7.921372, 54.696544499000026 ], [ -7.534506, 54.74713900099999 ], [ -7.256068500000026, 55.067034998 ], [ -7.099074804999987, 55.100807920000022 ], [ -6.455277, 55.2393035 ], [ -5.976527499999975, 55.056598501 ], [ -5.992633500000011, 54.989261999 ], [ -5.721779, 54.772852496999974 ], [ -5.720909001, 54.772636498999987 ], [ -5.691673, 54.809592999000017 ], [ -5.690664001000016, 54.769462497 ], [ -5.912931500000013, 54.648036998 ], [ -5.855336, 54.63377 ], [ -5.575003, 54.670196501000021 ], [ -5.432802, 54.48764399800001 ], [ -5.499689499999988, 54.338054499 ], [ -5.874409, 54.184848500999976 ], [ -6.2680155, 54.102337 ] ] ] } } -] -} diff --git a/examples/geo_schelling/model.py b/examples/geo_schelling/model.py deleted file mode 100644 index ad90df9a..00000000 --- a/examples/geo_schelling/model.py +++ /dev/null @@ -1,100 +0,0 @@ -import random - -import mesa - -import mesa_geo as mg - - -class SchellingAgent(mg.GeoAgent): - """Schelling segregation agent.""" - - def __init__(self, unique_id, model, geometry, crs, agent_type=None): - """Create a new Schelling agent. - - Args: - unique_id: Unique identifier for the agent. - agent_type: Indicator for the agent's type (minority=1, majority=0) - """ - super().__init__(unique_id, model, geometry, crs) - self.atype = agent_type - - def step(self): - """Advance agent one step.""" - similar = 0 - different = 0 - neighbors = self.model.space.get_neighbors(self) - if neighbors: - for neighbor in neighbors: - if neighbor.atype is None: - continue - elif neighbor.atype == self.atype: - similar += 1 - else: - different += 1 - - # If unhappy, move: - if similar < different: - # Select an empty region - empties = [a for a in self.model.space.agents if a.atype is None] - # Switch atypes and add/remove from scheduler - new_region = random.choice(empties) - new_region.atype = self.atype - self.model.schedule.add(new_region) - self.atype = None - self.model.schedule.remove(self) - else: - self.model.happy += 1 - - def __repr__(self): - return "Agent " + str(self.unique_id) - - -class GeoSchelling(mesa.Model): - """Model class for the Schelling segregation model.""" - - def __init__(self, density=0.6, minority_pc=0.2, export_data=False): - self.density = density - self.minority_pc = minority_pc - self.export_data = export_data - - self.schedule = mesa.time.RandomActivation(self) - self.space = mg.GeoSpace(warn_crs_conversion=False) - - self.happy = 0 - self.datacollector = mesa.DataCollector({"happy": "happy"}) - - self.running = True - - # Set up the grid with patches for every NUTS region - ac = mg.AgentCreator(SchellingAgent, model=self) - agents = ac.from_file("data/nuts_rg_60M_2013_lvl_2.geojson") - self.space.add_agents(agents) - - # Set up agents - for agent in agents: - if random.random() < self.density: - if random.random() < self.minority_pc: - agent.atype = 1 - else: - agent.atype = 0 - self.schedule.add(agent) - - def export_agents_to_file(self) -> None: - self.space.get_agents_as_GeoDataFrame(agent_cls=SchellingAgent).to_crs( - "epsg:4326" - ).to_file("data/schelling_agents.geojson", driver="GeoJSON") - - def step(self): - """Run one step of the model. - - If All agents are happy, halt the model. - """ - self.happy = 0 # Reset counter of happy agents - self.schedule.step() - self.datacollector.collect(self) - - if self.happy == self.schedule.get_agent_count(): - self.running = False - - if not self.running and self.export_data: - self.export_agents_to_file() diff --git a/examples/geo_schelling/run.py b/examples/geo_schelling/run.py deleted file mode 100644 index a25f3b12..00000000 --- a/examples/geo_schelling/run.py +++ /dev/null @@ -1,3 +0,0 @@ -from server import server - -server.launch() diff --git a/examples/geo_schelling/server.py b/examples/geo_schelling/server.py deleted file mode 100644 index f745a55d..00000000 --- a/examples/geo_schelling/server.py +++ /dev/null @@ -1,48 +0,0 @@ -import mesa -import xyzservices.providers as xyz -from model import GeoSchelling - -import mesa_geo as mg - - -class HappyElement(mesa.visualization.TextElement): - """ - Display a text count of how many happy agents there are. - """ - - def __init__(self): - pass - - def render(self, model): - return "Happy agents: " + str(model.happy) - - -model_params = { - "density": mesa.visualization.Slider("Agent density", 0.6, 0.1, 1.0, 0.1), - "minority_pc": mesa.visualization.Slider("Fraction minority", 0.2, 0.00, 1.0, 0.05), - "export_data": mesa.visualization.Checkbox("Export data after simulation", False), -} - - -def schelling_draw(agent): - """ - Portrayal Method for canvas - """ - portrayal = {} - if agent.atype is None: - portrayal["color"] = "Grey" - elif agent.atype == 0: - portrayal["color"] = "Red" - else: - portrayal["color"] = "Blue" - return portrayal - - -happy_element = HappyElement() -map_element = mg.visualization.MapModule( - schelling_draw, [52, 12], 4, tiles=xyz.CartoDB.Positron -) -happy_chart = mesa.visualization.ChartModule([{"Label": "happy", "Color": "Black"}]) -server = mesa.visualization.ModularServer( - GeoSchelling, [map_element, happy_element, happy_chart], "Schelling", model_params -) diff --git a/examples/geo_schelling_points/README.md b/examples/geo_schelling_points/README.md deleted file mode 100644 index d80549d2..00000000 --- a/examples/geo_schelling_points/README.md +++ /dev/null @@ -1,25 +0,0 @@ -# GeoSchelling Model (Points & Polygons) - -[![](https://img.youtube.com/vi/iLMU6jfmir8/0.jpg)](https://www.youtube.com/watch?v=iLMU6jfmir8) - -## Summary - -This is a geoversion of a simplified Schelling example. - -### GeoSpace - -The NUTS-2 regions are considered as a shared definition of neighborhood among all people agents, instead of a locally defined neighborhood such as Moore or von Neumann. - -### GeoAgent - -There are two types of GeoAgents: people and regions. Each person resides in a randomly assigned region, and checks the color ratio of its region against a pre-defined "happiness" threshold at every time step. If the ratio falls below a certain threshold (e.g., 40%), the agent is found to be "unhappy", and randomly moves to another region. People are represented as points, with locations randomly chosen within their regions. The color of a region depends on the color of the majority population it contains (i.e., point in polygon calculations). - -## How to run - -To run the model interactively, run `mesa runserver` in this directory. e.g. - -```bash -mesa runserver -``` - -Then open your browser to [http://127.0.0.1:8521/](http://127.0.0.1:8521/) and press `Start`. diff --git a/examples/geo_schelling_points/data/nuts_rg_60M_2013_lvl_2.geojson b/examples/geo_schelling_points/data/nuts_rg_60M_2013_lvl_2.geojson deleted file mode 100644 index fb1ed198..00000000 --- a/examples/geo_schelling_points/data/nuts_rg_60M_2013_lvl_2.geojson +++ /dev/null @@ -1,326 +0,0 @@ -{ -"type": "FeatureCollection", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, -"features": [ -{ "type": "Feature", "id": 2, "properties": { "NUTS_ID": "AT11", "STAT_LEVL_": 2, "SHAPE_AREA": 0.53145725638100005, "SHAPE_LEN": 4.7954485368800004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.1607975, 48.006656501 ], [ 17.093074, 47.708236 ], [ 16.421846, 47.664704498999981 ], [ 16.652076, 47.6229035 ], [ 16.64622, 47.446597 ], [ 16.4337615, 47.352918499999987 ], [ 16.508267499999988, 47.001255999000023 ], [ 16.113849, 46.869067998999981 ], [ 15.996236, 46.8353985 ], [ 16.121719499999983, 46.990666499999975 ], [ 16.015158499999984, 47.36712749899999 ], [ 16.171769499999982, 47.4224 ], [ 16.281081, 47.4551325 ], [ 16.372502, 47.642485498999974 ], [ 16.2690495, 47.796405499 ], [ 16.38889149900001, 47.881600997000021 ], [ 17.066741, 48.11868149899999 ], [ 17.1607975, 48.006656501 ] ] ] } }, -{ "type": "Feature", "id": 6, "properties": { "NUTS_ID": "AT12", "STAT_LEVL_": 2, "SHAPE_AREA": 2.37700914252, "SHAPE_LEN": 8.3963979014200003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.542449499999975, 48.907696997000016 ], [ 15.753633499999978, 48.852178501000026 ], [ 16.940278, 48.617245498999978 ], [ 16.949778, 48.535791999000025 ], [ 16.851106, 48.438635001000023 ], [ 16.976203, 48.172244498 ], [ 17.066741, 48.11868149899999 ], [ 16.38889149900001, 47.881600997000021 ], [ 16.2690495, 47.796405499 ], [ 16.372502, 47.642485498999974 ], [ 16.281081, 47.4551325 ], [ 16.171769499999982, 47.4224 ], [ 15.847011, 47.567789499000014 ], [ 15.217306, 47.7960275 ], [ 15.0892495, 47.741471000999979 ], [ 14.738462, 47.748723499999983 ], [ 14.479043499999989, 48.104414500000019 ], [ 14.521179, 48.237609498999973 ], [ 14.8288425, 48.189076999 ], [ 14.964447, 48.37851200099999 ], [ 14.691014, 48.584301998 ], [ 14.990445, 49.009649001000014 ], [ 15.542449499999975, 48.907696997000016 ] ], [ [ 16.4380425, 48.31626699899999 ], [ 16.181900499999983, 48.171029997 ], [ 16.576992500000017, 48.14443649899999 ], [ 16.4380425, 48.31626699899999 ] ] ] } }, -{ "type": "Feature", "id": 14, "properties": { "NUTS_ID": "AT13", "STAT_LEVL_": 2, "SHAPE_AREA": 0.032096844679499997, "SHAPE_LEN": 0.91142038864099995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.4380425, 48.31626699899999 ], [ 16.576992500000017, 48.14443649899999 ], [ 16.181900499999983, 48.171029997 ], [ 16.4380425, 48.31626699899999 ] ] ] } }, -{ "type": "Feature", "id": 17, "properties": { "NUTS_ID": "AT21", "STAT_LEVL_": 2, "SHAPE_AREA": 1.1057500235, "SHAPE_LEN": 5.7128825258699996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.784528498999975, 46.943882497 ], [ 13.946724, 46.940629999 ], [ 14.844475, 47.048099998999987 ], [ 15.065120499999978, 46.652112497000019 ], [ 14.6745805, 46.450687500000015 ], [ 14.5651755, 46.372453496999981 ], [ 14.434500500000013, 46.442943501 ], [ 13.714184999, 46.522703499999977 ], [ 13.504249500000014, 46.566303998000024 ], [ 12.731392998999979, 46.634288 ], [ 12.690635, 46.656972000999986 ], [ 12.841158, 46.860979499 ], [ 12.6568335, 47.099517497000022 ], [ 13.354519499999981, 47.09710400099999 ], [ 13.784528498999975, 46.943882497 ] ] ] } }, -{ "type": "Feature", "id": 21, "properties": { "NUTS_ID": "AT22", "STAT_LEVL_": 2, "SHAPE_AREA": 1.99126417059, "SHAPE_LEN": 7.0882003681699999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.171769499999982, 47.4224 ], [ 16.015158499999984, 47.36712749899999 ], [ 16.121719499999983, 46.990666499999975 ], [ 15.996236, 46.8353985 ], [ 16.038086, 46.656145497000011 ], [ 15.786422, 46.7074695 ], [ 15.649988, 46.705757 ], [ 15.40197949899999, 46.65354849900001 ], [ 15.065120499999978, 46.652112497000019 ], [ 14.844475, 47.048099998999987 ], [ 13.946724, 46.940629999 ], [ 13.784528498999975, 46.943882497 ], [ 13.864178998999989, 47.25217 ], [ 13.607597, 47.283564999000021 ], [ 13.585662999000022, 47.474799499000028 ], [ 13.722560499999986, 47.462111500999981 ], [ 13.777418, 47.714528998999981 ], [ 14.010598, 47.700891997999975 ], [ 14.738462, 47.748723499999983 ], [ 15.0892495, 47.741471000999979 ], [ 15.217306, 47.7960275 ], [ 15.847011, 47.567789499000014 ], [ 16.171769499999982, 47.4224 ] ] ] } }, -{ "type": "Feature", "id": 29, "properties": { "NUTS_ID": "AT31", "STAT_LEVL_": 2, "SHAPE_AREA": 1.4390583829900001, "SHAPE_LEN": 6.4106853793200003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.691014, 48.584301998 ], [ 14.964447, 48.37851200099999 ], [ 14.8288425, 48.189076999 ], [ 14.521179, 48.237609498999973 ], [ 14.479043499999989, 48.104414500000019 ], [ 14.738462, 47.748723499999983 ], [ 14.010598, 47.700891997999975 ], [ 13.777418, 47.714528998999981 ], [ 13.722560499999986, 47.462111500999981 ], [ 13.585662999000022, 47.474799499000028 ], [ 13.516169, 47.496504499000025 ], [ 13.303931, 48.00786949899998 ], [ 12.86018150000001, 47.996639999000024 ], [ 12.751555, 48.112810497999988 ], [ 12.9446845, 48.206692498999985 ], [ 13.177043, 48.294389997 ], [ 13.407838, 48.372160501 ], [ 13.438430499999981, 48.548895001 ], [ 13.51336950000001, 48.590977998000028 ], [ 13.727090499999974, 48.513019500999974 ], [ 13.796107, 48.71360049899999 ], [ 13.839507, 48.771605001000012 ], [ 14.691014, 48.584301998 ] ] ] } }, -{ "type": "Feature", "id": 35, "properties": { "NUTS_ID": "AT32", "STAT_LEVL_": 2, "SHAPE_AREA": 0.891632228581, "SHAPE_LEN": 5.5790013642099998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.585662999000022, 47.474799499000028 ], [ 13.607597, 47.283564999000021 ], [ 13.864178998999989, 47.25217 ], [ 13.784528498999975, 46.943882497 ], [ 13.354519499999981, 47.09710400099999 ], [ 12.6568335, 47.099517497000022 ], [ 12.2407455, 47.069168499 ], [ 12.136014, 47.0806675 ], [ 12.114546500000017, 47.306444000999988 ], [ 12.6995915, 47.477885999000023 ], [ 12.575026499999979, 47.632316 ], [ 12.695795499999974, 47.682222998999976 ], [ 13.046055500000023, 47.520502498999974 ], [ 12.8757855, 47.962608999 ], [ 12.86018150000001, 47.996639999000024 ], [ 13.303931, 48.00786949899998 ], [ 13.516169, 47.496504499000025 ], [ 13.585662999000022, 47.474799499000028 ] ] ] } }, -{ "type": "Feature", "id": 38, "properties": { "NUTS_ID": "BE31", "STAT_LEVL_": 2, "SHAPE_AREA": 0.13567893613400001, "SHAPE_LEN": 1.9732791489299999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.019701, 50.750973000999977 ], [ 4.983341, 50.64224249900002 ], [ 4.577537999000015, 50.542285999 ], [ 4.247219500000028, 50.596118999 ], [ 4.100483, 50.70595549799998 ], [ 4.597269, 50.763534500999981 ], [ 5.019701, 50.750973000999977 ] ] ] } }, -{ "type": "Feature", "id": 40, "properties": { "NUTS_ID": "BE32", "STAT_LEVL_": 2, "SHAPE_AREA": 0.53920904631900002, "SHAPE_LEN": 4.4218588246100001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.459731, 50.765968500999975 ], [ 3.5412725, 50.733700499 ], [ 3.775359499999979, 50.747729999 ], [ 3.815390499999978, 50.75072499700002 ], [ 3.895736499, 50.732944498999984 ], [ 4.100483, 50.70595549799998 ], [ 4.247219500000028, 50.596118999 ], [ 4.577537999000015, 50.542285999 ], [ 4.5886625, 50.321315998999978 ], [ 4.474986999, 50.327610000999982 ], [ 4.432494, 49.941615996999985 ], [ 4.233133, 49.957828498000026 ], [ 4.140853, 49.978759997 ], [ 4.027774500000021, 50.358330498999976 ], [ 3.710389, 50.303165499999977 ], [ 3.65551, 50.461735498999985 ], [ 3.615081499999974, 50.490399001000014 ], [ 3.286492, 50.52756899799999 ], [ 3.245294, 50.713009498000019 ], [ 3.176996, 50.756164497999976 ], [ 3.324118, 50.722308999 ], [ 3.459731, 50.765968500999975 ] ] ], [ [ [ 3.0187085, 50.773532999 ], [ 2.863276, 50.708343496999987 ], [ 2.842169, 50.751404 ], [ 2.945734077, 50.793946362999975 ], [ 3.0187085, 50.773532999 ] ] ] ] } }, -{ "type": "Feature", "id": 47, "properties": { "NUTS_ID": "BE33", "STAT_LEVL_": 2, "SHAPE_AREA": 0.51624470082499996, "SHAPE_LEN": 3.7273321152499999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.020998999000028, 50.754295500000012 ], [ 6.26861550000001, 50.625981 ], [ 6.189312500000028, 50.56609400100001 ], [ 6.192200499000023, 50.521055499 ], [ 6.206287499999974, 50.521302000999981 ], [ 6.315556, 50.497042498999974 ], [ 6.405028500000014, 50.323308499 ], [ 6.137662499999976, 50.129951499000015 ], [ 6.0248995, 50.182779498 ], [ 5.980197499999974, 50.329852999000025 ], [ 5.721549499999981, 50.261989500000027 ], [ 5.675838499, 50.368514999000013 ], [ 5.393235, 50.37936399900002 ], [ 5.221259499999974, 50.417297498999972 ], [ 5.028495, 50.588821499 ], [ 4.983341, 50.64224249900002 ], [ 5.019701, 50.750973000999977 ], [ 5.1018525, 50.708652498999982 ], [ 5.236892, 50.72714600099999 ], [ 5.431686500000012, 50.719803 ], [ 5.687622, 50.811923998999987 ], [ 5.682000499000026, 50.757446497999979 ], [ 5.892073, 50.755237498999975 ], [ 6.020998999000028, 50.754295500000012 ] ] ] } }, -{ "type": "Feature", "id": 53, "properties": { "NUTS_ID": "BE34", "STAT_LEVL_": 2, "SHAPE_AREA": 0.55786131463199995, "SHAPE_LEN": 3.5688595833300001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.0248995, 50.182779498 ], [ 5.746319, 49.853595 ], [ 5.910688, 49.662388001000011 ], [ 5.818117, 49.5463105 ], [ 5.734555999, 49.545690501000024 ], [ 5.470882999000025, 49.49723799899999 ], [ 5.393511, 49.617111 ], [ 5.153738499999974, 49.717926 ], [ 4.969431, 49.801825999000016 ], [ 5.1100045, 49.9253655 ], [ 4.973, 50.028999500999987 ], [ 5.263063499999987, 50.108490001 ], [ 5.393235, 50.37936399900002 ], [ 5.675838499, 50.368514999000013 ], [ 5.721549499999981, 50.261989500000027 ], [ 5.980197499999974, 50.329852999000025 ], [ 6.0248995, 50.182779498 ] ] ] } }, -{ "type": "Feature", "id": 59, "properties": { "NUTS_ID": "BE35", "STAT_LEVL_": 2, "SHAPE_AREA": 0.44161325567199999, "SHAPE_LEN": 3.6278542004599998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.393235, 50.37936399900002 ], [ 5.263063499999987, 50.108490001 ], [ 4.973, 50.028999500999987 ], [ 5.1100045, 49.9253655 ], [ 4.969431, 49.801825999000016 ], [ 4.851578, 49.793255000999977 ], [ 4.793194, 49.98199900100002 ], [ 4.896794, 50.137420498999973 ], [ 4.796697, 50.148677998999972 ], [ 4.432494, 49.941615996999985 ], [ 4.474986999, 50.327610000999982 ], [ 4.5886625, 50.321315998999978 ], [ 4.577537999000015, 50.542285999 ], [ 4.983341, 50.64224249900002 ], [ 5.028495, 50.588821499 ], [ 5.221259499999974, 50.417297498999972 ], [ 5.393235, 50.37936399900002 ] ] ] } }, -{ "type": "Feature", "id": 65, "properties": { "NUTS_ID": "BG31", "STAT_LEVL_": 2, "SHAPE_AREA": 2.0797181850299999, "SHAPE_LEN": 8.0136255840900006 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.641605998999978, 43.733412999 ], [ 25.293740500000013, 43.654294 ], [ 25.14043, 43.26683049899998 ], [ 25.076597, 43.17778049899999 ], [ 24.870264500000019, 42.972207998999977 ], [ 25.014595682999982, 42.748554082999988 ], [ 25.007195500000023, 42.737618999 ], [ 24.385927, 42.749953498000025 ], [ 24.12798399899998, 42.774947997000027 ], [ 24.165291501000013, 42.929701498999975 ], [ 23.971503499999983, 43.062251499000013 ], [ 23.566569, 42.993892999000025 ], [ 23.412767, 43.160521997999979 ], [ 23.00621, 43.192878498000027 ], [ 22.747454, 43.386612999000022 ], [ 22.666975499999978, 43.402747498999986 ], [ 22.357130499999982, 43.809481999000013 ], [ 22.536145, 44.045511499999975 ], [ 22.6751615, 44.215662996999981 ], [ 22.966399500000023, 44.098524997000027 ], [ 23.045898, 44.063749499999972 ], [ 22.838719, 43.877852001 ], [ 22.997154500000022, 43.807626997 ], [ 23.63008, 43.791259997999987 ], [ 24.112719, 43.699566498000024 ], [ 24.324132, 43.699567996999974 ], [ 24.641605998999978, 43.733412999 ] ] ] } }, -{ "type": "Feature", "id": 71, "properties": { "NUTS_ID": "BG32", "STAT_LEVL_": 2, "SHAPE_AREA": 1.6227802097699999, "SHAPE_LEN": 7.3260148064299999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.69541, 43.987343 ], [ 27.2195365, 43.664620499000023 ], [ 27.0018885, 43.696867500999986 ], [ 26.730439499999989, 43.410103499 ], [ 26.188978, 43.517393498999979 ], [ 25.9437855, 43.385800999000026 ], [ 25.95983, 43.369547001 ], [ 25.986506, 43.369286499 ], [ 26.004585, 43.318754499000022 ], [ 26.1674145, 42.952155499000014 ], [ 25.837491, 42.77722749899999 ], [ 25.6149615, 42.786808499000017 ], [ 25.014595682999982, 42.748554082999988 ], [ 24.870264500000019, 42.972207998999977 ], [ 25.076597, 43.17778049899999 ], [ 25.14043, 43.26683049899998 ], [ 25.293740500000013, 43.654294 ], [ 25.544640500000014, 43.64298149699999 ], [ 25.671862499999975, 43.691339998999979 ], [ 26.358359999000015, 44.038415500999974 ], [ 26.379968, 44.042950999000027 ], [ 27.271344999, 44.12633649899999 ], [ 27.69541, 43.987343 ] ] ] } }, -{ "type": "Feature", "id": 77, "properties": { "NUTS_ID": "BG33", "STAT_LEVL_": 2, "SHAPE_AREA": 1.68243612812, "SHAPE_LEN": 6.5331867527099998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.578884, 43.738739 ], [ 28.529502998999988, 43.423537997999972 ], [ 28.0601805, 43.316445000999977 ], [ 27.88262, 42.838413498000023 ], [ 27.0944335, 42.953910499000017 ], [ 26.5899885, 42.920118499000012 ], [ 26.577725499999985, 42.985697 ], [ 26.1674145, 42.952155499000014 ], [ 26.004585, 43.318754499000022 ], [ 25.986506, 43.369286499 ], [ 25.95983, 43.369547001 ], [ 25.9437855, 43.385800999000026 ], [ 26.188978, 43.517393498999979 ], [ 26.730439499999989, 43.410103499 ], [ 27.0018885, 43.696867500999986 ], [ 27.2195365, 43.664620499000023 ], [ 27.69541, 43.987343 ], [ 28.578884, 43.738739 ] ] ] } }, -{ "type": "Feature", "id": 82, "properties": { "NUTS_ID": "BG34", "STAT_LEVL_": 2, "SHAPE_AREA": 2.1187757469899999, "SHAPE_LEN": 8.2318353435099993 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.88262, 42.838413498000023 ], [ 27.899066999000013, 42.700245500999984 ], [ 27.4479045, 42.461486998999987 ], [ 28.035512499999982, 41.983079498999984 ], [ 27.559395, 41.904781496999988 ], [ 27.059650499999975, 42.088336997999988 ], [ 26.9492285, 42.000213498999983 ], [ 26.561544500000025, 41.92627349899999 ], [ 26.538056, 42.154196999000021 ], [ 26.192733499999974, 42.208129997000015 ], [ 26.057769499000017, 42.017656499999987 ], [ 25.609251, 42.200959 ], [ 25.348064, 42.11437749800001 ], [ 25.007195500000023, 42.737618999 ], [ 25.014595682999982, 42.748554082999988 ], [ 25.6149615, 42.786808499000017 ], [ 25.837491, 42.77722749899999 ], [ 26.1674145, 42.952155499000014 ], [ 26.577725499999985, 42.985697 ], [ 26.5899885, 42.920118499000012 ], [ 27.0944335, 42.953910499000017 ], [ 27.88262, 42.838413498000023 ] ] ] } }, -{ "type": "Feature", "id": 88, "properties": { "NUTS_ID": "BG41", "STAT_LEVL_": 2, "SHAPE_AREA": 2.2291414606000002, "SHAPE_LEN": 7.5124806949699998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.385927, 42.749953498000025 ], [ 24.421009500000025, 42.553063996999981 ], [ 23.8904885, 42.546269500999983 ], [ 23.958568, 42.383301499000027 ], [ 23.77226, 42.18118549899998 ], [ 23.786217, 41.833541998999976 ], [ 24.0745475, 41.672703996999985 ], [ 24.059744, 41.522112 ], [ 23.624222998999983, 41.375727497000014 ], [ 22.9275915, 41.338539498999978 ], [ 22.968327499999987, 41.51983549900001 ], [ 22.867214, 42.022199496999974 ], [ 22.510412, 42.15515849799999 ], [ 22.3602065, 42.311157001000026 ], [ 22.559255, 42.480283998 ], [ 22.461472, 42.64849049899999 ], [ 22.44282149899999, 42.825456501000019 ], [ 22.5155105, 42.868538498000021 ], [ 22.7483995, 42.889787496999986 ], [ 23.00621, 43.192878498000027 ], [ 23.412767, 43.160521997999979 ], [ 23.566569, 42.993892999000025 ], [ 23.971503499999983, 43.062251499000013 ], [ 24.165291501000013, 42.929701498999975 ], [ 24.12798399899998, 42.774947997000027 ], [ 24.385927, 42.749953498000025 ] ] ] } }, -{ "type": "Feature", "id": 94, "properties": { "NUTS_ID": "BG42", "STAT_LEVL_": 2, "SHAPE_AREA": 2.5083393701099999, "SHAPE_LEN": 8.0346350016599999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 25.007195500000023, 42.737618999 ], [ 25.348064, 42.11437749800001 ], [ 25.609251, 42.200959 ], [ 26.057769499000017, 42.017656499999987 ], [ 26.192733499999974, 42.208129997000015 ], [ 26.538056, 42.154196999000021 ], [ 26.561544500000025, 41.92627349899999 ], [ 26.357879, 41.711104498999987 ], [ 26.060393, 41.688516000999982 ], [ 26.158688499999982, 41.391182496999988 ], [ 25.948626, 41.320342000999972 ], [ 25.906437499999981, 41.307574998 ], [ 25.224698499999988, 41.264630997999973 ], [ 25.1793755, 41.310187998 ], [ 24.783956, 41.360188997000023 ], [ 24.525637, 41.568699998 ], [ 24.059744, 41.522112 ], [ 24.0745475, 41.672703996999985 ], [ 23.786217, 41.833541998999976 ], [ 23.77226, 42.18118549899998 ], [ 23.958568, 42.383301499000027 ], [ 23.8904885, 42.546269500999983 ], [ 24.421009500000025, 42.553063996999981 ], [ 24.385927, 42.749953498000025 ], [ 25.007195500000023, 42.737618999 ] ] ] } }, -{ "type": "Feature", "id": 102, "properties": { "NUTS_ID": "CY00", "STAT_LEVL_": 2, "SHAPE_AREA": 0.87854701902400001, "SHAPE_LEN": 5.8309313981199997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 34.43715, 35.60157049899999 ], [ 33.906834, 35.257218 ], [ 34.077861499999983, 34.966491001 ], [ 33.6778885, 34.971539999000015 ], [ 33.006973499000026, 34.648288499999978 ], [ 32.425964500000021, 34.743192497999985 ], [ 32.269781, 35.066213999000013 ], [ 32.881518, 35.16222 ], [ 32.9214245, 35.403959998 ], [ 33.652597, 35.35919099900002 ], [ 34.588354, 35.695434498999987 ], [ 34.43715, 35.60157049899999 ] ] ] } }, -{ "type": "Feature", "id": 106, "properties": { "NUTS_ID": "CZ01", "STAT_LEVL_": 2, "SHAPE_AREA": 0.029456611647900002, "SHAPE_LEN": 0.98340458465299996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.6693535, 50.016293 ], [ 14.3383055, 49.9483545 ], [ 14.224306, 50.102918999 ], [ 14.6693535, 50.016293 ] ] ] } }, -{ "type": "Feature", "id": 108, "properties": { "NUTS_ID": "CZ02", "STAT_LEVL_": 2, "SHAPE_AREA": 1.3765894295400001, "SHAPE_LEN": 6.3730185119099998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.496953, 49.86118449899999 ], [ 14.932018500000027, 49.549100999000018 ], [ 13.765590499999973, 49.513990498999988 ], [ 13.818361, 49.920024996999985 ], [ 13.407053500000018, 50.089616998999986 ], [ 14.486485499000025, 50.505026997000016 ], [ 15.1467705, 50.52294249800002 ], [ 15.104144500000018, 50.37609500100001 ], [ 15.4375865, 50.109857498999986 ], [ 15.3627085, 50.041348998999979 ], [ 15.496953, 49.86118449899999 ] ], [ [ 14.6693535, 50.016293 ], [ 14.224306, 50.102918999 ], [ 14.3383055, 49.9483545 ], [ 14.6693535, 50.016293 ] ] ] } }, -{ "type": "Feature", "id": 110, "properties": { "NUTS_ID": "CZ03", "STAT_LEVL_": 2, "SHAPE_AREA": 2.13423230708, "SHAPE_LEN": 7.9066862237100004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.407053500000018, 50.089616998999986 ], [ 13.818361, 49.920024996999985 ], [ 13.765590499999973, 49.513990498999988 ], [ 14.932018500000027, 49.549100999000018 ], [ 14.903884, 49.3331485 ], [ 15.586756499999979, 48.947159498000019 ], [ 15.542449499999975, 48.907696997000016 ], [ 14.990445, 49.009649001000014 ], [ 14.691014, 48.584301998 ], [ 13.839507, 48.771605001000012 ], [ 13.5515785, 48.967787497000018 ], [ 13.4166515, 48.980035499 ], [ 13.170907999, 49.173579501 ], [ 12.633763499999986, 49.476194997999983 ], [ 12.593778499999985, 49.542191499000012 ], [ 12.401524, 49.758372998000027 ], [ 12.550988500000017, 49.905088001000024 ], [ 13.301367, 50.099643496999988 ], [ 13.407053500000018, 50.089616998999986 ] ] ] } }, -{ "type": "Feature", "id": 113, "properties": { "NUTS_ID": "CZ04", "STAT_LEVL_": 2, "SHAPE_AREA": 1.0637309668299999, "SHAPE_LEN": 6.1800136281700002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.6188, 50.857804497000018 ], [ 14.343548, 50.667924 ], [ 14.486485499000025, 50.505026997000016 ], [ 13.407053500000018, 50.089616998999986 ], [ 13.301367, 50.099643496999988 ], [ 12.550988500000017, 49.905088001000024 ], [ 12.260799, 50.058156498000017 ], [ 12.160679, 50.219848997999975 ], [ 12.100900500000023, 50.31802799799999 ], [ 12.5837785, 50.407078999000021 ], [ 12.948144500000012, 50.404311499000016 ], [ 13.501846, 50.633642999000017 ], [ 13.652174, 50.730359997999983 ], [ 14.388335, 50.900298997999982 ], [ 14.317873500000019, 51.054698998999982 ], [ 14.491221, 51.043530498999985 ], [ 14.6188, 50.857804497000018 ] ] ] } }, -{ "type": "Feature", "id": 116, "properties": { "NUTS_ID": "CZ05", "STAT_LEVL_": 2, "SHAPE_AREA": 1.6438625007600001, "SHAPE_LEN": 7.0808888858300003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.86327, 50.19812299900002 ], [ 16.8042, 49.598813001 ], [ 16.393628, 49.580610501000024 ], [ 15.496953, 49.86118449899999 ], [ 15.3627085, 50.041348998999979 ], [ 15.4375865, 50.109857498999986 ], [ 15.104144500000018, 50.37609500100001 ], [ 15.1467705, 50.52294249800002 ], [ 14.486485499000025, 50.505026997000016 ], [ 14.343548, 50.667924 ], [ 14.6188, 50.857804497000018 ], [ 14.823362, 50.870550497000011 ], [ 15.032691, 51.021315999000024 ], [ 15.535267499999975, 50.779375999000024 ], [ 16.107318, 50.662072998999975 ], [ 16.443536, 50.586257499999988 ], [ 16.195729, 50.432135001 ], [ 16.58029, 50.142787998000017 ], [ 16.86327, 50.19812299900002 ] ] ] } }, -{ "type": "Feature", "id": 120, "properties": { "NUTS_ID": "CZ06", "STAT_LEVL_": 2, "SHAPE_AREA": 1.79721430742, "SHAPE_LEN": 6.7605881206999996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.8042, 49.598813001 ], [ 16.8052965, 49.405731498000023 ], [ 16.943, 49.493225000999985 ], [ 17.159901499999989, 49.27505750099999 ], [ 17.11208, 49.077270998000017 ], [ 17.64693, 48.854265998000017 ], [ 17.3967255, 48.813349997999978 ], [ 17.2016625, 48.878028997 ], [ 16.940278, 48.617245498999978 ], [ 15.753633499999978, 48.852178501000026 ], [ 15.542449499999975, 48.907696997000016 ], [ 15.586756499999979, 48.947159498000019 ], [ 14.903884, 49.3331485 ], [ 14.932018500000027, 49.549100999000018 ], [ 15.496953, 49.86118449899999 ], [ 16.393628, 49.580610501000024 ], [ 16.8042, 49.598813001 ] ] ] } }, -{ "type": "Feature", "id": 123, "properties": { "NUTS_ID": "CZ07", "STAT_LEVL_": 2, "SHAPE_AREA": 1.1151345795100001, "SHAPE_LEN": 5.8138541232199996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.429605, 50.254513001000021 ], [ 17.147394500000019, 49.877996499 ], [ 17.4669015, 49.870716499000025 ], [ 17.9168565, 49.53780899899999 ], [ 18.4035955, 49.396745499000019 ], [ 18.322436, 49.315059 ], [ 17.64693, 48.854265998000017 ], [ 17.11208, 49.077270998000017 ], [ 17.159901499999989, 49.27505750099999 ], [ 16.943, 49.493225000999985 ], [ 16.8052965, 49.405731498000023 ], [ 16.8042, 49.598813001 ], [ 16.86327, 50.19812299900002 ], [ 17.028323, 50.229996998999979 ], [ 16.907924499999979, 50.44945400099999 ], [ 17.429605, 50.254513001000021 ] ] ] } }, -{ "type": "Feature", "id": 126, "properties": { "NUTS_ID": "CZ08", "STAT_LEVL_": 2, "SHAPE_AREA": 0.69385092800299997, "SHAPE_LEN": 4.4773661800899998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.035060999, 50.06577199899999 ], [ 18.575724, 49.910423 ], [ 18.851551, 49.51718900100002 ], [ 18.4035955, 49.396745499000019 ], [ 17.9168565, 49.53780899899999 ], [ 17.4669015, 49.870716499000025 ], [ 17.147394500000019, 49.877996499 ], [ 17.429605, 50.254513001000021 ], [ 17.718403998999975, 50.32095 ], [ 17.758479, 50.206568 ], [ 17.592736, 50.160014 ], [ 17.868675, 49.972545997 ], [ 18.035060999, 50.06577199899999 ] ] ] } }, -{ "type": "Feature", "id": 130, "properties": { "NUTS_ID": "CH01", "STAT_LEVL_": 2, "SHAPE_AREA": 1.10709731997, "SHAPE_LEN": 7.5483525245700003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.4104115, 46.653020498999979 ], [ 8.4776735, 46.527602499000011 ], [ 8.384717, 46.452158499 ], [ 7.8771375, 45.926954997999985 ], [ 7.86407650000001, 45.916750499999978 ], [ 7.044886, 45.922412999000016 ], [ 6.797888999, 46.136798999 ], [ 6.821063998999989, 46.427154498999982 ], [ 6.24136, 46.343582497 ], [ 6.231694, 46.329429498000025 ], [ 6.219547, 46.311877998999989 ], [ 6.310211, 46.244045498999981 ], [ 5.956067, 46.1320955 ], [ 6.125608, 46.317229999 ], [ 6.064003, 46.416228997000019 ], [ 6.138106, 46.557666997000013 ], [ 6.460011, 46.851551498999982 ], [ 6.780046, 46.852642999000011 ], [ 6.742307, 46.827455498 ], [ 6.852262497000027, 46.77425905699999 ], [ 6.866233500000021, 46.909293499 ], [ 6.8962095, 46.92532599899999 ], [ 6.9924145, 46.830588497 ], [ 6.817892500000028, 46.516538998999977 ], [ 7.237020500000028, 46.553799998999978 ], [ 7.221457, 46.329212499999983 ], [ 8.4104115, 46.653020498999979 ] ] ] } }, -{ "type": "Feature", "id": 134, "properties": { "NUTS_ID": "CH02", "STAT_LEVL_": 2, "SHAPE_AREA": 1.1431317061899999, "SHAPE_LEN": 6.6713179942399998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.43689, 47.379970499000024 ], [ 7.644196500000021, 47.367268998999975 ], [ 7.956853, 47.455200497000021 ], [ 8.007361, 47.339403 ], [ 7.824728, 47.26563749799999 ], [ 7.838686, 47.234413999000026 ], [ 7.956177501000013, 47.003421499000012 ], [ 7.857267001000025, 46.87143149799999 ], [ 8.049088, 46.788008 ], [ 8.368889498999977, 46.787975500000016 ], [ 8.395225, 46.771538 ], [ 8.4489595, 46.764517001 ], [ 8.4104115, 46.653020498999979 ], [ 7.221457, 46.329212499999983 ], [ 7.237020500000028, 46.553799998999978 ], [ 6.817892500000028, 46.516538998999977 ], [ 6.9924145, 46.830588497 ], [ 6.8962095, 46.92532599899999 ], [ 6.866233500000021, 46.909293499 ], [ 6.852262497000027, 46.77425905699999 ], [ 6.742307, 46.827455498 ], [ 6.780046, 46.852642999000011 ], [ 6.460011, 46.851551498999982 ], [ 6.858914, 47.165294499000026 ], [ 7.061636, 47.34373449899999 ], [ 6.879806, 47.352439998000023 ], [ 6.939186, 47.433704499999976 ], [ 7.130353, 47.503040499 ], [ 7.326466, 47.439853500000027 ], [ 7.375684499999977, 47.414077 ], [ 7.43689, 47.379970499000024 ] ] ] } }, -{ "type": "Feature", "id": 140, "properties": { "NUTS_ID": "CH03", "STAT_LEVL_": 2, "SHAPE_AREA": 0.27224028981499998, "SHAPE_LEN": 3.2010510032499999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.634097, 47.561113501000023 ], [ 7.713784499999974, 47.539405 ], [ 7.894107500000018, 47.586374998999986 ], [ 8.426434500000028, 47.567548998 ], [ 8.410716, 47.248037497999974 ], [ 8.4121295, 47.140737498000021 ], [ 7.838686, 47.234413999000026 ], [ 7.824728, 47.26563749799999 ], [ 8.007361, 47.339403 ], [ 7.956853, 47.455200497000021 ], [ 7.644196500000021, 47.367268998999975 ], [ 7.43689, 47.379970499000024 ], [ 7.375684499999977, 47.414077 ], [ 7.326466, 47.439853500000027 ], [ 7.380894, 47.431892499000014 ], [ 7.42113949899999, 47.446387999000024 ], [ 7.445019, 47.46172349699998 ], [ 7.510905499999978, 47.502582497999981 ], [ 7.5551595, 47.56456399699999 ], [ 7.589039, 47.589877999 ], [ 7.634097, 47.561113501000023 ] ] ] } }, -{ "type": "Feature", "id": 144, "properties": { "NUTS_ID": "CH04", "STAT_LEVL_": 2, "SHAPE_AREA": 0.180299367234, "SHAPE_LEN": 1.6657964434100001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.807784500000025, 47.220560001000024 ], [ 8.69248349899999, 47.163624998999978 ], [ 8.410716, 47.248037497999974 ], [ 8.426434500000028, 47.567548998 ], [ 8.562841, 47.599432498 ], [ 8.595602, 47.6055445 ], [ 8.606369500000028, 47.669005498999979 ], [ 8.663354, 47.685892498999976 ], [ 8.670461, 47.684862499000019 ], [ 8.943635500000028, 47.37583749800001 ], [ 8.807784500000025, 47.220560001000024 ] ] ] } }, -{ "type": "Feature", "id": 148, "properties": { "NUTS_ID": "AT33", "STAT_LEVL_": 2, "SHAPE_AREA": 1.46510258568, "SHAPE_LEN": 8.1757613579200008 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.6995915, 47.477885999000023 ], [ 12.114546500000017, 47.306444000999988 ], [ 12.136014, 47.0806675 ], [ 11.627199500000017, 47.013299 ], [ 11.164281500000016, 46.965722500000027 ], [ 11.02225, 46.765410498999984 ], [ 10.4696515, 46.854909 ], [ 10.389317999000014, 47.000524499999983 ], [ 10.144974499999989, 46.851009498999986 ], [ 10.212995, 47.157583999 ], [ 10.178353, 47.270113998999989 ], [ 10.454439, 47.55579699899999 ], [ 10.886199, 47.536847998999974 ], [ 10.991202499999986, 47.396131 ], [ 11.0165005, 47.396368000999985 ], [ 11.4214275, 47.44485199899998 ], [ 11.410219, 47.495324000999972 ], [ 11.632883, 47.592445997000027 ], [ 12.060662, 47.618743499 ], [ 12.338045498999975, 47.697087501 ], [ 12.575026499999979, 47.632316 ], [ 12.6995915, 47.477885999000023 ] ] ], [ [ [ 12.841158, 46.860979499 ], [ 12.690635, 46.656972000999986 ], [ 12.477924, 46.679835497999989 ], [ 12.143811, 46.913779998 ], [ 12.2407455, 47.069168499 ], [ 12.6568335, 47.099517497000022 ], [ 12.841158, 46.860979499 ] ] ] ] } }, -{ "type": "Feature", "id": 154, "properties": { "NUTS_ID": "AT34", "STAT_LEVL_": 2, "SHAPE_AREA": 0.31311207869000002, "SHAPE_LEN": 2.3857575307399999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.178353, 47.270113998999989 ], [ 10.212995, 47.157583999 ], [ 10.144974499999989, 46.851009498999986 ], [ 9.607078, 47.0607745 ], [ 9.620580500000017, 47.151645499999972 ], [ 9.530749, 47.270581000999982 ], [ 9.673370499999976, 47.38151050099998 ], [ 9.5587205, 47.541892999000027 ], [ 9.967813499999977, 47.546240496999985 ], [ 9.999526, 47.48301699699999 ], [ 10.178353, 47.270113998999989 ] ] ] } }, -{ "type": "Feature", "id": 159, "properties": { "NUTS_ID": "BE10", "STAT_LEVL_": 2, "SHAPE_AREA": 0.0030247151296100001, "SHAPE_LEN": 0.49368216231500001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.47678350000001, 50.8203775 ], [ 4.4804765, 50.794257999000024 ], [ 4.2455665, 50.817627 ], [ 4.47678350000001, 50.8203775 ] ] ] } }, -{ "type": "Feature", "id": 162, "properties": { "NUTS_ID": "BE21", "STAT_LEVL_": 2, "SHAPE_AREA": 0.37700252114799998, "SHAPE_LEN": 2.767202854 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.237716499999976, 51.261600499 ], [ 5.26107349900002, 51.146964998999977 ], [ 4.981574500000022, 51.034885498999984 ], [ 4.789319, 51.038928999 ], [ 4.528663, 50.992264498999987 ], [ 4.240999, 51.036868997 ], [ 4.175792, 51.101211501000023 ], [ 4.31116750000001, 51.126147999000011 ], [ 4.242049, 51.353966999000022 ], [ 4.24366950000001, 51.374729499000011 ], [ 4.279565, 51.376017497000021 ], [ 4.669544, 51.426383999 ], [ 4.759926, 51.50246449799999 ], [ 5.10218, 51.42900499699999 ], [ 5.237716499999976, 51.261600499 ] ] ] } }, -{ "type": "Feature", "id": 166, "properties": { "NUTS_ID": "BE22", "STAT_LEVL_": 2, "SHAPE_AREA": 0.307037454609, "SHAPE_LEN": 2.2568704305099998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.5662835, 51.220836497999983 ], [ 5.798274, 51.059853498999985 ], [ 5.766149, 51.009235499999988 ], [ 5.758272498999986, 50.954795 ], [ 5.687622, 50.811923998999987 ], [ 5.431686500000012, 50.719803 ], [ 5.236892, 50.72714600099999 ], [ 5.1018525, 50.708652498999982 ], [ 4.981574500000022, 51.034885498999984 ], [ 5.26107349900002, 51.146964998999977 ], [ 5.237716499999976, 51.261600499 ], [ 5.5662835, 51.220836497999983 ] ] ] } }, -{ "type": "Feature", "id": 170, "properties": { "NUTS_ID": "BE23", "STAT_LEVL_": 2, "SHAPE_AREA": 0.37938240829699998, "SHAPE_LEN": 2.87947411747 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.240999, 51.036868997 ], [ 4.147153, 50.969398499000022 ], [ 3.895736499, 50.732944498999984 ], [ 3.815390499999978, 50.75072499700002 ], [ 3.775359499999979, 50.747729999 ], [ 3.5412725, 50.733700499 ], [ 3.459731, 50.765968500999975 ], [ 3.4667465, 50.902096500000027 ], [ 3.419824, 50.910934999 ], [ 3.331306, 51.098873 ], [ 3.41093, 51.159888997 ], [ 3.380661, 51.274299497000015 ], [ 3.8563395, 51.211056 ], [ 3.9776665, 51.225131998999984 ], [ 4.23481750000002, 51.348254 ], [ 4.242049, 51.353966999000022 ], [ 4.31116750000001, 51.126147999000011 ], [ 4.175792, 51.101211501000023 ], [ 4.240999, 51.036868997 ] ] ] } }, -{ "type": "Feature", "id": 177, "properties": { "NUTS_ID": "BE24", "STAT_LEVL_": 2, "SHAPE_AREA": 0.27373607525799998, "SHAPE_LEN": 3.2719621056600001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.981574500000022, 51.034885498999984 ], [ 5.1018525, 50.708652498999982 ], [ 5.019701, 50.750973000999977 ], [ 4.597269, 50.763534500999981 ], [ 4.100483, 50.70595549799998 ], [ 3.895736499, 50.732944498999984 ], [ 4.147153, 50.969398499000022 ], [ 4.240999, 51.036868997 ], [ 4.528663, 50.992264498999987 ], [ 4.789319, 51.038928999 ], [ 4.981574500000022, 51.034885498999984 ] ], [ [ 4.47678350000001, 50.8203775 ], [ 4.2455665, 50.817627 ], [ 4.4804765, 50.794257999000024 ], [ 4.47678350000001, 50.8203775 ] ] ] } }, -{ "type": "Feature", "id": 180, "properties": { "NUTS_ID": "BE25", "STAT_LEVL_": 2, "SHAPE_AREA": 0.38754984531999997, "SHAPE_LEN": 2.7805926238100001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.0187085, 50.773532999 ], [ 2.945734077, 50.793946362999975 ], [ 2.842169, 50.751404 ], [ 2.863276, 50.708343496999987 ], [ 2.607036, 50.91268949900001 ], [ 2.546011, 51.089381998000022 ], [ 2.749051499000018, 51.161769999 ], [ 3.110688499999981, 51.312259501000028 ], [ 3.367216499999984, 51.368134499 ], [ 3.380661, 51.274299497000015 ], [ 3.41093, 51.159888997 ], [ 3.331306, 51.098873 ], [ 3.419824, 50.910934999 ], [ 3.4667465, 50.902096500000027 ], [ 3.459731, 50.765968500999975 ], [ 3.324118, 50.722308999 ], [ 3.176996, 50.756164497999976 ], [ 3.098481, 50.779019 ], [ 3.0187085, 50.773532999 ] ] ] } }, -{ "type": "Feature", "id": 189, "properties": { "NUTS_ID": "DE72", "STAT_LEVL_": 2, "SHAPE_AREA": 0.65308830405899998, "SHAPE_LEN": 3.9931268325699998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.479113, 50.440685497 ], [ 9.286735, 50.437298 ], [ 9.042425499999979, 50.49799 ], [ 8.577542, 50.415019 ], [ 8.5141395, 50.399351498999977 ], [ 8.467215, 50.415048499000022 ], [ 8.354557, 50.294229998999981 ], [ 8.1219135, 50.277224999 ], [ 7.971559500000012, 50.406220499000028 ], [ 8.151592, 50.599370998999973 ], [ 8.125776499999972, 50.685813998000015 ], [ 8.355495999000027, 50.862001 ], [ 8.477892, 50.96904749700002 ], [ 8.9746, 50.938304001 ], [ 9.1488685, 50.836645 ], [ 9.441055, 50.795644501000027 ], [ 9.611464500000011, 50.7354765 ], [ 9.466069, 50.660618 ], [ 9.479113, 50.440685497 ] ] ] } }, -{ "type": "Feature", "id": 195, "properties": { "NUTS_ID": "DE73", "STAT_LEVL_": 2, "SHAPE_AREA": 1.09544021487, "SHAPE_LEN": 6.0414718664000002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.928339, 51.375299 ], [ 10.206942, 51.190648996999983 ], [ 10.210013, 51.144082998999977 ], [ 10.202181, 51.012009001000024 ], [ 10.182348499999989, 50.99848750000001 ], [ 10.021558500000026, 50.9929495 ], [ 9.9261765, 50.767389998999988 ], [ 10.077555500000017, 50.63762399699999 ], [ 10.0413385, 50.516469498999982 ], [ 9.935655, 50.419606499999986 ], [ 9.7329145, 50.356149499000026 ], [ 9.479113, 50.440685497 ], [ 9.466069, 50.660618 ], [ 9.611464500000011, 50.7354765 ], [ 9.441055, 50.795644501000027 ], [ 9.1488685, 50.836645 ], [ 8.9746, 50.938304001 ], [ 8.477892, 50.96904749700002 ], [ 8.549084999, 51.101868001000014 ], [ 8.7582145, 51.177181499000028 ], [ 8.556348, 51.277495 ], [ 8.970653500000026, 51.5067735 ], [ 9.155410500000016, 51.442674999000019 ], [ 9.440457, 51.650393999000016 ], [ 9.685331, 51.582016499000019 ], [ 9.672377499999982, 51.568403999 ], [ 9.62582500100001, 51.580205 ], [ 9.647755500000017, 51.55251099899999 ], [ 9.557291, 51.35137849900002 ], [ 9.568025, 51.340001498999982 ], [ 9.710295479000024, 51.301537750000023 ], [ 9.928339, 51.375299 ] ] ] } }, -{ "type": "Feature", "id": 204, "properties": { "NUTS_ID": "DE80", "STAT_LEVL_": 2, "SHAPE_AREA": 3.21364124189, "SHAPE_LEN": 13.3120506311 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.926951499999973, 54.427963998999985 ], [ 12.363174500000014, 54.267097998999986 ], [ 13.017391718999988, 54.438720773999989 ], [ 13.109225, 54.27934049800001 ], [ 13.319396, 54.193505997999978 ], [ 13.344701499999985, 54.181111497000018 ], [ 13.742715499999974, 54.031386499 ], [ 13.819152499999973, 53.841944996999985 ], [ 14.267542, 53.697806496999988 ], [ 14.412157, 53.329635998000015 ], [ 13.710065499999985, 53.4790625 ], [ 13.2414035, 53.232401 ], [ 12.984683, 53.1649855 ], [ 12.3317515, 53.318011 ], [ 12.325101500000017, 53.321301498000025 ], [ 11.265732, 53.121978 ], [ 11.171861499999977, 53.15664399799999 ], [ 10.595047, 53.363927500999978 ], [ 10.951918499999977, 53.647622499000022 ], [ 10.76296450000001, 53.811153 ], [ 10.903661500999988, 53.956822000999978 ], [ 11.5617785, 54.028088497999988 ], [ 11.998484500000018, 54.174969998999984 ], [ 12.201068, 54.244695498999988 ], [ 12.2855305, 54.274951999 ], [ 12.520881067, 54.474234541999976 ], [ 12.926951499999973, 54.427963998999985 ] ] ], [ [ [ 13.391083499999979, 54.651317 ], [ 13.67934, 54.56278249799999 ], [ 13.6824535, 54.349581 ], [ 13.394217500000025, 54.222502500000019 ], [ 13.114586, 54.331907996999973 ], [ 13.2614835, 54.382916500000022 ], [ 13.270131, 54.480173498999989 ], [ 13.144181, 54.546965499 ], [ 13.391083499999979, 54.651317 ] ] ], [ [ [ 14.2130775, 53.866479498999979 ], [ 13.826150499999983, 53.849684997999987 ], [ 13.750745999, 54.14996050100001 ], [ 13.9720845, 54.06874749799999 ], [ 14.226302, 53.928652998000018 ], [ 14.2130775, 53.866479498999979 ] ] ] ] } }, -{ "type": "Feature", "id": 214, "properties": { "NUTS_ID": "DE91", "STAT_LEVL_": 2, "SHAPE_AREA": 1.0578506974, "SHAPE_LEN": 5.92335754471 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.759314500000016, 52.795830500000022 ], [ 11.0087815, 52.496747500000026 ], [ 10.93454250000002, 52.471794999 ], [ 11.086244, 52.22863399900001 ], [ 10.964414499999975, 52.056642997999973 ], [ 10.801428499999986, 52.0480005 ], [ 10.561227, 52.004065998999977 ], [ 10.701372, 51.642187499999977 ], [ 10.677283, 51.638376000999983 ], [ 10.488551, 51.574778498 ], [ 10.365365, 51.55589100100002 ], [ 9.928339, 51.375299 ], [ 9.710295479000024, 51.301537750000023 ], [ 9.568025, 51.340001498999982 ], [ 9.557291, 51.35137849900002 ], [ 9.647755500000017, 51.55251099899999 ], [ 9.62582500100001, 51.580205 ], [ 9.672377499999982, 51.568403999 ], [ 9.685331, 51.582016499000019 ], [ 9.440457, 51.650393999000016 ], [ 9.417317500000024, 51.647269499 ], [ 9.894248, 51.906155 ], [ 10.065526, 51.927359998999975 ], [ 10.204688499999975, 52.00699 ], [ 10.234005, 52.170195998999986 ], [ 10.257076499999982, 52.18327799799999 ], [ 10.0344675, 52.283765996999989 ], [ 10.2921475, 52.447884499 ], [ 10.273742500000026, 52.51064 ], [ 10.44441, 52.8157635 ], [ 10.759314500000016, 52.795830500000022 ] ] ] } }, -{ "type": "Feature", "id": 226, "properties": { "NUTS_ID": "DE92", "STAT_LEVL_": 2, "SHAPE_AREA": 1.22727347705, "SHAPE_LEN": 6.0421491792599999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.915827, 53.011021497 ], [ 9.115997, 52.896952499 ], [ 9.3256025, 52.767712500000016 ], [ 9.534658499999978, 52.660066498999981 ], [ 9.734624, 52.638302499000019 ], [ 10.273742500000026, 52.51064 ], [ 10.2921475, 52.447884499 ], [ 10.0344675, 52.283765996999989 ], [ 10.257076499999982, 52.18327799799999 ], [ 10.234005, 52.170195998999986 ], [ 10.204688499999975, 52.00699 ], [ 10.065526, 51.927359998999975 ], [ 9.894248, 51.906155 ], [ 9.417317500000024, 51.647269499 ], [ 9.459648500000014, 51.86279749800002 ], [ 9.323343500000021, 51.85506099700001 ], [ 9.308893, 51.922719501000017 ], [ 9.15560449899999, 52.09783 ], [ 8.985787500000015, 52.19457649899999 ], [ 9.125252499999988, 52.411993498000015 ], [ 8.703008999000019, 52.500437998 ], [ 8.2972135, 52.456497997999975 ], [ 8.308324, 52.499112 ], [ 8.459277499999985, 52.80105599699999 ], [ 8.657161, 53.008994498999982 ], [ 8.711424, 53.044629997000015 ], [ 8.915827, 53.011021497 ] ] ] } }, -{ "type": "Feature", "id": 234, "properties": { "NUTS_ID": "DE93", "STAT_LEVL_": 2, "SHAPE_AREA": 2.0533648604599999, "SHAPE_LEN": 7.8479412498 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.614913999, 53.882118 ], [ 9.02991750000001, 53.825564997000015 ], [ 9.02242, 53.87951750000002 ], [ 9.199750999, 53.88010449799998 ], [ 9.48589, 53.707664497999986 ], [ 9.73010399899999, 53.557580997 ], [ 9.768861, 53.50527899799999 ], [ 10.308312, 53.433221498000023 ], [ 10.469184, 53.385844 ], [ 10.595047, 53.363927500999978 ], [ 11.171861499999977, 53.15664399799999 ], [ 11.265732, 53.121978 ], [ 11.597784499999989, 53.035926499000027 ], [ 11.505027, 52.941032499000016 ], [ 10.841556, 52.852205 ], [ 10.759314500000016, 52.795830500000022 ], [ 10.44441, 52.8157635 ], [ 10.273742500000026, 52.51064 ], [ 9.734624, 52.638302499000019 ], [ 9.534658499999978, 52.660066498999981 ], [ 9.3256025, 52.767712500000016 ], [ 9.115997, 52.896952499 ], [ 8.915827, 53.011021497 ], [ 8.979256, 53.045849499999974 ], [ 8.984185500000024, 53.126070998999978 ], [ 8.485330499999975, 53.22712 ], [ 8.499987498999985, 53.366847999000015 ], [ 8.492652, 53.472420000999989 ], [ 8.652134000999979, 53.516016998999987 ], [ 8.650632499999972, 53.602565001000016 ], [ 8.520410500000025, 53.606205000999978 ], [ 8.614913999, 53.882118 ] ] ] } }, -{ "type": "Feature", "id": 246, "properties": { "NUTS_ID": "DE94", "STAT_LEVL_": 2, "SHAPE_AREA": 1.9337703504699999, "SHAPE_LEN": 7.65724913679 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.554898499999979, 53.525131000999977 ], [ 8.492652, 53.472420000999989 ], [ 8.499987498999985, 53.366847999000015 ], [ 8.485330499999975, 53.22712 ], [ 8.6548985, 53.108864499999981 ], [ 8.711424, 53.044629997000015 ], [ 8.657161, 53.008994498999982 ], [ 8.459277499999985, 52.80105599699999 ], [ 8.308324, 52.499112 ], [ 8.2972135, 52.456497997999975 ], [ 8.4661865, 52.267614 ], [ 8.410586500000022, 52.115114996999978 ], [ 8.096448, 52.057145000999981 ], [ 7.885159, 52.0833025 ], [ 8.007796, 52.115332997999985 ], [ 7.956465, 52.2724905 ], [ 7.964625500000011, 52.32485850099999 ], [ 7.608038500000021, 52.474015999000017 ], [ 7.317481, 52.280271998999979 ], [ 7.099148999000022, 52.24305849699999 ], [ 7.065685, 52.241372999000021 ], [ 6.987941499999977, 52.469540999 ], [ 6.697865499999978, 52.486285998000028 ], [ 6.709732499999973, 52.627823498999987 ], [ 7.006229500000018, 52.63876299899999 ], [ 7.092692, 52.83820099899998 ], [ 7.202794499999982, 53.113281498999982 ], [ 7.208935, 53.243064498000024 ], [ 7.2643, 53.325526497999988 ], [ 6.999446499999976, 53.359887501 ], [ 7.24368149899999, 53.66778199700002 ], [ 7.550173, 53.675037499999974 ], [ 7.809895499999982, 53.707661998999981 ], [ 8.091291, 53.638109000999975 ], [ 8.061327, 53.505957001000013 ], [ 8.195555, 53.409171499000024 ], [ 8.329544, 53.614027 ], [ 8.554898499999979, 53.525131000999977 ] ] ] } }, -{ "type": "Feature", "id": 265, "properties": { "NUTS_ID": "DEA1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.68876948715099995, "SHAPE_LEN": 3.9723928364200001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.4077795, 51.828092001000016 ], [ 6.490212, 51.811377000999983 ], [ 6.91086150000001, 51.746098501 ], [ 6.902276, 51.635684501000014 ], [ 6.833152, 51.579647997999984 ], [ 6.928003, 51.497766999000021 ], [ 6.998652, 51.533700497999973 ], [ 7.010207, 51.532728498999973 ], [ 7.1042005, 51.481267498000022 ], [ 7.13603, 51.426038 ], [ 7.117675, 51.380272499 ], [ 7.167288, 51.3129025 ], [ 7.3066935, 51.238875499000017 ], [ 7.295806500000026, 51.205391999000028 ], [ 7.268179499999974, 51.145657500000027 ], [ 7.166349998999976, 51.153941 ], [ 6.997724, 51.11797599800002 ], [ 6.990593499999989, 51.091597998999987 ], [ 6.898045, 51.064885496999977 ], [ 6.853487500000028, 51.084256001000028 ], [ 6.773632500000019, 51.06439000099999 ], [ 6.480495499000028, 51.034178998000016 ], [ 6.45921099899999, 51.043073 ], [ 6.443993499999976, 51.089785498000026 ], [ 6.291978500000027, 51.175453 ], [ 6.174812, 51.1845135 ], [ 6.072657, 51.242587497999978 ], [ 6.224405, 51.364978999000016 ], [ 5.953192, 51.747845998 ], [ 6.167766, 51.900804499 ], [ 6.4077795, 51.828092001000016 ] ] ] } }, -{ "type": "Feature", "id": 281, "properties": { "NUTS_ID": "DEA2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.96075131005100001, "SHAPE_LEN": 4.9958062218199997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.785898, 50.939913999 ], [ 7.6610035, 50.820364500999972 ], [ 7.44077199899999, 50.711437998 ], [ 7.2123995, 50.623404999 ], [ 7.210872, 50.649543499 ], [ 7.1952005, 50.642722999 ], [ 6.927901, 50.558618500000023 ], [ 6.800711499999977, 50.361781499000017 ], [ 6.425295, 50.323011998000027 ], [ 6.405028500000014, 50.323308499 ], [ 6.315556, 50.497042498999974 ], [ 6.206287499999974, 50.521302000999981 ], [ 6.192200499000023, 50.521055499 ], [ 6.189312500000028, 50.56609400100001 ], [ 6.26861550000001, 50.625981 ], [ 6.020998999000028, 50.754295500000012 ], [ 6.0869475, 50.913134999000022 ], [ 5.877084998999976, 51.032101 ], [ 6.174812, 51.1845135 ], [ 6.291978500000027, 51.175453 ], [ 6.443993499999976, 51.089785498000026 ], [ 6.45921099899999, 51.043073 ], [ 6.480495499000028, 51.034178998000016 ], [ 6.773632500000019, 51.06439000099999 ], [ 6.853487500000028, 51.084256001000028 ], [ 6.898045, 51.064885496999977 ], [ 6.990593499999989, 51.091597998999987 ], [ 6.997724, 51.11797599800002 ], [ 7.166349998999976, 51.153941 ], [ 7.268179499999974, 51.145657500000027 ], [ 7.295806500000026, 51.205391999000028 ], [ 7.3066935, 51.238875499000017 ], [ 7.433343, 51.21440899800001 ], [ 7.716120499999988, 51.07290849899999 ], [ 7.785898, 50.939913999 ] ] ] } }, -{ "type": "Feature", "id": 293, "properties": { "NUTS_ID": "DEA3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.92687933506999998, "SHAPE_LEN": 5.3053689456299997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.096448, 52.057145000999981 ], [ 8.320136, 51.72570500099999 ], [ 7.9445275, 51.700582 ], [ 7.735787999000024, 51.737370499 ], [ 7.7018895, 51.712378999 ], [ 7.40955, 51.664580996999973 ], [ 7.417934, 51.599519997000016 ], [ 7.314282, 51.522423 ], [ 7.293587, 51.532262498000023 ], [ 7.145057, 51.55224049899999 ], [ 7.139561500000013, 51.50615749799999 ], [ 7.1042005, 51.481267498000022 ], [ 7.010207, 51.532728498999973 ], [ 6.998652, 51.533700497999973 ], [ 6.928003, 51.497766999000021 ], [ 6.833152, 51.579647997999984 ], [ 6.902276, 51.635684501000014 ], [ 6.91086150000001, 51.746098501 ], [ 6.490212, 51.811377000999983 ], [ 6.4077795, 51.828092001000016 ], [ 6.828513, 51.9640665 ], [ 6.760465, 52.118569499999978 ], [ 7.065685, 52.241372999000021 ], [ 7.099148999000022, 52.24305849699999 ], [ 7.317481, 52.280271998999979 ], [ 7.608038500000021, 52.474015999000017 ], [ 7.964625500000011, 52.32485850099999 ], [ 7.956465, 52.2724905 ], [ 8.007796, 52.115332997999985 ], [ 7.885159, 52.0833025 ], [ 8.096448, 52.057145000999981 ] ] ] } }, -{ "type": "Feature", "id": 302, "properties": { "NUTS_ID": "DEA4", "STAT_LEVL_": 2, "SHAPE_AREA": 0.86286312741100002, "SHAPE_LEN": 4.6156559722599999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.417317500000024, 51.647269499 ], [ 9.440457, 51.650393999000016 ], [ 9.155410500000016, 51.442674999000019 ], [ 8.970653500000026, 51.5067735 ], [ 8.905395, 51.531496499000014 ], [ 8.547931, 51.4678125 ], [ 8.472658, 51.563380499 ], [ 8.573228500000027, 51.660557 ], [ 8.403108, 51.719355001 ], [ 8.320136, 51.72570500099999 ], [ 8.096448, 52.057145000999981 ], [ 8.410586500000022, 52.115114996999978 ], [ 8.4661865, 52.267614 ], [ 8.2972135, 52.456497997999975 ], [ 8.703008999000019, 52.500437998 ], [ 9.125252499999988, 52.411993498000015 ], [ 8.985787500000015, 52.19457649899999 ], [ 9.15560449899999, 52.09783 ], [ 9.308893, 51.922719501000017 ], [ 9.323343500000021, 51.85506099700001 ], [ 9.459648500000014, 51.86279749800002 ], [ 9.417317500000024, 51.647269499 ] ] ] } }, -{ "type": "Feature", "id": 310, "properties": { "NUTS_ID": "DEA5", "STAT_LEVL_": 2, "SHAPE_AREA": 1.02346751393, "SHAPE_LEN": 5.2654460606300004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.320136, 51.72570500099999 ], [ 8.403108, 51.719355001 ], [ 8.573228500000027, 51.660557 ], [ 8.472658, 51.563380499 ], [ 8.547931, 51.4678125 ], [ 8.905395, 51.531496499000014 ], [ 8.970653500000026, 51.5067735 ], [ 8.556348, 51.277495 ], [ 8.7582145, 51.177181499000028 ], [ 8.549084999, 51.101868001000014 ], [ 8.477892, 50.96904749700002 ], [ 8.355495999000027, 50.862001 ], [ 8.125776499999972, 50.685813998000015 ], [ 8.03969, 50.697375498999975 ], [ 7.851496, 50.925832500000013 ], [ 7.785898, 50.939913999 ], [ 7.716120499999988, 51.07290849899999 ], [ 7.433343, 51.21440899800001 ], [ 7.3066935, 51.238875499000017 ], [ 7.167288, 51.3129025 ], [ 7.117675, 51.380272499 ], [ 7.13603, 51.426038 ], [ 7.1042005, 51.481267498000022 ], [ 7.139561500000013, 51.50615749799999 ], [ 7.145057, 51.55224049899999 ], [ 7.293587, 51.532262498000023 ], [ 7.314282, 51.522423 ], [ 7.417934, 51.599519997000016 ], [ 7.40955, 51.664580996999973 ], [ 7.7018895, 51.712378999 ], [ 7.735787999000024, 51.737370499 ], [ 7.9445275, 51.700582 ], [ 8.320136, 51.72570500099999 ] ] ] } }, -{ "type": "Feature", "id": 317, "properties": { "NUTS_ID": "CH05", "STAT_LEVL_": 2, "SHAPE_AREA": 1.3530993073799999, "SHAPE_LEN": 7.2415582557000002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.7279815, 47.692680499 ], [ 8.795708499999989, 47.675595499999986 ], [ 8.843022, 47.712262499000019 ], [ 8.8749985, 47.65597349799998 ], [ 9.182192, 47.655890499 ], [ 9.495604, 47.551454998999986 ], [ 9.5587205, 47.541892999000027 ], [ 9.673370499999976, 47.38151050099998 ], [ 9.530749, 47.270581000999982 ], [ 9.4760475, 47.051797498999974 ], [ 9.607078, 47.0607745 ], [ 10.144974499999989, 46.851009498999986 ], [ 10.389317999000014, 47.000524499999983 ], [ 10.4696515, 46.854909 ], [ 10.452801, 46.530682999000021 ], [ 10.2448745, 46.622091997999974 ], [ 9.714149500000019, 46.292708499000014 ], [ 9.248531500000013, 46.233768000999987 ], [ 9.1593775, 46.169601 ], [ 9.0428035, 46.588800497000022 ], [ 8.678729, 46.57918949899999 ], [ 8.877168499999982, 46.813123499000028 ], [ 8.935079, 46.920207999000013 ], [ 9.004565500000012, 47.173145499999976 ], [ 8.807784500000025, 47.220560001000024 ], [ 8.943635500000028, 47.37583749800001 ], [ 8.670461, 47.684862499000019 ], [ 8.663354, 47.685892498999976 ], [ 8.606369500000028, 47.669005498999979 ], [ 8.510115, 47.776190499999984 ], [ 8.61233, 47.801462 ], [ 8.740104499999973, 47.752789001 ], [ 8.7279815, 47.692680499 ] ] ] } }, -{ "type": "Feature", "id": 325, "properties": { "NUTS_ID": "CH06", "STAT_LEVL_": 2, "SHAPE_AREA": 0.49563412526700001, "SHAPE_LEN": 3.5104742205799999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.807784500000025, 47.220560001000024 ], [ 9.004565500000012, 47.173145499999976 ], [ 8.935079, 46.920207999000013 ], [ 8.877168499999982, 46.813123499000028 ], [ 8.678729, 46.57918949899999 ], [ 8.4776735, 46.527602499000011 ], [ 8.4104115, 46.653020498999979 ], [ 8.4489595, 46.764517001 ], [ 8.395225, 46.771538 ], [ 8.368889498999977, 46.787975500000016 ], [ 8.049088, 46.788008 ], [ 7.857267001000025, 46.87143149799999 ], [ 7.956177501000013, 47.003421499000012 ], [ 7.838686, 47.234413999000026 ], [ 8.4121295, 47.140737498000021 ], [ 8.410716, 47.248037497999974 ], [ 8.69248349899999, 47.163624998999978 ], [ 8.807784500000025, 47.220560001000024 ] ] ] } }, -{ "type": "Feature", "id": 332, "properties": { "NUTS_ID": "CH07", "STAT_LEVL_": 2, "SHAPE_AREA": 0.335715387872, "SHAPE_LEN": 2.518628239 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.1593775, 46.169601 ], [ 8.988276499999984, 45.972282498000027 ], [ 9.088803499999983, 45.896897001000013 ], [ 8.912147, 45.830444999 ], [ 8.713936, 46.097271998999986 ], [ 8.384717, 46.452158499 ], [ 8.4776735, 46.527602499000011 ], [ 8.678729, 46.57918949899999 ], [ 9.0428035, 46.588800497000022 ], [ 9.1593775, 46.169601 ] ] ] } }, -{ "type": "Feature", "id": 336, "properties": { "NUTS_ID": "DE11", "STAT_LEVL_": 2, "SHAPE_AREA": 1.3113121758799999, "SHAPE_LEN": 5.83435618622 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.083623, 49.542955499000016 ], [ 10.118327500000021, 49.47316949899999 ], [ 10.1119665, 49.384910499 ], [ 10.256763499999977, 49.059495 ], [ 10.4098495, 48.977435499000023 ], [ 10.423689, 48.744495997 ], [ 10.487258, 48.69666200099999 ], [ 10.278268, 48.516074499000013 ], [ 10.230779499999983, 48.510511 ], [ 9.9440715, 48.631755499 ], [ 9.5851745, 48.536741499000016 ], [ 9.582475499999987, 48.539146999000025 ], [ 9.1512295, 48.60405549799998 ], [ 9.129176500000028, 48.601266499000019 ], [ 8.768902500000024, 48.521840999 ], [ 8.804181500000027, 48.777778 ], [ 8.928800500000023, 48.866557 ], [ 8.945315, 48.961766 ], [ 8.876031499000021, 49.03517 ], [ 8.8777945, 49.058478501000025 ], [ 8.818233, 49.194497 ], [ 9.0491265, 49.292862500000012 ], [ 9.4434915, 49.364336998 ], [ 9.603823, 49.426577996999981 ], [ 9.41092, 49.663507998999989 ], [ 9.295673, 49.740530998999986 ], [ 9.471497499, 49.779726501000027 ], [ 9.648736, 49.791477499999985 ], [ 9.926560999, 49.48483550100002 ], [ 10.083623, 49.542955499000016 ] ] ] } }, -{ "type": "Feature", "id": 350, "properties": { "NUTS_ID": "DE12", "STAT_LEVL_": 2, "SHAPE_AREA": 0.82859941612499999, "SHAPE_LEN": 5.3104267818800004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.768902500000024, 48.521840999 ], [ 8.755710500000021, 48.504140001 ], [ 8.774055, 48.416278498999986 ], [ 8.737186499000018, 48.377976999 ], [ 8.303992, 48.34909449700001 ], [ 8.222007, 48.603227499000013 ], [ 7.9596305, 48.718580998999983 ], [ 8.232632998999975, 48.966571500999976 ], [ 8.261284, 48.980916998999987 ], [ 8.277349, 48.989939000999982 ], [ 8.33997, 49.080149999000014 ], [ 8.4130725, 49.249816499000019 ], [ 8.466985500000021, 49.28297550100001 ], [ 8.487268, 49.290026499000021 ], [ 8.4709155, 49.340712999 ], [ 8.497316, 49.411347 ], [ 8.474739704, 49.440616029000012 ], [ 8.423068, 49.541821 ], [ 8.422700500000019, 49.57419249899999 ], [ 8.4224395, 49.583385498999974 ], [ 8.581375, 49.519780498999978 ], [ 8.899572499999977, 49.50365549899999 ], [ 8.899355, 49.48455 ], [ 8.950348500000018, 49.454992999000012 ], [ 8.93188, 49.470636996999986 ], [ 9.083426499999973, 49.52608699699999 ], [ 9.103006, 49.577456 ], [ 9.41092, 49.663507998999989 ], [ 9.603823, 49.426577996999981 ], [ 9.4434915, 49.364336998 ], [ 9.0491265, 49.292862500000012 ], [ 8.818233, 49.194497 ], [ 8.8777945, 49.058478501000025 ], [ 8.876031499000021, 49.03517 ], [ 8.945315, 48.961766 ], [ 8.928800500000023, 48.866557 ], [ 8.804181500000027, 48.777778 ], [ 8.768902500000024, 48.521840999 ] ] ] } }, -{ "type": "Feature", "id": 363, "properties": { "NUTS_ID": "DE13", "STAT_LEVL_": 2, "SHAPE_AREA": 1.14162403029, "SHAPE_LEN": 5.4041756987799996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.737186499000018, 48.377976999 ], [ 8.751237, 48.159539998000014 ], [ 8.953761, 48.107278999000016 ], [ 9.012045, 47.936922998 ], [ 9.151105, 47.894982997999989 ], [ 9.128582, 47.846817499 ], [ 9.030533, 47.806520499999976 ], [ 9.182192, 47.655890499 ], [ 8.8749985, 47.65597349799998 ], [ 8.843022, 47.712262499000019 ], [ 8.795708499999989, 47.675595499999986 ], [ 8.7279815, 47.692680499 ], [ 8.740104499999973, 47.752789001 ], [ 8.61233, 47.801462 ], [ 8.510115, 47.776190499999984 ], [ 8.606369500000028, 47.669005498999979 ], [ 8.595602, 47.6055445 ], [ 8.562841, 47.599432498 ], [ 8.426434500000028, 47.567548998 ], [ 7.894107500000018, 47.586374998999986 ], [ 7.713784499999974, 47.539405 ], [ 7.634097, 47.561113501000023 ], [ 7.589039, 47.589877999 ], [ 7.545990500000016, 47.743573998999977 ], [ 7.577291, 48.115654999000014 ], [ 7.5779195, 48.121391999000025 ], [ 7.680713, 48.257266996999988 ], [ 7.9596305, 48.718580998999983 ], [ 8.222007, 48.603227499000013 ], [ 8.303992, 48.34909449700001 ], [ 8.737186499000018, 48.377976999 ] ] ] } }, -{ "type": "Feature", "id": 374, "properties": { "NUTS_ID": "DE14", "STAT_LEVL_": 2, "SHAPE_AREA": 1.1399528934000001, "SHAPE_LEN": 4.8332542055700003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.230779499999983, 48.510511 ], [ 10.1338955, 48.454871498999978 ], [ 10.0326945, 48.45719649900002 ], [ 9.997606, 48.35011799900002 ], [ 10.095357499999977, 48.164014999000017 ], [ 10.136457, 48.108459498 ], [ 10.135728, 48.02376149700001 ], [ 10.132387, 48.01539999900001 ], [ 10.11495450000001, 47.976257501000021 ], [ 10.104207, 47.974358497000026 ], [ 10.11013650000001, 47.937149998999985 ], [ 10.131928500000015, 47.820087496999975 ], [ 10.0772925, 47.63927449800002 ], [ 9.692543, 47.610768999000015 ], [ 9.5587205, 47.541892999000027 ], [ 9.495604, 47.551454998999986 ], [ 9.182192, 47.655890499 ], [ 9.030533, 47.806520499999976 ], [ 9.128582, 47.846817499 ], [ 9.151105, 47.894982997999989 ], [ 9.012045, 47.936922998 ], [ 8.953761, 48.107278999000016 ], [ 8.751237, 48.159539998000014 ], [ 8.737186499000018, 48.377976999 ], [ 8.774055, 48.416278498999986 ], [ 8.755710500000021, 48.504140001 ], [ 8.768902500000024, 48.521840999 ], [ 9.129176500000028, 48.601266499000019 ], [ 9.1512295, 48.60405549799998 ], [ 9.582475499999987, 48.539146999000025 ], [ 9.5851745, 48.536741499000016 ], [ 9.9440715, 48.631755499 ], [ 10.230779499999983, 48.510511 ] ] ] } }, -{ "type": "Feature", "id": 385, "properties": { "NUTS_ID": "DE21", "STAT_LEVL_": 2, "SHAPE_AREA": 2.0590871815199998, "SHAPE_LEN": 7.8935604995900004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.599306500000012, 48.951496999000028 ], [ 11.719435, 48.782345498999973 ], [ 11.706735, 48.6166465 ], [ 11.9101865, 48.58523150000002 ], [ 12.017122500000028, 48.430675999000016 ], [ 12.250551, 48.32194599799999 ], [ 12.483791, 48.429675498999984 ], [ 12.607291499999974, 48.353632 ], [ 12.9446845, 48.206692498999985 ], [ 12.751555, 48.112810497999988 ], [ 12.86018150000001, 47.996639999000024 ], [ 12.8757855, 47.962608999 ], [ 13.046055500000023, 47.520502498999974 ], [ 12.695795499999974, 47.682222998999976 ], [ 12.575026499999979, 47.632316 ], [ 12.338045498999975, 47.697087501 ], [ 12.060662, 47.618743499 ], [ 11.632883, 47.592445997000027 ], [ 11.410219, 47.495324000999972 ], [ 11.4214275, 47.44485199899998 ], [ 11.0165005, 47.396368000999985 ], [ 10.991202499999986, 47.396131 ], [ 10.886199, 47.536847998999974 ], [ 10.9542765, 47.616520498999989 ], [ 10.7158885, 47.705480497 ], [ 10.7670905, 47.843793499000014 ], [ 10.801532, 48.1041705 ], [ 10.903411, 48.236676500999977 ], [ 11.03451, 48.19299200099999 ], [ 11.116768499999978, 48.268477999000027 ], [ 11.311675, 48.452272999 ], [ 11.295411, 48.474574 ], [ 11.022986, 48.620171497 ], [ 11.0059415, 48.821882997999978 ], [ 10.936839500000019, 48.863275999 ], [ 11.201364500000011, 49.046551498999975 ], [ 11.385714, 49.078858001000015 ], [ 11.599306500000012, 48.951496999000028 ] ] ] } }, -{ "type": "Feature", "id": 409, "properties": { "NUTS_ID": "DE22", "STAT_LEVL_": 2, "SHAPE_AREA": 1.2654688598199999, "SHAPE_LEN": 5.7168732305300001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.839507, 48.771605001000012 ], [ 13.796107, 48.71360049899999 ], [ 13.727090499999974, 48.513019500999974 ], [ 13.51336950000001, 48.590977998000028 ], [ 13.438430499999981, 48.548895001 ], [ 13.407838, 48.372160501 ], [ 13.177043, 48.294389997 ], [ 12.9446845, 48.206692498999985 ], [ 12.607291499999974, 48.353632 ], [ 12.483791, 48.429675498999984 ], [ 12.250551, 48.32194599799999 ], [ 12.017122500000028, 48.430675999000016 ], [ 11.9101865, 48.58523150000002 ], [ 11.706735, 48.6166465 ], [ 11.719435, 48.782345498999973 ], [ 11.599306500000012, 48.951496999000028 ], [ 11.659785, 49.016129499999977 ], [ 12.0654265, 48.9436955 ], [ 12.097496, 48.771991997999976 ], [ 12.135276, 48.765911999000025 ], [ 12.479026499999975, 49.031985999000028 ], [ 12.768203, 49.114760999 ], [ 13.170907999, 49.173579501 ], [ 13.4166515, 48.980035499 ], [ 13.5515785, 48.967787497000018 ], [ 13.839507, 48.771605001000012 ] ] ] } }, -{ "type": "Feature", "id": 422, "properties": { "NUTS_ID": "DE23", "STAT_LEVL_": 2, "SHAPE_AREA": 1.1827867994200001, "SHAPE_LEN": 5.3448464610800004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.550988500000017, 49.905088001000024 ], [ 12.401524, 49.758372998000027 ], [ 12.593778499999985, 49.542191499000012 ], [ 12.633763499999986, 49.476194997999983 ], [ 13.170907999, 49.173579501 ], [ 12.768203, 49.114760999 ], [ 12.479026499999975, 49.031985999000028 ], [ 12.135276, 48.765911999000025 ], [ 12.097496, 48.771991997999976 ], [ 12.0654265, 48.9436955 ], [ 11.659785, 49.016129499999977 ], [ 11.599306500000012, 48.951496999000028 ], [ 11.385714, 49.078858001000015 ], [ 11.247176, 49.325353 ], [ 11.557755, 49.41904200099998 ], [ 11.562709117999987, 49.67727206 ], [ 11.630662500000028, 49.760570998999981 ], [ 11.854835499999979, 49.84710899800001 ], [ 11.903691499999979, 49.979020000999981 ], [ 12.260799, 50.058156498000017 ], [ 12.550988500000017, 49.905088001000024 ] ] ] } }, -{ "type": "Feature", "id": 433, "properties": { "NUTS_ID": "DE24", "STAT_LEVL_": 2, "SHAPE_AREA": 0.90930336784200005, "SHAPE_LEN": 4.9365096046600003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.919884500000023, 50.42440349899999 ], [ 12.100900500000023, 50.31802799799999 ], [ 12.160679, 50.219848997999975 ], [ 12.260799, 50.058156498000017 ], [ 11.903691499999979, 49.979020000999981 ], [ 11.854835499999979, 49.84710899800001 ], [ 11.630662500000028, 49.760570998999981 ], [ 11.562709117999987, 49.67727206 ], [ 11.368694, 49.666708001000018 ], [ 11.2803045, 49.60430150000002 ], [ 10.927335500000027, 49.76843 ], [ 10.654417500000022, 49.721123498999987 ], [ 10.551436, 49.755772499999978 ], [ 10.448965, 49.822177001 ], [ 10.5052485, 49.876681999000027 ], [ 10.8601165, 50.091785496999989 ], [ 10.729202, 50.230005496999979 ], [ 10.8514945, 50.262762499000019 ], [ 10.715266499999984, 50.363590998 ], [ 10.9457185, 50.38646649899999 ], [ 11.189943, 50.27118550099999 ], [ 11.265938, 50.479421 ], [ 11.481568, 50.431621501 ], [ 11.603290500000014, 50.398766001000013 ], [ 11.919884500000023, 50.42440349899999 ] ] ] } }, -{ "type": "Feature", "id": 447, "properties": { "NUTS_ID": "DE25", "STAT_LEVL_": 2, "SHAPE_AREA": 0.90594263433800004, "SHAPE_LEN": 4.2599111684900004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.562709117999987, 49.67727206 ], [ 11.557755, 49.41904200099998 ], [ 11.247176, 49.325353 ], [ 11.385714, 49.078858001000015 ], [ 11.201364500000011, 49.046551498999975 ], [ 10.936839500000019, 48.863275999 ], [ 10.642254499999979, 49.016631501 ], [ 10.4098495, 48.977435499000023 ], [ 10.256763499999977, 49.059495 ], [ 10.1119665, 49.384910499 ], [ 10.118327500000021, 49.47316949899999 ], [ 10.083623, 49.542955499000016 ], [ 10.110316, 49.621408499999973 ], [ 10.551436, 49.755772499999978 ], [ 10.654417500000022, 49.721123498999987 ], [ 10.927335500000027, 49.76843 ], [ 11.2803045, 49.60430150000002 ], [ 11.368694, 49.666708001000018 ], [ 11.562709117999987, 49.67727206 ] ] ] } }, -{ "type": "Feature", "id": 460, "properties": { "NUTS_ID": "DE26", "STAT_LEVL_": 2, "SHAPE_AREA": 1.0008507063300001, "SHAPE_LEN": 5.28637072147 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.729202, 50.230005496999979 ], [ 10.8601165, 50.091785496999989 ], [ 10.5052485, 49.876681999000027 ], [ 10.448965, 49.822177001 ], [ 10.551436, 49.755772499999978 ], [ 10.110316, 49.621408499999973 ], [ 10.083623, 49.542955499000016 ], [ 9.926560999, 49.48483550100002 ], [ 9.648736, 49.791477499999985 ], [ 9.471497499, 49.779726501000027 ], [ 9.295673, 49.740530998999986 ], [ 9.41092, 49.663507998999989 ], [ 9.103006, 49.577456 ], [ 9.150809, 49.742850497 ], [ 9.036080500000025, 49.846503998 ], [ 9.05008, 49.866315000999975 ], [ 9.016088500000023, 49.991340501000025 ], [ 8.990559999000027, 50.06711900099998 ], [ 9.404984500000012, 50.087734497999975 ], [ 9.623150999000018, 50.229039998000019 ], [ 9.7329145, 50.356149499000026 ], [ 9.935655, 50.419606499999986 ], [ 10.0413385, 50.516469498999982 ], [ 10.450532, 50.4018595 ], [ 10.610115, 50.227994998999975 ], [ 10.729202, 50.230005496999979 ] ] ] } }, -{ "type": "Feature", "id": 473, "properties": { "NUTS_ID": "DE27", "STAT_LEVL_": 2, "SHAPE_AREA": 1.18950209015, "SHAPE_LEN": 6.5001649074900003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.936839500000019, 48.863275999 ], [ 11.0059415, 48.821882997999978 ], [ 11.022986, 48.620171497 ], [ 11.295411, 48.474574 ], [ 11.311675, 48.452272999 ], [ 11.116768499999978, 48.268477999000027 ], [ 11.03451, 48.19299200099999 ], [ 10.903411, 48.236676500999977 ], [ 10.801532, 48.1041705 ], [ 10.7670905, 47.843793499000014 ], [ 10.7158885, 47.705480497 ], [ 10.9542765, 47.616520498999989 ], [ 10.886199, 47.536847998999974 ], [ 10.454439, 47.55579699899999 ], [ 10.178353, 47.270113998999989 ], [ 9.999526, 47.48301699699999 ], [ 9.967813499999977, 47.546240496999985 ], [ 9.5587205, 47.541892999000027 ], [ 9.692543, 47.610768999000015 ], [ 10.0772925, 47.63927449800002 ], [ 10.131928500000015, 47.820087496999975 ], [ 10.11013650000001, 47.937149998999985 ], [ 10.104207, 47.974358497000026 ], [ 10.11495450000001, 47.976257501000021 ], [ 10.132387, 48.01539999900001 ], [ 10.135728, 48.02376149700001 ], [ 10.136457, 48.108459498 ], [ 10.095357499999977, 48.164014999000017 ], [ 9.997606, 48.35011799900002 ], [ 10.0326945, 48.45719649900002 ], [ 10.1338955, 48.454871498999978 ], [ 10.230779499999983, 48.510511 ], [ 10.278268, 48.516074499000013 ], [ 10.487258, 48.69666200099999 ], [ 10.423689, 48.744495997 ], [ 10.4098495, 48.977435499000023 ], [ 10.642254499999979, 49.016631501 ], [ 10.936839500000019, 48.863275999 ] ] ] } }, -{ "type": "Feature", "id": 489, "properties": { "NUTS_ID": "DE30", "STAT_LEVL_": 2, "SHAPE_AREA": 0.110168847705, "SHAPE_LEN": 1.4095856494600001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.66698, 52.474166998999976 ], [ 13.699738, 52.377882998000018 ], [ 13.420984998999984, 52.376247001000024 ], [ 13.31212, 52.399599500000022 ], [ 13.165898, 52.394275498000013 ], [ 13.153695500000026, 52.50182150099999 ], [ 13.164263, 52.598900500000013 ], [ 13.39854, 52.648194498 ], [ 13.610827500000028, 52.544235500000013 ], [ 13.66698, 52.474166998999976 ] ] ] } }, -{ "type": "Feature", "id": 492, "properties": { "NUTS_ID": "DE40", "STAT_LEVL_": 2, "SHAPE_AREA": 3.87565509606, "SHAPE_LEN": 11.671553189899999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.412157, 53.329635998000015 ], [ 14.143658, 52.9613685 ], [ 14.156692, 52.895590998999978 ], [ 14.436438, 52.679900498999984 ], [ 14.565063, 52.624497 ], [ 14.534361999, 52.395008 ], [ 14.600891499999989, 52.272051998999984 ], [ 14.755227, 52.070024998 ], [ 14.716716, 52.001188001 ], [ 14.729862, 51.581776999 ], [ 14.447771, 51.542068997 ], [ 14.163324499999987, 51.541042999000013 ], [ 13.835313, 51.37678999799999 ], [ 13.691250500000024, 51.374012999 ], [ 13.21015, 51.404735999000025 ], [ 13.051025, 51.647677 ], [ 13.1509135, 51.859610499999974 ], [ 12.769780500000024, 51.979274499999974 ], [ 12.3761225, 52.04511949800002 ], [ 12.276724499000011, 52.104018 ], [ 12.31718, 52.454095499 ], [ 12.171555, 52.506336497 ], [ 12.249203500000021, 52.79186199899999 ], [ 12.126811499999974, 52.890199499 ], [ 11.597784499999989, 53.035926499000027 ], [ 11.265732, 53.121978 ], [ 12.325101500000017, 53.321301498000025 ], [ 12.3317515, 53.318011 ], [ 12.984683, 53.1649855 ], [ 13.2414035, 53.232401 ], [ 13.710065499999985, 53.4790625 ], [ 14.412157, 53.329635998000015 ] ], [ [ 13.66698, 52.474166998999976 ], [ 13.610827500000028, 52.544235500000013 ], [ 13.39854, 52.648194498 ], [ 13.164263, 52.598900500000013 ], [ 13.153695500000026, 52.50182150099999 ], [ 13.165898, 52.394275498000013 ], [ 13.31212, 52.399599500000022 ], [ 13.420984998999984, 52.376247001000024 ], [ 13.699738, 52.377882998000018 ], [ 13.66698, 52.474166998999976 ] ] ] } }, -{ "type": "Feature", "id": 512, "properties": { "NUTS_ID": "DE50", "STAT_LEVL_": 2, "SHAPE_AREA": 0.061226229512700001, "SHAPE_LEN": 1.76656281046 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.979256, 53.045849499999974 ], [ 8.915827, 53.011021497 ], [ 8.711424, 53.044629997000015 ], [ 8.6548985, 53.108864499999981 ], [ 8.485330499999975, 53.22712 ], [ 8.984185500000024, 53.126070998999978 ], [ 8.979256, 53.045849499999974 ] ] ], [ [ [ 8.652134000999979, 53.516016998999987 ], [ 8.492652, 53.472420000999989 ], [ 8.554898499999979, 53.525131000999977 ], [ 8.4832025, 53.600498997999978 ], [ 8.520410500000025, 53.606205000999978 ], [ 8.650632499999972, 53.602565001000016 ], [ 8.652134000999979, 53.516016998999987 ] ] ] ] } }, -{ "type": "Feature", "id": 516, "properties": { "NUTS_ID": "DE60", "STAT_LEVL_": 2, "SHAPE_AREA": 0.075484323706799999, "SHAPE_LEN": 1.3487076921500001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.308312, 53.433221498000023 ], [ 9.768861, 53.50527899799999 ], [ 9.73010399899999, 53.557580997 ], [ 9.945376, 53.652927998 ], [ 10.072805, 53.709633999 ], [ 10.236678499999982, 53.496354498000017 ], [ 10.308312, 53.433221498000023 ] ] ] } }, -{ "type": "Feature", "id": 519, "properties": { "NUTS_ID": "DE71", "STAT_LEVL_": 2, "SHAPE_AREA": 0.93587288873800001, "SHAPE_LEN": 5.3066030288799997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.479113, 50.440685497 ], [ 9.7329145, 50.356149499000026 ], [ 9.623150999000018, 50.229039998000019 ], [ 9.404984500000012, 50.087734497999975 ], [ 8.990559999000027, 50.06711900099998 ], [ 9.016088500000023, 49.991340501000025 ], [ 9.05008, 49.866315000999975 ], [ 9.036080500000025, 49.846503998 ], [ 9.150809, 49.742850497 ], [ 9.103006, 49.577456 ], [ 9.083426499999973, 49.52608699699999 ], [ 8.93188, 49.470636996999986 ], [ 8.950348500000018, 49.454992999000012 ], [ 8.899355, 49.48455 ], [ 8.899572499999977, 49.50365549899999 ], [ 8.581375, 49.519780498999978 ], [ 8.4224395, 49.583385498999974 ], [ 8.414774, 49.595051997999974 ], [ 8.44637749899999, 49.730799497000021 ], [ 8.448365, 49.73366149899999 ], [ 8.400055, 49.803675 ], [ 8.3430305, 49.940506 ], [ 8.288245, 49.995134 ], [ 8.190038500000014, 50.03529599699999 ], [ 8.17513550000001, 50.034255497 ], [ 7.773997, 50.066539998999986 ], [ 8.1219135, 50.277224999 ], [ 8.354557, 50.294229998999981 ], [ 8.467215, 50.415048499000022 ], [ 8.5141395, 50.399351498999977 ], [ 8.577542, 50.415019 ], [ 9.042425499999979, 50.49799 ], [ 9.286735, 50.437298 ], [ 9.479113, 50.440685497 ] ] ] } }, -{ "type": "Feature", "id": 541, "properties": { "NUTS_ID": "DEB1", "STAT_LEVL_": 2, "SHAPE_AREA": 1.0296407972, "SHAPE_LEN": 5.24826140387 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.125776499999972, 50.685813998000015 ], [ 8.151592, 50.599370998999973 ], [ 7.971559500000012, 50.406220499000028 ], [ 8.1219135, 50.277224999 ], [ 7.773997, 50.066539998999986 ], [ 7.764844499999981, 50.08259049899999 ], [ 7.7346305, 49.998688499000025 ], [ 7.963557, 49.833101999 ], [ 7.905437, 49.75226349899998 ], [ 7.7033305, 49.652514997000026 ], [ 7.522752500000024, 49.707622499000024 ], [ 7.276622499999974, 49.548623500000019 ], [ 7.02798, 49.63943849899999 ], [ 7.0443115, 49.689302 ], [ 7.222511, 49.88495050099999 ], [ 7.202684499999975, 49.966323000999978 ], [ 6.979021, 50.097910999000021 ], [ 7.0687785, 50.279785499000013 ], [ 6.984338498999989, 50.348893498999985 ], [ 6.800711499999977, 50.361781499000017 ], [ 6.927901, 50.558618500000023 ], [ 7.1952005, 50.642722999 ], [ 7.210872, 50.649543499 ], [ 7.2123995, 50.623404999 ], [ 7.44077199899999, 50.711437998 ], [ 7.6610035, 50.820364500999972 ], [ 7.785898, 50.939913999 ], [ 7.851496, 50.925832500000013 ], [ 8.03969, 50.697375498999975 ], [ 8.125776499999972, 50.685813998000015 ] ] ] } }, -{ "type": "Feature", "id": 553, "properties": { "NUTS_ID": "DEB2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.56272492186400003, "SHAPE_LEN": 3.2817567844400002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.02798, 49.63943849899999 ], [ 6.891454, 49.613422497999977 ], [ 6.380052499999977, 49.551104999000017 ], [ 6.4749625, 49.821274999000025 ], [ 6.137662499999976, 50.129951499000015 ], [ 6.405028500000014, 50.323308499 ], [ 6.425295, 50.323011998000027 ], [ 6.800711499999977, 50.361781499000017 ], [ 6.984338498999989, 50.348893498999985 ], [ 7.0687785, 50.279785499000013 ], [ 6.979021, 50.097910999000021 ], [ 7.202684499999975, 49.966323000999978 ], [ 7.222511, 49.88495050099999 ], [ 7.0443115, 49.689302 ], [ 7.02798, 49.63943849899999 ] ] ] } }, -{ "type": "Feature", "id": 559, "properties": { "NUTS_ID": "DEB3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.87482069522899997, "SHAPE_LEN": 4.3708325458299999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.773997, 50.066539998999986 ], [ 8.17513550000001, 50.034255497 ], [ 8.190038500000014, 50.03529599699999 ], [ 8.288245, 49.995134 ], [ 8.3430305, 49.940506 ], [ 8.400055, 49.803675 ], [ 8.448365, 49.73366149899999 ], [ 8.44637749899999, 49.730799497000021 ], [ 8.414774, 49.595051997999974 ], [ 8.4224395, 49.583385498999974 ], [ 8.422700500000019, 49.57419249899999 ], [ 8.423068, 49.541821 ], [ 8.474739704, 49.440616029000012 ], [ 8.497316, 49.411347 ], [ 8.4709155, 49.340712999 ], [ 8.487268, 49.290026499000021 ], [ 8.466985500000021, 49.28297550100001 ], [ 8.4130725, 49.249816499000019 ], [ 8.33997, 49.080149999000014 ], [ 8.277349, 48.989939000999982 ], [ 8.261284, 48.980916998999987 ], [ 8.232632998999975, 48.966571500999976 ], [ 8.068407499999978, 48.999316497999985 ], [ 7.910654500000021, 49.045163499000012 ], [ 7.635651, 49.053950499999985 ], [ 7.36875550000002, 49.16145799899999 ], [ 7.320341, 49.189498999000023 ], [ 7.394494, 49.316351998000016 ], [ 7.402075500000024, 49.367718501000013 ], [ 7.395898499999987, 49.372045996999987 ], [ 7.292601499999989, 49.408222497 ], [ 7.252589, 49.43146550099999 ], [ 7.276622499999974, 49.548623500000019 ], [ 7.522752500000024, 49.707622499000024 ], [ 7.7033305, 49.652514997000026 ], [ 7.905437, 49.75226349899998 ], [ 7.963557, 49.833101999 ], [ 7.7346305, 49.998688499000025 ], [ 7.764844499999981, 50.08259049899999 ], [ 7.773997, 50.066539998999986 ] ] ] } }, -{ "type": "Feature", "id": 596, "properties": { "NUTS_ID": "DEG0", "STAT_LEVL_": 2, "SHAPE_AREA": 2.05802907599, "SHAPE_LEN": 8.2329101100200006 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.284594500000026, 51.091162497000028 ], [ 12.617355, 50.980792998000027 ], [ 12.652865500000019, 50.923678000999985 ], [ 12.250825500000019, 50.818318498999986 ], [ 12.3189165, 50.676532499000018 ], [ 11.944137500000011, 50.591275499 ], [ 11.919884500000023, 50.42440349899999 ], [ 11.603290500000014, 50.398766001000013 ], [ 11.481568, 50.431621501 ], [ 11.265938, 50.479421 ], [ 11.189943, 50.27118550099999 ], [ 10.9457185, 50.38646649899999 ], [ 10.715266499999984, 50.363590998 ], [ 10.8514945, 50.262762499000019 ], [ 10.729202, 50.230005496999979 ], [ 10.610115, 50.227994998999975 ], [ 10.450532, 50.4018595 ], [ 10.0413385, 50.516469498999982 ], [ 10.077555500000017, 50.63762399699999 ], [ 9.9261765, 50.767389998999988 ], [ 10.021558500000026, 50.9929495 ], [ 10.182348499999989, 50.99848750000001 ], [ 10.202181, 51.012009001000024 ], [ 10.210013, 51.144082998999977 ], [ 10.206942, 51.190648996999983 ], [ 9.928339, 51.375299 ], [ 10.365365, 51.55589100100002 ], [ 10.488551, 51.574778498 ], [ 10.677283, 51.638376000999983 ], [ 10.701372, 51.642187499999977 ], [ 10.916058998999972, 51.616374001 ], [ 10.978113, 51.426884998999981 ], [ 11.428868500000021, 51.339809999000011 ], [ 11.473968, 51.29505849899999 ], [ 11.385374500000012, 51.24588699899999 ], [ 11.484608499999979, 51.105437499 ], [ 11.696938499999987, 51.087490998000021 ], [ 12.021018500000025, 50.96912249899998 ], [ 12.163369499999988, 50.958822498000018 ], [ 12.224169, 50.942934998 ], [ 12.284594500000026, 51.091162497000028 ] ] ] } }, -{ "type": "Feature", "id": 622, "properties": { "NUTS_ID": "DK01", "STAT_LEVL_": 2, "SHAPE_AREA": 0.21530830689399999, "SHAPE_LEN": 3.3185893103400002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 12.5641005, 55.994034 ], [ 12.583112, 55.807791501 ], [ 12.584052499999984, 55.721773499999983 ], [ 12.6812885, 55.588256999 ], [ 12.504888, 55.6374695 ], [ 12.363498, 55.593827498999985 ], [ 12.250782, 55.708411 ], [ 12.089422, 55.78082 ], [ 12.01011649899999, 55.96801749799999 ], [ 11.844483500000024, 55.967036999000015 ], [ 12.5641005, 55.994034 ] ] ], [ [ [ 14.779674, 55.29000449900002 ], [ 15.158351, 55.083439 ], [ 14.683027, 55.09734649699999 ], [ 14.779674, 55.29000449900002 ] ] ] ] } }, -{ "type": "Feature", "id": 627, "properties": { "NUTS_ID": "DK02", "STAT_LEVL_": 2, "SHAPE_AREA": 0.96862924214599999, "SHAPE_LEN": 8.1768314244700004 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 11.743550500000026, 55.789573497999982 ], [ 11.805708192, 55.680681231999984 ], [ 11.87555, 55.737591499000018 ], [ 11.9599945, 55.850509498 ], [ 11.905017, 55.9359095 ], [ 12.0596445, 55.732090001000017 ], [ 11.980809, 55.730124998 ], [ 11.951244, 55.675521999000011 ], [ 12.084782, 55.654254001000027 ], [ 12.087174684999979, 55.719519628 ], [ 12.088165831000026, 55.746555279 ], [ 12.089422, 55.78082 ], [ 12.250782, 55.708411 ], [ 12.363498, 55.593827498999985 ], [ 12.221227, 55.425629501 ], [ 12.4563445, 55.292506999000011 ], [ 12.0024285, 54.96804599699999 ], [ 11.6157665, 55.081359998999972 ], [ 11.828402499999982, 55.042315997 ], [ 11.748527500000023, 55.219173497999975 ], [ 11.243200499000011, 55.207942996999975 ], [ 10.87105, 55.74376300099999 ], [ 11.348573, 55.757736500000021 ], [ 11.4824, 55.96112800100002 ], [ 11.777166500000021, 55.9767685 ], [ 11.743550500000026, 55.789573497999982 ] ] ], [ [ [ 12.166872, 54.834666997 ], [ 11.4617675, 54.610306 ], [ 10.956038499999977, 54.815006497000013 ], [ 12.166872, 54.834666997 ] ] ] ] } }, -{ "type": "Feature", "id": 630, "properties": { "NUTS_ID": "DK03", "STAT_LEVL_": 2, "SHAPE_AREA": 1.5063318718000001, "SHAPE_LEN": 9.2349477131800004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.860733, 55.625149 ], [ 9.739651342, 55.529699214 ], [ 10.493877499, 55.547950500000013 ], [ 10.427106, 55.429145999000013 ], [ 10.856239500000015, 55.293189500999972 ], [ 10.5537165, 54.944484499 ], [ 10.072239, 55.077411498 ], [ 9.679817695, 55.511982487000012 ], [ 9.663652053000021, 55.510181843 ], [ 9.488094499999988, 55.49062699699999 ], [ 9.422177499999975, 55.033451 ], [ 10.0712885, 54.877284997 ], [ 9.619266499999981, 54.93403200099999 ], [ 9.420151499999974, 54.831956500999979 ], [ 9.113097, 54.8736015 ], [ 8.63592599899999, 54.911682998 ], [ 8.684189, 55.158839998000019 ], [ 8.620333500000015, 55.428672999000014 ], [ 8.076632500000017, 55.556964999 ], [ 8.17079, 55.815367 ], [ 9.387007499999982, 55.924146499000017 ], [ 9.447316, 55.834682997000016 ], [ 9.671952499999975, 55.712069998 ], [ 9.543939500000022, 55.706680999000014 ], [ 9.860733, 55.625149 ] ] ] } }, -{ "type": "Feature", "id": 633, "properties": { "NUTS_ID": "DK04", "STAT_LEVL_": 2, "SHAPE_AREA": 1.87932514111, "SHAPE_LEN": 7.8099538448499999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.319437, 56.672226998999975 ], [ 9.795823499999983, 56.561614 ], [ 10.194114500000012, 56.684693501000027 ], [ 10.308140107999975, 56.606842685 ], [ 10.9599055, 56.442081498999983 ], [ 10.712867, 56.14205549799999 ], [ 10.345911, 56.194126 ], [ 10.009511, 55.700878000999978 ], [ 9.671952499999975, 55.712069998 ], [ 9.447316, 55.834682997000016 ], [ 9.387007499999982, 55.924146499000017 ], [ 8.17079, 55.815367 ], [ 8.386469, 55.907278500000018 ], [ 8.099594, 56.036021998000024 ], [ 8.19683, 56.694996 ], [ 8.668789, 56.4678495 ], [ 9.002038860000027, 56.80120575 ], [ 9.1771, 56.708271 ], [ 9.05857850000001, 56.629835997999976 ], [ 9.319437, 56.672226998999975 ] ] ] } }, -{ "type": "Feature", "id": 636, "properties": { "NUTS_ID": "DK05", "STAT_LEVL_": 2, "SHAPE_AREA": 1.0292748196799999, "SHAPE_LEN": 10.3649263998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.668212, 56.950069498 ], [ 8.515605634, 56.686523847999979 ], [ 8.577901844, 56.692498349 ], [ 8.581561781, 56.695444119 ], [ 8.9003495, 56.952026499 ], [ 8.7765885, 56.694549498000015 ], [ 8.595991889, 56.690836525 ], [ 8.583263347000013, 56.690574833000028 ], [ 8.4040455, 56.670237 ], [ 8.232896, 56.798159499 ], [ 8.589805500000011, 57.11797349699998 ], [ 9.3992035, 57.164098497 ], [ 9.95829550000002, 57.595298997999976 ], [ 10.644709499999976, 57.742755499999987 ], [ 10.422333499999979, 57.14775149799999 ], [ 8.668212, 56.950069498 ] ] ], [ [ [ 10.277603904999978, 56.700858940999979 ], [ 9.801955, 56.6385995 ], [ 10.194114500000012, 56.684693501000027 ], [ 9.795823499999983, 56.561614 ], [ 9.319437, 56.672226998999975 ], [ 9.159611, 56.677932498000018 ], [ 9.24345, 56.74848949699998 ], [ 9.164284, 56.888828499999988 ], [ 10.272072, 56.9368935 ], [ 10.3327445, 56.708076496999979 ], [ 10.277603904999978, 56.700858940999979 ] ] ] ] } }, -{ "type": "Feature", "id": 640, "properties": { "NUTS_ID": "EE00", "STAT_LEVL_": 2, "SHAPE_AREA": 6.9388307308700004, "SHAPE_LEN": 17.375034765500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.357049499000027, 58.787144001 ], [ 27.621053500000016, 58.0051115 ], [ 27.351579, 57.51823699900001 ], [ 26.524905499999988, 57.516247497999984 ], [ 26.056459, 57.848431496999979 ], [ 25.046307, 58.040146000999982 ], [ 24.834082500000022, 57.9727795 ], [ 24.352817500000015, 57.876556500999982 ], [ 24.58152, 58.325415498999973 ], [ 24.111982500000011, 58.240461501000027 ], [ 23.521601, 58.564879500000018 ], [ 23.404937, 59.025805 ], [ 23.730738499999973, 59.237132501000019 ], [ 24.796578, 59.571803500999977 ], [ 25.83015949899999, 59.564065 ], [ 26.759436, 59.499518497999986 ], [ 28.041862499999979, 59.4701025 ], [ 28.209798001000024, 59.371387998999978 ], [ 27.357049499000027, 58.787144001 ] ] ], [ [ [ 23.345607500000028, 58.610229998000023 ], [ 22.719874, 58.212165001000017 ], [ 21.828614, 58.307032998000011 ], [ 22.543011499999977, 58.642051496000022 ], [ 23.345607500000028, 58.610229998000023 ] ] ], [ [ [ 22.9317145, 58.971051000999978 ], [ 23.069148, 58.838146000999984 ], [ 22.393010999000012, 58.891237998 ], [ 22.592449, 59.088072996999983 ], [ 22.9317145, 58.971051000999978 ] ] ] ] } }, -{ "type": "Feature", "id": 647, "properties": { "NUTS_ID": "EL52", "STAT_LEVL_": 2, "SHAPE_AREA": 2.03465325697, "SHAPE_LEN": 9.6665397065099992 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 23.624222998999983, 41.375727497000014 ], [ 24.1179275, 41.006088501000022 ], [ 23.86774650000001, 40.77872849900001 ], [ 23.765077500000018, 40.757892498999979 ], [ 23.7568645, 40.634563497999977 ], [ 24.010988, 40.389434499 ], [ 24.005043, 40.31456749900002 ], [ 23.861864, 40.37016300099998 ], [ 23.694948, 40.303939999000022 ], [ 23.997488499999974, 40.107707999000013 ], [ 23.9472275, 39.938018996999972 ], [ 23.65232450000002, 40.224617 ], [ 23.005256498999984, 40.350360501000011 ], [ 22.814283499999988, 40.478442998999981 ], [ 22.947689500000024, 40.626636497999982 ], [ 22.682419, 40.528964998999982 ], [ 22.663957499999981, 40.491554496999981 ], [ 22.547895499999981, 40.145462001 ], [ 22.66243, 39.975547999000014 ], [ 22.1152075, 40.189948997999977 ], [ 22.184179500000027, 40.301849498000024 ], [ 21.928503, 40.487968500000022 ], [ 21.906351, 40.681335997000019 ], [ 21.822054, 40.696296499000027 ], [ 21.704187, 40.863483499999973 ], [ 21.787378, 40.9311255 ], [ 21.929438, 41.100350498000012 ], [ 22.216216, 41.170457498000019 ], [ 22.332052, 41.120272500999988 ], [ 22.732037, 41.146391498000014 ], [ 22.879178500000023, 41.340652998 ], [ 22.9275915, 41.338539498999978 ], [ 23.624222998999983, 41.375727497000014 ] ] ], [ [ [ 23.679613, 39.972439001 ], [ 23.750192500000026, 39.915984998999988 ], [ 23.355198, 39.953880498999979 ], [ 23.3263685, 40.183349498999974 ], [ 23.679613, 39.972439001 ] ] ] ] } }, -{ "type": "Feature", "id": 652, "properties": { "NUTS_ID": "EL30", "STAT_LEVL_": 2, "SHAPE_AREA": 0.34999048249499998, "SHAPE_LEN": 4.1181184112300002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 24.079767, 38.161911998999983 ], [ 24.072212499999978, 37.682054000999983 ], [ 23.743593, 37.853809497999976 ], [ 23.672225500000025, 37.941819999000018 ], [ 23.5713945, 37.993224499 ], [ 23.5969505, 38.01517499800002 ], [ 23.179699500000027, 37.951589997999974 ], [ 23.133437, 37.920439499 ], [ 22.848893499999974, 38.02820650000001 ], [ 23.117532, 38.060645997999984 ], [ 23.126179, 38.168400001 ], [ 23.63415550000002, 38.211311498999976 ], [ 23.690418, 38.340297498999973 ], [ 24.079767, 38.161911998999983 ] ] ], [ [ [ 23.5226725, 37.518099499000016 ], [ 23.4244195, 37.411700998000015 ], [ 23.2003785, 37.59665300099999 ], [ 23.386825499999986, 37.561183998999979 ], [ 23.5226725, 37.518099499000016 ] ] ] ] } }, -{ "type": "Feature", "id": 661, "properties": { "NUTS_ID": "EL41", "STAT_LEVL_": 2, "SHAPE_AREA": 0.21239785685000001, "SHAPE_LEN": 4.0052782586999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 26.424524500000018, 39.334041500000012 ], [ 26.609173, 39.010497998 ], [ 25.831421, 39.18841949900002 ], [ 26.424524500000018, 39.334041500000012 ] ] ], [ [ [ 26.159764, 38.553092998000011 ], [ 26.03731349899999, 38.19849399899999 ], [ 25.8641245, 38.24406799799999 ], [ 25.857202500000028, 38.580429001000027 ], [ 26.159764, 38.553092998000011 ] ] ], [ [ [ 26.8575075, 37.797096497999974 ], [ 27.070253499999978, 37.717021998 ], [ 26.5665095, 37.730647998999984 ], [ 26.8575075, 37.797096497999974 ] ] ] ] } }, -{ "type": "Feature", "id": 665, "properties": { "NUTS_ID": "EL42", "STAT_LEVL_": 2, "SHAPE_AREA": 0.164994495031, "SHAPE_LEN": 3.43347825191 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.22072350000002, 36.45793699799998 ], [ 27.863466500000015, 35.929278497999974 ], [ 27.718461499999989, 35.94023049899999 ], [ 27.703456500000016, 36.146589999000014 ], [ 28.22072350000002, 36.45793699799998 ] ] ], [ [ [ 27.230274, 35.508568001000015 ], [ 27.134781, 35.396366 ], [ 27.061262, 35.59654999899999 ], [ 27.2101575, 35.830795497999986 ], [ 27.230274, 35.508568001000015 ] ] ], [ [ [ 24.9576055, 37.897117498999989 ], [ 24.9635755, 37.683925499 ], [ 24.684284, 37.951064998999982 ], [ 24.9576055, 37.897117498999989 ] ] ] ] } }, -{ "type": "Feature", "id": 668, "properties": { "NUTS_ID": "EL43", "STAT_LEVL_": 2, "SHAPE_AREA": 0.810296646038, "SHAPE_LEN": 6.5345878481400002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.596821, 35.628162498999984 ], [ 23.8409785, 35.52808 ], [ 24.174324, 35.587199998000017 ], [ 24.317411, 35.353774998 ], [ 24.928003499999988, 35.40690999899999 ], [ 25.040821, 35.400146499000016 ], [ 25.490698, 35.298331997999981 ], [ 25.7719595, 35.341518499000017 ], [ 25.7262935, 35.13115699799999 ], [ 26.263292499999977, 35.265228501000024 ], [ 26.281149, 35.111587499 ], [ 25.550568, 34.99075699799999 ], [ 24.7709425, 34.929885997999975 ], [ 24.722517, 35.092544499999974 ], [ 24.287523498999974, 35.176006500000028 ], [ 23.515789, 35.289715 ], [ 23.596821, 35.628162498999984 ] ] ] } }, -{ "type": "Feature", "id": 674, "properties": { "NUTS_ID": "EL51", "STAT_LEVL_": 2, "SHAPE_AREA": 1.44642581269, "SHAPE_LEN": 8.0438425732799992 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.032758, 40.730256999 ], [ 25.632429, 40.862804498 ], [ 25.139545, 40.990687498999989 ], [ 24.81349, 40.858085499000026 ], [ 24.508724, 40.958480998000027 ], [ 24.088630500000022, 40.72168399899999 ], [ 23.86774650000001, 40.77872849900001 ], [ 24.1179275, 41.006088501000022 ], [ 23.624222998999983, 41.375727497000014 ], [ 24.059744, 41.522112 ], [ 24.525637, 41.568699998 ], [ 24.783956, 41.360188997000023 ], [ 25.1793755, 41.310187998 ], [ 25.224698499999988, 41.264630997999973 ], [ 25.906437499999981, 41.307574998 ], [ 25.948626, 41.320342000999972 ], [ 26.158688499999982, 41.391182496999988 ], [ 26.060393, 41.688516000999982 ], [ 26.357879, 41.711104498999987 ], [ 26.6001205, 41.601198997999973 ], [ 26.628431499999976, 41.345533499 ], [ 26.321652, 41.250406499 ], [ 26.291015500000015, 40.93188349899998 ], [ 26.032758, 40.730256999 ] ] ] } }, -{ "type": "Feature", "id": 684, "properties": { "NUTS_ID": "EL53", "STAT_LEVL_": 2, "SHAPE_AREA": 1.02505876934, "SHAPE_LEN": 4.28695359584 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.1152075, 40.189948997999977 ], [ 21.918218500000023, 39.852611498999977 ], [ 21.29648450000002, 39.857772997999973 ], [ 21.097473, 39.880351497999982 ], [ 21.004242, 40.154361499 ], [ 20.778501, 40.348788999000021 ], [ 21.056068499999981, 40.6166955 ], [ 20.980204500000013, 40.855665 ], [ 21.787378, 40.9311255 ], [ 21.704187, 40.863483499999973 ], [ 21.822054, 40.696296499000027 ], [ 21.906351, 40.681335997000019 ], [ 21.928503, 40.487968500000022 ], [ 22.184179500000027, 40.301849498000024 ], [ 22.1152075, 40.189948997999977 ] ] ] } }, -{ "type": "Feature", "id": 688, "properties": { "NUTS_ID": "EL54", "STAT_LEVL_": 2, "SHAPE_AREA": 1.01691079154, "SHAPE_LEN": 4.4297822432 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.29648450000002, 39.857772997999973 ], [ 21.181753, 39.501956999000015 ], [ 21.373546499999975, 39.174735998000017 ], [ 21.1086085, 39.04614650100001 ], [ 20.738746, 39.018909499000017 ], [ 20.4778215, 39.27484149899999 ], [ 20.464247, 39.273101999 ], [ 20.3006785, 39.31573499699999 ], [ 20.008812499999976, 39.691292001000022 ], [ 20.391308, 39.788483499999984 ], [ 20.312236499999983, 39.991022498 ], [ 20.778501, 40.348788999000021 ], [ 21.004242, 40.154361499 ], [ 21.097473, 39.880351497999982 ], [ 21.29648450000002, 39.857772997999973 ] ] ] } }, -{ "type": "Feature", "id": 693, "properties": { "NUTS_ID": "EL61", "STAT_LEVL_": 2, "SHAPE_AREA": 1.3747607080799999, "SHAPE_LEN": 6.4982790967500001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.66243, 39.975547999000014 ], [ 22.915911, 39.60293599900001 ], [ 22.976824, 39.555328498999984 ], [ 23.3514765, 39.187774499999989 ], [ 23.073730500000011, 39.084652 ], [ 23.212417500000015, 39.146873497 ], [ 23.1633645, 39.2728995 ], [ 22.821161500000017, 39.277507501 ], [ 23.018066499999975, 39.002654996999979 ], [ 22.5056705, 39.131199 ], [ 22.258116, 39.2723085 ], [ 21.939703, 39.065337999 ], [ 21.639002, 39.250251499 ], [ 21.396904, 39.164478497 ], [ 21.373546499999975, 39.174735998000017 ], [ 21.181753, 39.501956999000015 ], [ 21.29648450000002, 39.857772997999973 ], [ 21.918218500000023, 39.852611498999977 ], [ 22.1152075, 40.189948997999977 ], [ 22.66243, 39.975547999000014 ] ] ] } }, -{ "type": "Feature", "id": 697, "properties": { "NUTS_ID": "EL62", "STAT_LEVL_": 2, "SHAPE_AREA": 0.18015853660700001, "SHAPE_LEN": 4.4558124053899997 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 20.628674, 38.325271497000017 ], [ 20.79628550000001, 38.065116999 ], [ 20.341785500000015, 38.176131997000027 ], [ 20.536981500000024, 38.469810499 ], [ 20.628674, 38.325271497000017 ] ] ], [ [ [ 20.899757, 37.77567349899999 ], [ 20.988697, 37.705222497000022 ], [ 20.878824, 37.729893 ], [ 20.829103, 37.644634998000015 ], [ 20.625544, 37.820702000999972 ], [ 20.632630999000014, 37.88441899899999 ], [ 20.71006, 37.922859999000025 ], [ 20.899757, 37.77567349899999 ] ] ], [ [ [ 19.841421500000024, 39.659159499 ], [ 20.109863500000017, 39.360972 ], [ 19.641207, 39.749874498999986 ], [ 19.915536499999973, 39.79195249899999 ], [ 19.841421500000024, 39.659159499 ] ] ], [ [ [ 20.721731, 38.626224498999989 ], [ 20.551553500000011, 38.577827497999976 ], [ 20.5996705, 38.779578997999977 ], [ 20.693756, 38.851817998 ], [ 20.721731, 38.626224498999989 ] ] ] ] } }, -{ "type": "Feature", "id": 702, "properties": { "NUTS_ID": "EL63", "STAT_LEVL_": 2, "SHAPE_AREA": 1.18374259179, "SHAPE_LEN": 7.6376450942399998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.3729725, 38.142223498000021 ], [ 22.26432, 37.83939049899999 ], [ 21.890155499, 37.865802998999982 ], [ 21.792816, 37.602543 ], [ 21.965728500000012, 37.48326099799999 ], [ 21.680233, 37.377433999 ], [ 21.105238, 37.848926499000015 ], [ 21.351074, 38.102138498999977 ], [ 21.871086, 38.334537497999975 ], [ 22.3729725, 38.142223498000021 ] ] ], [ [ [ 21.396904, 39.164478497 ], [ 21.571245, 38.736785999 ], [ 21.946253, 38.783431998000026 ], [ 21.999378, 38.768867496999974 ], [ 21.99988350000001, 38.508353999 ], [ 21.851717, 38.374519497999984 ], [ 21.486598730000026, 38.301853584000014 ], [ 21.486297499999978, 38.327686498999981 ], [ 21.484744471999988, 38.306621568000025 ], [ 21.318926, 38.499629997 ], [ 21.1428795, 38.3037875 ], [ 21.105279793000022, 38.392762489 ], [ 21.075875442999973, 38.462344194000025 ], [ 20.988678, 38.66868599899999 ], [ 20.726846500000022, 38.814430499000025 ], [ 20.764536, 38.957309499000019 ], [ 21.066231, 38.877136499000017 ], [ 21.1086085, 39.04614650100001 ], [ 21.373546499999975, 39.174735998000017 ], [ 21.396904, 39.164478497 ] ] ] ] } }, -{ "type": "Feature", "id": 706, "properties": { "NUTS_ID": "EL64", "STAT_LEVL_": 2, "SHAPE_AREA": 1.5625623365100001, "SHAPE_LEN": 11.4434979796 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 22.5056705, 39.131199 ], [ 23.018066499999975, 39.002654996999979 ], [ 22.527525, 38.858909499999982 ], [ 23.3777905, 38.52575699800002 ], [ 23.328289, 38.501220499999988 ], [ 23.560117, 38.502597998 ], [ 23.655134499999974, 38.352496998999982 ], [ 23.690418, 38.340297498999973 ], [ 23.63415550000002, 38.211311498999976 ], [ 23.126179, 38.168400001 ], [ 22.6080685, 38.359401499 ], [ 21.851717, 38.374519497999984 ], [ 21.99988350000001, 38.508353999 ], [ 21.999378, 38.768867496999974 ], [ 21.946253, 38.783431998000026 ], [ 21.571245, 38.736785999 ], [ 21.396904, 39.164478497 ], [ 21.639002, 39.250251499 ], [ 21.939703, 39.065337999 ], [ 22.258116, 39.2723085 ], [ 22.5056705, 39.131199 ] ] ], [ [ [ 23.426233500000023, 38.90583049899999 ], [ 24.155115, 38.651188 ], [ 24.248035500000015, 38.22748199900002 ], [ 24.583963499999982, 38.0242235 ], [ 24.30678, 38.06962199899999 ], [ 24.048601, 38.395148998000025 ], [ 23.648699, 38.398697 ], [ 23.511806499999977, 38.587054997999985 ], [ 23.196602, 38.834670999000025 ], [ 22.829393499999981, 38.825450999 ], [ 23.317873, 39.038505499 ], [ 23.426233500000023, 38.90583049899999 ] ] ] ] } }, -{ "type": "Feature", "id": 712, "properties": { "NUTS_ID": "EL65", "STAT_LEVL_": 2, "SHAPE_AREA": 1.54234595769, "SHAPE_LEN": 7.6589066245000001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.962061, 37.949569499 ], [ 23.178438, 37.803564498000014 ], [ 23.120031499999982, 37.72998499900001 ], [ 23.2003785, 37.59665300099999 ], [ 23.4244195, 37.411700998000015 ], [ 22.725086, 37.572639498 ], [ 22.982481, 37.048026998000012 ], [ 23.196792500000015, 36.434662 ], [ 22.7856215, 36.796966499 ], [ 22.386833, 36.591141 ], [ 22.149515, 37.018146499000011 ], [ 21.9301395, 36.9811555 ], [ 21.877396, 36.717616497999984 ], [ 21.704893, 36.811290499999984 ], [ 21.565725499, 37.163509499999975 ], [ 21.680233, 37.377433999 ], [ 21.965728500000012, 37.48326099799999 ], [ 21.792816, 37.602543 ], [ 21.890155499, 37.865802998999982 ], [ 22.26432, 37.83939049899999 ], [ 22.3729725, 38.142223498000021 ], [ 22.962061, 37.949569499 ] ] ] } }, -{ "type": "Feature", "id": 718, "properties": { "NUTS_ID": "ES11", "STAT_LEVL_": 2, "SHAPE_AREA": 3.2901554600499998, "SHAPE_LEN": 8.6096917140600002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.031837, 43.544471497000018 ], [ -7.182441, 43.392383497000026 ], [ -6.824167, 42.915012499 ], [ -7.076834, 42.50812399900002 ], [ -6.8227655, 42.490833001 ], [ -6.784308, 42.253608499999984 ], [ -6.983513500000015, 41.972903998999982 ], [ -7.20046450000001, 41.879749498000024 ], [ -8.051862500000027, 41.820613998 ], [ -8.1650755, 41.818302 ], [ -8.199000500000011, 42.154418998999972 ], [ -8.863186, 41.872066499000027 ], [ -8.898017, 42.1119195 ], [ -8.658873500000027, 42.291434998999989 ], [ -8.833692499999984, 42.470134498999982 ], [ -8.726749499999983, 42.68825149700001 ], [ -9.0309545, 42.697562996999977 ], [ -9.277219, 43.0441095 ], [ -7.904372500000022, 43.769103997 ], [ -7.699736499999972, 43.735115001 ], [ -7.031837, 43.544471497000018 ] ] ] } }, -{ "type": "Feature", "id": 723, "properties": { "NUTS_ID": "ES12", "STAT_LEVL_": 2, "SHAPE_AREA": 1.23794569192, "SHAPE_LEN": 5.7536472444399998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.51230099899999, 43.393204001000015 ], [ -4.841038500000025, 43.180709499999978 ], [ -6.824167, 42.915012499 ], [ -7.182441, 43.392383497000026 ], [ -7.031837, 43.544471497000018 ], [ -5.84171, 43.655956499000013 ], [ -4.51230099899999, 43.393204001000015 ] ] ] } }, -{ "type": "Feature", "id": 725, "properties": { "NUTS_ID": "ES13", "STAT_LEVL_": 2, "SHAPE_AREA": 0.58122095580499999, "SHAPE_LEN": 4.2665797827600001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.153338, 43.353221999000027 ], [ -3.450147, 43.236207998999987 ], [ -3.417681500000015, 43.133369497999979 ], [ -3.945488, 43.005718496999975 ], [ -3.815811, 42.812561 ], [ -3.99967, 42.76893249699998 ], [ -4.002319, 42.830867497999975 ], [ -4.04593, 42.766566996999984 ], [ -4.081359, 42.761417499 ], [ -4.238510999000027, 42.954314997999973 ], [ -4.737022998999976, 43.02092349899999 ], [ -4.841038500000025, 43.180709499999978 ], [ -4.51230099899999, 43.393204001000015 ], [ -3.426641001, 43.413513001000013 ], [ -3.153338, 43.353221999000027 ] ] ] } }, -{ "type": "Feature", "id": 728, "properties": { "NUTS_ID": "ES21", "STAT_LEVL_": 2, "SHAPE_AREA": 0.81312909756499996, "SHAPE_LEN": 4.71365498688 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.508807499999989, 43.376544998999975 ], [ -2.412847, 43.321082998 ], [ -1.785978, 43.350478996999982 ], [ -1.728903, 43.296088997000027 ], [ -2.250807, 42.89569099900001 ], [ -2.420719, 42.489269498999988 ], [ -2.8581175, 42.638168499000017 ], [ -3.286797499999977, 42.885097497 ], [ -3.0369895, 42.982185497999978 ], [ -3.0890235, 43.00158299899999 ], [ -3.141396, 43.161483498999985 ], [ -3.417681500000015, 43.133369497999979 ], [ -3.450147, 43.236207998999987 ], [ -3.153338, 43.353221999000027 ], [ -2.508807499999989, 43.376544998999975 ] ] ] } }, -{ "type": "Feature", "id": 732, "properties": { "NUTS_ID": "ES22", "STAT_LEVL_": 2, "SHAPE_AREA": 1.16482462995, "SHAPE_LEN": 4.9724470138900001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.724501, 42.920158500000014 ], [ -0.901080499999978, 42.74269099899999 ], [ -1.2881375, 42.522762499 ], [ -1.4107495, 41.918941499000027 ], [ -1.847183500000028, 42.007988 ], [ -1.681452, 42.192402 ], [ -2.420719, 42.489269498999988 ], [ -2.250807, 42.89569099900001 ], [ -1.728903, 43.296088997000027 ], [ -1.6087885, 43.251976001 ], [ -0.724501, 42.920158500000014 ] ] ] } }, -{ "type": "Feature", "id": 734, "properties": { "NUTS_ID": "ES23", "STAT_LEVL_": 2, "SHAPE_AREA": 0.51304245633599999, "SHAPE_LEN": 3.5032208315000002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.420719, 42.489269498999988 ], [ -1.681452, 42.192402 ], [ -1.847183500000028, 42.007988 ], [ -1.8565395, 41.966388498000015 ], [ -2.282167500000014, 42.13168699900001 ], [ -2.9136375, 42.022838499999978 ], [ -3.13429450000001, 42.54202249799999 ], [ -2.8581175, 42.638168499000017 ], [ -2.420719, 42.489269498999988 ] ] ] } }, -{ "type": "Feature", "id": 736, "properties": { "NUTS_ID": "ES24", "STAT_LEVL_": 2, "SHAPE_AREA": 5.24044663946, "SHAPE_LEN": 10.2785092594 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.724501, 42.920158500000014 ], [ -0.551047, 42.777637500000026 ], [ -0.313342, 42.849364997 ], [ 0.4777555, 42.700019997000027 ], [ 0.660127, 42.69095249899999 ], [ 0.767070499999988, 42.34881599800002 ], [ 0.335948499999972, 41.407432498999981 ], [ 0.385724, 41.278839498000025 ], [ 0.220409500000017, 41.07143 ], [ 0.170789500000012, 40.732837 ], [ -0.197124499999973, 40.784457998999983 ], [ -0.279997499999979, 40.369499499000028 ], [ -0.837749501000019, 39.976817997000012 ], [ -0.797643, 39.881076499000017 ], [ -0.912739, 39.87310750099999 ], [ -1.1423615, 39.971855499000014 ], [ -1.165154, 40.010108998000021 ], [ -1.448831499999983, 40.145358497000018 ], [ -1.806344, 40.39824699899998 ], [ -1.545494500000018, 40.595210999000017 ], [ -1.6174335, 40.94374099700002 ], [ -2.05169, 41.146857999000019 ], [ -2.170485499999984, 41.318836498999985 ], [ -1.825316, 41.778365999000016 ], [ -1.8565395, 41.966388498000015 ], [ -1.847183500000028, 42.007988 ], [ -1.4107495, 41.918941499000027 ], [ -1.2881375, 42.522762499 ], [ -0.901080499999978, 42.74269099899999 ], [ -0.724501, 42.920158500000014 ] ] ] } }, -{ "type": "Feature", "id": 741, "properties": { "NUTS_ID": "ES30", "STAT_LEVL_": 2, "SHAPE_AREA": 0.81272479065799996, "SHAPE_LEN": 4.3266876300900003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.578901, 40.217157499 ], [ -4.160293500000023, 40.689853500000027 ], [ -3.539573, 41.16499349899999 ], [ -3.394300499999986, 41.000234498 ], [ -3.468398, 40.689896498999985 ], [ -3.130407, 40.40515399899999 ], [ -3.194294500000012, 40.248005998999986 ], [ -3.067689, 40.157884998999975 ], [ -3.161419500000022, 40.06489699799999 ], [ -3.623443, 40.053848500000015 ], [ -4.190704, 40.297315997999988 ], [ -4.578901, 40.217157499 ] ] ] } }, -{ "type": "Feature", "id": 744, "properties": { "NUTS_ID": "DEC0", "STAT_LEVL_": 2, "SHAPE_AREA": 0.321613830253, "SHAPE_LEN": 2.6466424927699999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.276622499999974, 49.548623500000019 ], [ 7.252589, 49.43146550099999 ], [ 7.292601499999989, 49.408222497 ], [ 7.395898499999987, 49.372045996999987 ], [ 7.402075500000024, 49.367718501000013 ], [ 7.394494, 49.316351998000016 ], [ 7.320341, 49.189498999000023 ], [ 7.36875550000002, 49.16145799899999 ], [ 7.101069, 49.155998 ], [ 6.723465499999975, 49.218828998999982 ], [ 6.556986, 49.419208498999978 ], [ 6.367107499999975, 49.469507001000011 ], [ 6.380052499999977, 49.551104999000017 ], [ 6.891454, 49.613422497999977 ], [ 7.02798, 49.63943849899999 ], [ 7.276622499999974, 49.548623500000019 ] ] ] } }, -{ "type": "Feature", "id": 752, "properties": { "NUTS_ID": "DED2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.98811335401, "SHAPE_LEN": 4.8379051850700003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.974183, 51.36394999700002 ], [ 15.037271, 51.243749998999988 ], [ 14.823362, 50.870550497000011 ], [ 14.6188, 50.857804497000018 ], [ 14.491221, 51.043530498999985 ], [ 14.317873500000019, 51.054698998999982 ], [ 14.388335, 50.900298997999982 ], [ 13.652174, 50.730359997999983 ], [ 13.421885498999984, 51.034199999 ], [ 13.198708, 51.230405499000028 ], [ 13.21015, 51.404735999000025 ], [ 13.691250500000024, 51.374012999 ], [ 13.835313, 51.37678999799999 ], [ 14.163324499999987, 51.541042999000013 ], [ 14.447771, 51.542068997 ], [ 14.729862, 51.581776999 ], [ 14.974183, 51.36394999700002 ] ] ] } }, -{ "type": "Feature", "id": 758, "properties": { "NUTS_ID": "DED4", "STAT_LEVL_": 2, "SHAPE_AREA": 0.86450517877099997, "SHAPE_LEN": 4.3773437524699998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.652174, 50.730359997999983 ], [ 13.501846, 50.633642999000017 ], [ 12.948144500000012, 50.404311499000016 ], [ 12.5837785, 50.407078999000021 ], [ 12.100900500000023, 50.31802799799999 ], [ 11.919884500000023, 50.42440349899999 ], [ 11.944137500000011, 50.591275499 ], [ 12.3189165, 50.676532499000018 ], [ 12.250825500000019, 50.818318498999986 ], [ 12.652865500000019, 50.923678000999985 ], [ 12.617355, 50.980792998000027 ], [ 12.926016, 51.2182075 ], [ 13.198708, 51.230405499000028 ], [ 13.421885498999984, 51.034199999 ], [ 13.652174, 50.730359997999983 ] ] ] } }, -{ "type": "Feature", "id": 764, "properties": { "NUTS_ID": "DED5", "STAT_LEVL_": 2, "SHAPE_AREA": 0.48510231226799999, "SHAPE_LEN": 2.81905508461 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.21015, 51.404735999000025 ], [ 13.198708, 51.230405499000028 ], [ 12.926016, 51.2182075 ], [ 12.617355, 50.980792998000027 ], [ 12.284594500000026, 51.091162497000028 ], [ 12.1709045, 51.2755085 ], [ 12.193544499999973, 51.332518500999981 ], [ 12.198939, 51.531320498000014 ], [ 12.580263, 51.626065499999982 ], [ 13.051025, 51.647677 ], [ 13.21015, 51.404735999000025 ] ] ] } }, -{ "type": "Feature", "id": 769, "properties": { "NUTS_ID": "DEE0", "STAT_LEVL_": 2, "SHAPE_AREA": 2.7298399960699999, "SHAPE_LEN": 8.7958688020100002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.051025, 51.647677 ], [ 12.580263, 51.626065499999982 ], [ 12.198939, 51.531320498000014 ], [ 12.193544499999973, 51.332518500999981 ], [ 12.1709045, 51.2755085 ], [ 12.284594500000026, 51.091162497000028 ], [ 12.224169, 50.942934998 ], [ 12.163369499999988, 50.958822498000018 ], [ 12.021018500000025, 50.96912249899998 ], [ 11.696938499999987, 51.087490998000021 ], [ 11.484608499999979, 51.105437499 ], [ 11.385374500000012, 51.24588699899999 ], [ 11.473968, 51.29505849899999 ], [ 11.428868500000021, 51.339809999000011 ], [ 10.978113, 51.426884998999981 ], [ 10.916058998999972, 51.616374001 ], [ 10.701372, 51.642187499999977 ], [ 10.561227, 52.004065998999977 ], [ 10.801428499999986, 52.0480005 ], [ 10.964414499999975, 52.056642997999973 ], [ 11.086244, 52.22863399900001 ], [ 10.93454250000002, 52.471794999 ], [ 11.0087815, 52.496747500000026 ], [ 10.759314500000016, 52.795830500000022 ], [ 10.841556, 52.852205 ], [ 11.505027, 52.941032499000016 ], [ 11.597784499999989, 53.035926499000027 ], [ 12.126811499999974, 52.890199499 ], [ 12.249203500000021, 52.79186199899999 ], [ 12.171555, 52.506336497 ], [ 12.31718, 52.454095499 ], [ 12.276724499000011, 52.104018 ], [ 12.3761225, 52.04511949800002 ], [ 12.769780500000024, 51.979274499999974 ], [ 13.1509135, 51.859610499999974 ], [ 13.051025, 51.647677 ] ] ] } }, -{ "type": "Feature", "id": 785, "properties": { "NUTS_ID": "DEF0", "STAT_LEVL_": 2, "SHAPE_AREA": 2.0719277246600001, "SHAPE_LEN": 8.32640217384 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.420151499999974, 54.831956500999979 ], [ 9.422934, 54.823222998 ], [ 9.491949499999976, 54.822635499 ], [ 10.03117, 54.636575000999983 ], [ 10.168517, 54.432844998 ], [ 10.174162, 54.345745498999975 ], [ 10.713750499000014, 54.305072500999984 ], [ 11.1256095, 54.373613499999976 ], [ 11.093783, 54.199050500999988 ], [ 10.755363499999987, 54.054051501 ], [ 10.840886001, 53.991893998000023 ], [ 10.903661500999988, 53.956822000999978 ], [ 10.76296450000001, 53.811153 ], [ 10.951918499999977, 53.647622499000022 ], [ 10.595047, 53.363927500999978 ], [ 10.469184, 53.385844 ], [ 10.308312, 53.433221498000023 ], [ 10.236678499999982, 53.496354498000017 ], [ 10.072805, 53.709633999 ], [ 9.945376, 53.652927998 ], [ 9.73010399899999, 53.557580997 ], [ 9.48589, 53.707664497999986 ], [ 9.199750999, 53.88010449799998 ], [ 9.02242, 53.87951750000002 ], [ 8.8448045, 54.266328499999986 ], [ 8.602134, 54.340507996999975 ], [ 9.010464, 54.496822999000017 ], [ 8.372664499999985, 54.896856497999977 ], [ 8.63592599899999, 54.911682998 ], [ 9.113097, 54.8736015 ], [ 9.420151499999974, 54.831956500999979 ] ] ] } }, -{ "type": "Feature", "id": 789, "properties": { "NUTS_ID": "FR52", "STAT_LEVL_": 2, "SHAPE_AREA": 3.1047208840799998, "SHAPE_LEN": 10.0860830003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.571089500000028, 48.626442 ], [ -1.42794, 48.461915001000023 ], [ -1.070164499999976, 48.508492 ], [ -1.015823501, 48.003285999000013 ], [ -1.238248, 47.809992497 ], [ -1.245885, 47.776717498999972 ], [ -2.097034, 47.63135649899999 ], [ -2.458493, 47.448119999000028 ], [ -3.528605313000014, 47.778291696999986 ], [ -4.734697499999982, 48.038242497999988 ], [ -4.269574, 48.132770500999982 ], [ -4.2257935, 48.28749099700002 ], [ -4.273602501000028, 48.443435500000021 ], [ -4.772754, 48.329235 ], [ -4.7699215, 48.521136999000021 ], [ -3.950495, 48.652869998000028 ], [ -3.65915050000001, 48.659209998999984 ], [ -3.084001, 48.865695999000025 ], [ -2.6863985, 48.493152499000018 ], [ -2.123706500000026, 48.604404499 ], [ -2.148958, 48.633731996999984 ], [ -2.045604, 48.63681399699999 ], [ -2.006897, 48.566108498 ], [ -1.982181075000028, 48.554643027999987 ], [ -1.872124, 48.645713999 ], [ -1.571089500000028, 48.626442 ] ] ] } }, -{ "type": "Feature", "id": 794, "properties": { "NUTS_ID": "FR53", "STAT_LEVL_": 2, "SHAPE_AREA": 2.9295929819099999, "SHAPE_LEN": 7.4945071962499998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.177279, 46.383947998 ], [ 0.823432500000024, 46.128584499 ], [ 0.629741, 45.714569997000012 ], [ 0.004336, 45.191628 ], [ -0.040197499999977, 45.10237999899999 ], [ -0.708231, 45.327480498999989 ], [ -1.230697500000019, 45.680572498 ], [ -1.053074, 46.00383 ], [ -1.129406, 46.310271999 ], [ -0.7504715, 46.304254499000024 ], [ -0.537795001, 46.386463999 ], [ -0.891964, 46.975820499 ], [ -0.102116, 47.064799998000012 ], [ 0.05383, 47.163733499999978 ], [ 0.867469, 46.748216499000023 ], [ 1.177279, 46.383947998 ] ] ] } }, -{ "type": "Feature", "id": 800, "properties": { "NUTS_ID": "FR61", "STAT_LEVL_": 2, "SHAPE_AREA": 4.78854699648, "SHAPE_LEN": 10.686466900599999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.2531545, 45.444220001000019 ], [ 1.44826, 45.019313999000019 ], [ 1.075142, 44.577325498999983 ], [ 1.064081499999986, 44.37850849900002 ], [ 0.741885, 44.065198999000017 ], [ 0.076043500000026, 43.983138499 ], [ -0.240259, 43.897947999 ], [ -0.242833, 43.584978997 ], [ -0.096788, 43.582405 ], [ -0.017172, 43.269951 ], [ -0.313342, 42.849364997 ], [ -0.551047, 42.777637500000026 ], [ -0.724501, 42.920158500000014 ], [ -1.6087885, 43.251976001 ], [ -1.728903, 43.296088997000027 ], [ -1.785978, 43.350478996999982 ], [ -1.52487050000002, 43.529700999 ], [ -1.253891, 44.467605499 ], [ -1.156919, 45.472530499000015 ], [ -0.708231, 45.327480498999989 ], [ -0.040197499999977, 45.10237999899999 ], [ 0.004336, 45.191628 ], [ 0.629741, 45.714569997000012 ], [ 1.2531545, 45.444220001000019 ] ] ] } }, -{ "type": "Feature", "id": 806, "properties": { "NUTS_ID": "FR62", "STAT_LEVL_": 2, "SHAPE_AREA": 5.1414885421100003, "SHAPE_LEN": 11.953295218699999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.062908, 44.976504498999986 ], [ 2.207473, 44.61552899899999 ], [ 2.4789475, 44.64800999900001 ], [ 2.7167695, 44.928827996999985 ], [ 2.9816755, 44.644672999000022 ], [ 3.120173500000021, 44.261838496999985 ], [ 3.373648, 44.170759498999985 ], [ 3.263114, 44.092425499 ], [ 3.448355, 44.019103498999982 ], [ 3.358362, 43.913829498999974 ], [ 2.935457, 43.694664999 ], [ 2.565782500000012, 43.422958 ], [ 2.265415, 43.452913498999976 ], [ 2.029134, 43.436895497000023 ], [ 1.6884235, 43.273554497000021 ], [ 1.949341, 43.120973 ], [ 2.166049, 42.663917498999979 ], [ 1.7860985, 42.573658 ], [ 1.442566, 42.603668001000017 ], [ 0.858215, 42.825740999 ], [ 0.660127, 42.69095249899999 ], [ 0.4777555, 42.700019997000027 ], [ -0.313342, 42.849364997 ], [ -0.017172, 43.269951 ], [ -0.096788, 43.582405 ], [ -0.242833, 43.584978997 ], [ -0.240259, 43.897947999 ], [ 0.076043500000026, 43.983138499 ], [ 0.741885, 44.065198999000017 ], [ 1.064081499999986, 44.37850849900002 ], [ 1.075142, 44.577325498999983 ], [ 1.44826, 45.019313999000019 ], [ 2.062908, 44.976504498999986 ] ] ] } }, -{ "type": "Feature", "id": 815, "properties": { "NUTS_ID": "FR63", "STAT_LEVL_": 2, "SHAPE_AREA": 1.9489327107700001, "SHAPE_LEN": 5.6756481734099999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.28104350000001, 46.420403497 ], [ 2.565372500000024, 46.143036 ], [ 2.60902149899999, 45.966643998999984 ], [ 2.388014, 45.827372997 ], [ 2.492129499999976, 45.737669997000012 ], [ 2.50841250000002, 45.478501499 ], [ 2.062908, 44.976504498999986 ], [ 1.44826, 45.019313999000019 ], [ 1.2531545, 45.444220001000019 ], [ 0.629741, 45.714569997000012 ], [ 0.823432500000024, 46.128584499 ], [ 1.177279, 46.383947998 ], [ 1.4151855, 46.347215001 ], [ 2.167784499999982, 46.424068998999985 ], [ 2.28104350000001, 46.420403497 ] ] ] } }, -{ "type": "Feature", "id": 820, "properties": { "NUTS_ID": "FR71", "STAT_LEVL_": 2, "SHAPE_AREA": 5.2330827016899999, "SHAPE_LEN": 12.9175279067 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.310563499000011, 46.446769999000026 ], [ 5.4736565, 46.264284001000021 ], [ 6.064003, 46.416228997000019 ], [ 6.125608, 46.317229999 ], [ 5.956067, 46.1320955 ], [ 6.310211, 46.244045498999981 ], [ 6.219547, 46.311877998999989 ], [ 6.231694, 46.329429498000025 ], [ 6.24136, 46.343582497 ], [ 6.821063998999989, 46.427154498999982 ], [ 6.797888999, 46.136798999 ], [ 7.044886, 45.922412999000016 ], [ 6.8023685, 45.778562 ], [ 7.104723, 45.468454499000018 ], [ 7.125157, 45.243994498 ], [ 6.630051, 45.109856499999978 ], [ 6.26057, 45.12684399699998 ], [ 6.203923499999974, 45.01247100099999 ], [ 6.355365, 44.854820499000027 ], [ 5.80147, 44.706777500999976 ], [ 5.418397500000026, 44.424768498999981 ], [ 5.676035999000021, 44.191428498999983 ], [ 5.4987865, 44.115716497999983 ], [ 4.804566, 44.303896998000027 ], [ 4.650611, 44.329802997 ], [ 4.6492275, 44.27036 ], [ 4.258899499999984, 44.264422998999976 ], [ 3.998161499999981, 44.459798498 ], [ 3.862531, 44.743865997 ], [ 4.483132, 45.236445499000013 ], [ 3.897408499999983, 45.357079998000017 ], [ 3.984688999000014, 45.495232499 ], [ 3.694015, 45.930728000999977 ], [ 3.832069499999989, 45.999663496999972 ], [ 3.768207500000017, 46.238814497000021 ], [ 3.899538499000016, 46.275907999000026 ], [ 4.388074500000016, 46.219790499 ], [ 4.780208500000015, 46.176675999 ], [ 4.953853998999989, 46.513422999 ], [ 5.310563499000011, 46.446769999000026 ] ] ] } }, -{ "type": "Feature", "id": 829, "properties": { "NUTS_ID": "FR72", "STAT_LEVL_": 2, "SHAPE_AREA": 2.99926292956, "SHAPE_LEN": 9.152726812 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.899538499000016, 46.275907999000026 ], [ 3.768207500000017, 46.238814497000021 ], [ 3.832069499999989, 45.999663496999972 ], [ 3.694015, 45.930728000999977 ], [ 3.984688999000014, 45.495232499 ], [ 3.897408499999983, 45.357079998000017 ], [ 4.483132, 45.236445499000013 ], [ 3.862531, 44.743865997 ], [ 3.361347500000022, 44.971408 ], [ 3.103125, 44.884632497999974 ], [ 2.9816755, 44.644672999000022 ], [ 2.7167695, 44.928827996999985 ], [ 2.4789475, 44.64800999900001 ], [ 2.207473, 44.61552899899999 ], [ 2.062908, 44.976504498999986 ], [ 2.50841250000002, 45.478501499 ], [ 2.492129499999976, 45.737669997000012 ], [ 2.388014, 45.827372997 ], [ 2.60902149899999, 45.966643998999984 ], [ 2.565372500000024, 46.143036 ], [ 2.28104350000001, 46.420403497 ], [ 3.032063, 46.794909501 ], [ 3.629422499999976, 46.749456497999972 ], [ 3.998868500000015, 46.46486699899998 ], [ 3.899538499000016, 46.275907999000026 ] ] ] } }, -{ "type": "Feature", "id": 835, "properties": { "NUTS_ID": "FR81", "STAT_LEVL_": 2, "SHAPE_AREA": 3.0557720052200001, "SHAPE_LEN": 10.999483833599999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.862531, 44.743865997 ], [ 3.998161499999981, 44.459798498 ], [ 4.258899499999984, 44.264422998999976 ], [ 4.6492275, 44.27036 ], [ 4.7390595, 43.924061999 ], [ 4.230281, 43.460186 ], [ 4.101040500000011, 43.554370999000014 ], [ 3.24056250000001, 43.212802999000019 ], [ 2.9889005, 42.864599999 ], [ 3.035430500000018, 42.8420695 ], [ 3.050192, 42.870636 ], [ 3.043504499999983, 42.83815 ], [ 3.174803999, 42.435375 ], [ 1.964552, 42.382156999000017 ], [ 1.731011, 42.492400998999983 ], [ 1.725801, 42.504401998999981 ], [ 1.7860985, 42.573658 ], [ 2.166049, 42.663917498999979 ], [ 1.949341, 43.120973 ], [ 1.6884235, 43.273554497000021 ], [ 2.029134, 43.436895497000023 ], [ 2.265415, 43.452913498999976 ], [ 2.565782500000012, 43.422958 ], [ 2.935457, 43.694664999 ], [ 3.358362, 43.913829498999974 ], [ 3.448355, 44.019103498999982 ], [ 3.263114, 44.092425499 ], [ 3.373648, 44.170759498999985 ], [ 3.120173500000021, 44.261838496999985 ], [ 2.9816755, 44.644672999000022 ], [ 3.103125, 44.884632497999974 ], [ 3.361347500000022, 44.971408 ], [ 3.862531, 44.743865997 ] ] ] } }, -{ "type": "Feature", "id": 841, "properties": { "NUTS_ID": "FR82", "STAT_LEVL_": 2, "SHAPE_AREA": 3.5958602645200002, "SHAPE_LEN": 10.0846699465 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.630051, 45.109856499999978 ], [ 7.065755, 44.713464497000018 ], [ 6.948443, 44.654741999 ], [ 6.887428, 44.361287 ], [ 7.007760500000018, 44.23670049899999 ], [ 7.714236500000027, 44.061513499 ], [ 7.529827, 43.784007997 ], [ 7.43605928, 43.769769968999981 ], [ 7.413667280000027, 43.744077703000016 ], [ 6.933721, 43.480064497 ], [ 6.621062, 43.157783500999983 ], [ 5.671879, 43.17926799899999 ], [ 4.230281, 43.460186 ], [ 4.7390595, 43.924061999 ], [ 4.6492275, 44.27036 ], [ 4.650611, 44.329802997 ], [ 4.804566, 44.303896998000027 ], [ 5.4987865, 44.115716497999983 ], [ 5.676035999000021, 44.191428498999983 ], [ 5.418397500000026, 44.424768498999981 ], [ 5.80147, 44.706777500999976 ], [ 6.355365, 44.854820499000027 ], [ 6.203923499999974, 45.01247100099999 ], [ 6.26057, 45.12684399699998 ], [ 6.630051, 45.109856499999978 ] ] ] } }, -{ "type": "Feature", "id": 848, "properties": { "NUTS_ID": "FR83", "STAT_LEVL_": 2, "SHAPE_AREA": 0.97499690593, "SHAPE_LEN": 4.4453118444299999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.402272, 41.858703499 ], [ 9.219715, 41.367603998999982 ], [ 8.788534, 41.557075497000028 ], [ 8.591134, 41.962154496999972 ], [ 8.573006498999973, 42.238570998 ], [ 8.691523500000017, 42.266464000999974 ], [ 8.573408, 42.381405 ], [ 8.727043, 42.561603499 ], [ 9.301698499999986, 42.678638501000023 ], [ 9.343248500000016, 42.999740499999973 ], [ 9.4632805, 42.986736499000017 ], [ 9.559117500000013, 42.196696997 ], [ 9.402272, 41.858703499 ] ] ] } }, -{ "type": "Feature", "id": 852, "properties": { "NUTS_ID": "FRA1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.097668405970799996, "SHAPE_LEN": 1.8847485533 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -61.555346499999985, 16.053240499000026 ], [ -61.6968005, 15.946588999000028 ], [ -61.80593, 16.257474498000022 ], [ -61.672612500000014, 16.324603500000023 ], [ -61.555346499999985, 16.053240499000026 ] ] ], [ [ [ -61.254871499999979, 16.256139 ], [ -61.527298499999972, 16.219122998999978 ], [ -61.541210499999977, 16.438073 ], [ -61.464057500000024, 16.513064499 ], [ -61.254871499999979, 16.256139 ] ] ] ] } }, -{ "type": "Feature", "id": 854, "properties": { "NUTS_ID": "FRA2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.079344273916300001, "SHAPE_LEN": 1.2782213923300001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -61.003888, 14.808371500000021 ], [ -60.857675500000028, 14.398175 ], [ -61.081969, 14.470402498999988 ], [ -61.229269, 14.822112499000013 ], [ -61.003888, 14.808371500000021 ] ] ] } }, -{ "type": "Feature", "id": 856, "properties": { "NUTS_ID": "FRA3", "STAT_LEVL_": 2, "SHAPE_AREA": 6.9029872979700002, "SHAPE_LEN": 10.9991380399 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.565187, 2.516254 ], [ -52.904169, 2.190938 ], [ -53.723031, 2.31207 ], [ -54.152372500000013, 2.119626501000027 ], [ -54.587859499999979, 2.32202350099999 ], [ -54.208187, 2.7777375 ], [ -53.979807, 3.606575 ], [ -54.356726499999979, 4.047393500999988 ], [ -54.468998, 4.890381 ], [ -54.008094501000016, 5.623116499999981 ], [ -53.9683655, 5.745176500000014 ], [ -53.7992595, 5.723899501 ], [ -52.94350750000001, 5.451987499999973 ], [ -52.364701, 4.9207345 ], [ -51.813244, 4.6343435 ], [ -51.629835500000013, 4.189126499 ], [ -52.565187, 2.516254 ] ] ] } }, -{ "type": "Feature", "id": 858, "properties": { "NUTS_ID": "FRA4", "STAT_LEVL_": 2, "SHAPE_AREA": 0.177527591767, "SHAPE_LEN": 1.68429467461 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 55.825796500000024, -21.143524499000023 ], [ 55.797395, -21.350129498 ], [ 55.292974, -21.229784998000014 ], [ 55.283669, -20.926209498999981 ], [ 55.6477375, -20.91560449799999 ], [ 55.825796500000024, -21.143524499000023 ] ] ] } }, -{ "type": "Feature", "id": 860, "properties": { "NUTS_ID": "FRA5", "STAT_LEVL_": 2, "SHAPE_AREA": 0.027834548767099999, "SHAPE_LEN": 0.97963438771199995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 45.2132815, -12.873075500000027 ], [ 45.1483005, -13.000090499 ], [ 45.071559, -12.902030998999976 ], [ 45.154967, -12.92356799800001 ], [ 45.04258, -12.744023498999979 ], [ 45.088423499999976, -12.669118998999977 ], [ 45.125466999000025, -12.727415999000016 ], [ 45.236856, -12.753384998 ], [ 45.186050500000022, -12.839496 ], [ 45.2132815, -12.873075500000027 ] ] ] } }, -{ "type": "Feature", "id": 864, "properties": { "NUTS_ID": "HR03", "STAT_LEVL_": 2, "SHAPE_AREA": 2.61744815068, "SHAPE_LEN": 18.360624194500001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.589105421, 45.236414152 ], [ 14.8205145, 44.970927997999979 ], [ 14.438129499000013, 45.064864499 ], [ 14.585924309, 45.238482154 ], [ 14.332406, 45.355255000999989 ], [ 14.2265825, 45.153838499000017 ], [ 13.906588, 44.768634999000028 ], [ 13.606798, 45.11697399799999 ], [ 13.489867, 45.486835497000015 ], [ 13.583067, 45.477409997 ], [ 14.109059, 45.482458496999982 ], [ 14.11819650000001, 45.48123899699999 ], [ 14.570012500000018, 45.672944497 ], [ 15.226437499999975, 45.42708799799999 ], [ 14.961522, 45.273318999000026 ], [ 15.017143, 45.122890499999983 ], [ 15.0589, 45.111690501 ], [ 15.736722, 44.935630999000011 ], [ 16.131936999, 44.454681500999982 ], [ 16.208290375999979, 44.216682898999977 ], [ 16.544348, 43.974178498000015 ], [ 16.811584499999981, 43.755492998000022 ], [ 17.450845500000014, 43.176868500000012 ], [ 17.4751225, 43.161456997000016 ], [ 17.712072499999977, 42.973003499000015 ], [ 17.581335, 42.938422999000011 ], [ 17.355711, 43.084621501000015 ], [ 16.3882865, 43.509128498999985 ], [ 16.475813, 43.534843501000012 ], [ 16.013214, 43.502506 ], [ 15.558911500000022, 43.871951997 ], [ 15.111249, 44.260101497999983 ], [ 15.598931350999976, 44.172556789 ], [ 15.2894715, 44.363227999 ], [ 14.896002, 44.696899497 ], [ 14.881313499999976, 45.034404999 ], [ 14.589105421, 45.236414152 ] ] ], [ [ [ 18.438104, 42.555705000999978 ], [ 18.525213, 42.420462997000016 ], [ 17.000639, 43.046752998999978 ], [ 17.469783999000015, 42.914893996999979 ], [ 17.6491565, 42.888923499999976 ], [ 18.438104, 42.555705000999978 ] ] ], [ [ [ 14.474727499999972, 44.95611549900002 ], [ 14.517015500000014, 44.608916998999973 ], [ 14.3020285, 44.93503199700001 ], [ 14.3602285, 45.088412999000013 ], [ 14.474727499999972, 44.95611549900002 ] ] ] ] } }, -{ "type": "Feature", "id": 872, "properties": { "NUTS_ID": "HR04", "STAT_LEVL_": 2, "SHAPE_AREA": 3.653503398, "SHAPE_LEN": 11.394978593099999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.596805, 46.475902498999972 ], [ 16.854754999000022, 46.350440999 ], [ 16.8760435, 46.320602496999982 ], [ 17.294325, 45.988544500999978 ], [ 17.651499, 45.847835499999974 ], [ 17.911642, 45.790950996999982 ], [ 18.446884, 45.737048997999977 ], [ 18.821306, 45.914382997000018 ], [ 18.889734, 45.921180497000023 ], [ 19.033942, 45.486821498999973 ], [ 19.004717, 45.435032 ], [ 19.425167499999986, 45.167692499 ], [ 19.0864565, 45.145390999000028 ], [ 19.022069499999986, 44.855353998999988 ], [ 18.531997499999989, 45.090629498 ], [ 17.143591499000024, 45.162589500000024 ], [ 16.529669, 45.226574 ], [ 16.288761, 44.995689497 ], [ 15.836288500000023, 45.22247699899998 ], [ 15.736722, 44.935630999000011 ], [ 15.0589, 45.111690501 ], [ 15.017143, 45.122890499999983 ], [ 14.961522, 45.273318999000026 ], [ 15.226437499999975, 45.42708799799999 ], [ 15.385532, 45.486580499000013 ], [ 15.277050499999973, 45.604461499000024 ], [ 15.331290500000023, 45.762854999000012 ], [ 15.404425, 45.792716997000014 ], [ 15.706404500000019, 45.97534299900002 ], [ 15.627262, 46.085953499000027 ], [ 15.7914755, 46.259327497000015 ], [ 15.8768685, 46.280055499000014 ], [ 16.301549, 46.378287996999973 ], [ 16.242148499999985, 46.490075497000021 ], [ 16.596805, 46.475902498999972 ] ] ] } }, -{ "type": "Feature", "id": 889, "properties": { "NUTS_ID": "ES41", "STAT_LEVL_": 2, "SHAPE_AREA": 10.1239716572, "SHAPE_LEN": 17.697774666800001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.238510999000027, 42.954314997999973 ], [ -4.081359, 42.761417499 ], [ -4.04593, 42.766566996999984 ], [ -4.002319, 42.830867497999975 ], [ -3.99967, 42.76893249699998 ], [ -3.815811, 42.812561 ], [ -3.945488, 43.005718496999975 ], [ -3.417681500000015, 43.133369497999979 ], [ -3.141396, 43.161483498999985 ], [ -3.0890235, 43.00158299899999 ], [ -3.0369895, 42.982185497999978 ], [ -3.286797499999977, 42.885097497 ], [ -2.8581175, 42.638168499000017 ], [ -3.13429450000001, 42.54202249799999 ], [ -2.9136375, 42.022838499999978 ], [ -2.282167500000014, 42.13168699900001 ], [ -1.8565395, 41.966388498000015 ], [ -1.825316, 41.778365999000016 ], [ -2.170485499999984, 41.318836498999985 ], [ -2.05169, 41.146857999000019 ], [ -2.418909000999975, 41.05771649899998 ], [ -2.716780500000027, 41.275680498999975 ], [ -3.207373, 41.304244998 ], [ -3.539573, 41.16499349899999 ], [ -4.160293500000023, 40.689853500000027 ], [ -4.578901, 40.217157499 ], [ -5.336016500000028, 40.115855999000019 ], [ -5.7376025, 40.29416299899998 ], [ -6.2399775, 40.485900999000023 ], [ -6.865144, 40.270694499 ], [ -6.801935, 40.861045998 ], [ -6.929903500000023, 41.029466499000023 ], [ -6.689786, 41.205241498000021 ], [ -6.479713, 41.294379999 ], [ -6.189352, 41.575046499 ], [ -6.5884615, 41.967761998000015 ], [ -6.983513500000015, 41.972903998999982 ], [ -6.784308, 42.253608499999984 ], [ -6.8227655, 42.490833001 ], [ -7.076834, 42.50812399900002 ], [ -6.824167, 42.915012499 ], [ -4.841038500000025, 43.180709499999978 ], [ -4.737022998999976, 43.02092349899999 ], [ -4.238510999000027, 42.954314997999973 ] ] ] } }, -{ "type": "Feature", "id": 899, "properties": { "NUTS_ID": "ES42", "STAT_LEVL_": 2, "SHAPE_AREA": 8.3726869842500005, "SHAPE_LEN": 16.072229926199999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.05169, 41.146857999000019 ], [ -1.6174335, 40.94374099700002 ], [ -1.545494500000018, 40.595210999000017 ], [ -1.806344, 40.39824699899998 ], [ -1.448831499999983, 40.145358497000018 ], [ -1.165154, 40.010108998000021 ], [ -1.1423615, 39.971855499000014 ], [ -1.505146500000023, 39.41801449799999 ], [ -1.161849, 39.305431499 ], [ -1.266710499999988, 39.051032500000019 ], [ -0.959359, 38.944587497999976 ], [ -0.928884499999981, 38.783839999 ], [ -1.02687, 38.655509498000015 ], [ -1.402179499999988, 38.690803500000015 ], [ -2.341602, 38.026019999000027 ], [ -2.551274001000024, 38.084118 ], [ -2.481576, 38.393101 ], [ -2.762069, 38.532779499000014 ], [ -4.268895, 38.347212997999975 ], [ -5.008071500000028, 38.715274998999973 ], [ -5.046996001000025, 38.72913349800001 ], [ -4.847362499999974, 38.882449999000016 ], [ -4.962548, 39.058776997999985 ], [ -4.687733, 39.450336499 ], [ -4.755411, 39.415759998 ], [ -4.8104735, 39.39661399900001 ], [ -4.9407835, 39.395164501000011 ], [ -4.952554500000019, 39.395038499 ], [ -5.406153, 39.877772999 ], [ -5.336016500000028, 40.115855999000019 ], [ -4.578901, 40.217157499 ], [ -4.190704, 40.297315997999988 ], [ -3.623443, 40.053848500000015 ], [ -3.161419500000022, 40.06489699799999 ], [ -3.067689, 40.157884998999975 ], [ -3.194294500000012, 40.248005998999986 ], [ -3.130407, 40.40515399899999 ], [ -3.468398, 40.689896498999985 ], [ -3.394300499999986, 41.000234498 ], [ -3.539573, 41.16499349899999 ], [ -3.207373, 41.304244998 ], [ -2.716780500000027, 41.275680498999975 ], [ -2.418909000999975, 41.05771649899998 ], [ -2.05169, 41.146857999000019 ] ] ] } }, -{ "type": "Feature", "id": 905, "properties": { "NUTS_ID": "ES43", "STAT_LEVL_": 2, "SHAPE_AREA": 4.3214174758599997, "SHAPE_LEN": 9.5166580530200005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.336016500000028, 40.115855999000019 ], [ -5.406153, 39.877772999 ], [ -4.952554500000019, 39.395038499 ], [ -4.9407835, 39.395164501000011 ], [ -4.8104735, 39.39661399900001 ], [ -4.755411, 39.415759998 ], [ -4.687733, 39.450336499 ], [ -4.962548, 39.058776997999985 ], [ -4.847362499999974, 38.882449999000016 ], [ -5.046996001000025, 38.72913349800001 ], [ -5.568977500000017, 38.432639998000013 ], [ -5.584845499999972, 38.131752 ], [ -5.874359, 38.158622998 ], [ -6.180307500000026, 37.941077998000026 ], [ -6.9317385, 38.208377998 ], [ -7.10795250000001, 38.188121500000022 ], [ -7.316636, 38.439876498999979 ], [ -7.203135, 38.75101749800001 ], [ -6.9513915, 39.024070499 ], [ -7.231467, 39.278431 ], [ -7.53490245, 39.661986891000026 ], [ -7.015405, 39.670856499000024 ], [ -6.864203, 40.011867498000015 ], [ -7.011960499999986, 40.126934 ], [ -6.9512985, 40.257445999000026 ], [ -6.865144, 40.270694499 ], [ -6.2399775, 40.485900999000023 ], [ -5.7376025, 40.29416299899998 ], [ -5.336016500000028, 40.115855999000019 ] ] ] } }, -{ "type": "Feature", "id": 909, "properties": { "NUTS_ID": "ES51", "STAT_LEVL_": 2, "SHAPE_AREA": 3.4218868096100001, "SHAPE_LEN": 8.8483194699799999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.731011, 42.492400998999983 ], [ 1.964552, 42.382156999000017 ], [ 3.174803999, 42.435375 ], [ 3.111661500000025, 42.203849498000011 ], [ 3.21998050000002, 41.92232149900002 ], [ 2.778513, 41.648807498 ], [ 1.645323500000018, 41.19562149699999 ], [ 0.966513, 41.028423498999985 ], [ 0.5152385, 40.522918498000024 ], [ 0.170789500000012, 40.732837 ], [ 0.220409500000017, 41.07143 ], [ 0.385724, 41.278839498000025 ], [ 0.335948499999972, 41.407432498999981 ], [ 0.767070499999988, 42.34881599800002 ], [ 0.660127, 42.69095249899999 ], [ 0.858215, 42.825740999 ], [ 1.442566, 42.603668001000017 ], [ 1.725801, 42.504401998999981 ], [ 1.731011, 42.492400998999983 ] ] ] } }, -{ "type": "Feature", "id": 914, "properties": { "NUTS_ID": "ES52", "STAT_LEVL_": 2, "SHAPE_AREA": 2.38760456843, "SHAPE_LEN": 8.8633648747299993 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.170789500000012, 40.732837 ], [ 0.5152385, 40.522918498000024 ], [ -0.188467, 39.721954498 ], [ -0.334561, 39.423534499000027 ], [ 0.012785310000027, 38.864592846999983 ], [ 0.205479500000024, 38.731944999 ], [ -0.301367, 38.481929498999989 ], [ -0.7621355, 37.847007997999981 ], [ -1.030276500000014, 38.097076497999979 ], [ -1.02687, 38.655509498000015 ], [ -0.928884499999981, 38.783839999 ], [ -0.959359, 38.944587497999976 ], [ -1.266710499999988, 39.051032500000019 ], [ -1.161849, 39.305431499 ], [ -1.505146500000023, 39.41801449799999 ], [ -1.1423615, 39.971855499000014 ], [ -0.912739, 39.87310750099999 ], [ -0.797643, 39.881076499000017 ], [ -0.837749501000019, 39.976817997000012 ], [ -0.279997499999979, 40.369499499000028 ], [ -0.197124499999973, 40.784457998999983 ], [ 0.170789500000012, 40.732837 ] ] ] } }, -{ "type": "Feature", "id": 918, "properties": { "NUTS_ID": "ES53", "STAT_LEVL_": 2, "SHAPE_AREA": 0.47732386063600002, "SHAPE_LEN": 5.1265061021499996 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.079701, 39.901542499000016 ], [ 3.1449035, 39.773849500999972 ], [ 3.3484785, 39.788887000999978 ], [ 3.455952500000024, 39.656703998000012 ], [ 3.0730825, 39.268691999 ], [ 2.344436, 39.587226998 ], [ 2.778520500000013, 39.85567899900002 ], [ 3.213000500000021, 39.955375996999976 ], [ 3.079701, 39.901542499000016 ] ] ], [ [ [ 1.423349, 38.905044498999985 ], [ 1.3711275, 38.830333498000016 ], [ 1.213064499999973, 38.901359500000012 ], [ 1.310512500000016, 39.042953499000021 ], [ 1.603850500000021, 39.091018497999983 ], [ 1.605787500000019, 39.02961349899999 ], [ 1.423349, 38.905044498999985 ] ] ], [ [ [ 4.094098, 40.05835349900002 ], [ 4.28757, 39.814689499 ], [ 3.791304, 40.016177998999979 ], [ 4.094098, 40.05835349900002 ] ] ] ] } }, -{ "type": "Feature", "id": 923, "properties": { "NUTS_ID": "ES61", "STAT_LEVL_": 2, "SHAPE_AREA": 9.0115671751199997, "SHAPE_LEN": 15.0399762471 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.341602, 38.026019999000027 ], [ -2.2076315, 37.916587999 ], [ -1.974468, 37.868480499999976 ], [ -1.976776500000028, 37.618732500000021 ], [ -1.630033, 37.375182999 ], [ -2.12434, 36.731842001000018 ], [ -2.3680915, 36.841457499 ], [ -2.700591, 36.682723997999972 ], [ -3.128691, 36.750887998999985 ], [ -3.777457500000025, 36.737926500000015 ], [ -4.418207, 36.717219999 ], [ -5.252405, 36.311275498999976 ], [ -5.339225, 36.152034997999976 ], [ -5.351522499999987, 36.152568998999982 ], [ -5.395709008999972, 36.127541227999984 ], [ -5.60843, 36.007053497000015 ], [ -6.040427500000021, 36.192378999000027 ], [ -6.440116, 36.720863498000028 ], [ -6.345561, 36.798766998000019 ], [ -6.893693499999983, 37.161465 ], [ -7.401916500000027, 37.174827498000013 ], [ -7.512691500000017, 37.526256499 ], [ -7.2632845, 37.979908 ], [ -7.002483499999983, 38.0227165 ], [ -6.9317385, 38.208377998 ], [ -6.180307500000026, 37.941077998000026 ], [ -5.874359, 38.158622998 ], [ -5.584845499999972, 38.131752 ], [ -5.568977500000017, 38.432639998000013 ], [ -5.046996001000025, 38.72913349800001 ], [ -5.008071500000028, 38.715274998999973 ], [ -4.268895, 38.347212997999975 ], [ -2.762069, 38.532779499000014 ], [ -2.481576, 38.393101 ], [ -2.551274001000024, 38.084118 ], [ -2.341602, 38.026019999000027 ] ] ] } }, -{ "type": "Feature", "id": 932, "properties": { "NUTS_ID": "ES62", "STAT_LEVL_": 2, "SHAPE_AREA": 1.17084284025, "SHAPE_LEN": 4.841243982 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.02687, 38.655509498000015 ], [ -1.030276500000014, 38.097076497999979 ], [ -0.7621355, 37.847007997999981 ], [ -0.8599795, 37.721446997999976 ], [ -0.720821, 37.605872998 ], [ -1.325323500000025, 37.562442498999985 ], [ -1.630033, 37.375182999 ], [ -1.976776500000028, 37.618732500000021 ], [ -1.974468, 37.868480499999976 ], [ -2.2076315, 37.916587999 ], [ -2.341602, 38.026019999000027 ], [ -1.402179499999988, 38.690803500000015 ], [ -1.02687, 38.655509498000015 ] ] ] } }, -{ "type": "Feature", "id": 934, "properties": { "NUTS_ID": "ES63", "STAT_LEVL_": 2, "SHAPE_AREA": 0.00054816202145000002, "SHAPE_LEN": 0.124321145465 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -5.35072900099999, 35.909002998 ], [ -5.34252117599999, 35.873038039999983 ], [ -5.382034499999975, 35.912606499999981 ], [ -5.35072900099999, 35.909002998 ] ] ] } }, -{ "type": "Feature", "id": 936, "properties": { "NUTS_ID": "ES64", "STAT_LEVL_": 2, "SHAPE_AREA": 0.00076802296088300005, "SHAPE_LEN": 0.13020653038499999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.950587, 35.318417999000019 ], [ -2.92736, 35.274264 ], [ -2.970093500000019, 35.289367500000026 ], [ -2.950587, 35.318417999000019 ] ] ] } }, -{ "type": "Feature", "id": 939, "properties": { "NUTS_ID": "ES70", "STAT_LEVL_": 2, "SHAPE_AREA": 0.58145106276699998, "SHAPE_LEN": 9.1537334656899993 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -16.3605925, 28.379459499 ], [ -16.640173, 28.00498799799999 ], [ -16.924217, 28.350006 ], [ -16.134222, 28.5812585 ], [ -16.3605925, 28.379459499 ] ] ], [ [ [ -15.424459500000012, 27.807855497999981 ], [ -15.600111, 27.734939498000017 ], [ -15.8329905, 27.90972349899999 ], [ -15.709276000999978, 28.16573899799999 ], [ -15.4035465, 28.171691999000018 ], [ -15.424459500000012, 27.807855497999981 ] ] ], [ [ [ -14.2242965, 28.162038998000014 ], [ -14.492716, 28.083705999000017 ], [ -14.226619, 28.21153449799999 ], [ -14.016622499999983, 28.714993998000011 ], [ -13.877083500000026, 28.752040998999973 ], [ -13.922949, 28.247462998 ], [ -14.2242965, 28.162038998000014 ] ] ], [ [ [ -13.482365500000014, 28.999332498 ], [ -13.8541985, 28.862073998000028 ], [ -13.756207500000016, 29.0776095 ], [ -13.470518, 29.238542498000015 ], [ -13.464197, 29.12962349899999 ], [ -13.482365500000014, 28.999332498 ] ] ], [ [ [ -17.7602195, 28.569320999000013 ], [ -17.842235500000015, 28.452651499000012 ], [ -17.9487345, 28.840764997 ], [ -17.777729, 28.839669997999977 ], [ -17.7602195, 28.569320999000013 ] ] ], [ [ [ -17.099160500999972, 28.0943145 ], [ -17.199426500000015, 28.023731498000018 ], [ -17.3492185, 28.099218498000027 ], [ -17.318047, 28.204323999 ], [ -17.118093499999986, 28.149373998999977 ], [ -17.099160500999972, 28.0943145 ] ] ], [ [ [ -17.883365500000025, 27.80445449699999 ], [ -17.979040000999987, 27.640519998 ], [ -18.158359500000017, 27.712901499999987 ], [ -18.131494, 27.771581498999979 ], [ -18.036621001000015, 27.762228 ], [ -17.958796, 27.841646 ], [ -17.883365500000025, 27.80445449699999 ] ] ] ] } }, -{ "type": "Feature", "id": 949, "properties": { "NUTS_ID": "FI19", "STAT_LEVL_": 2, "SHAPE_AREA": 10.6142655598, "SHAPE_LEN": 16.762477543199999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.927715464000016, 63.82609472199999 ], [ 22.989051, 63.788022 ], [ 23.027271499999983, 63.788767501 ], [ 23.744085000999974, 63.675444001000017 ], [ 23.422409500000015, 63.616021 ], [ 23.696989499999972, 63.380327 ], [ 24.359008, 63.116434501000015 ], [ 24.772885499999973, 63.13336849699999 ], [ 24.772926499999983, 63.358689500000025 ], [ 25.036322499999983, 63.45807800099999 ], [ 26.138652, 63.457592 ], [ 26.039845, 62.936113501000023 ], [ 26.709129500000017, 62.452948998000011 ], [ 26.220722, 62.118562497000028 ], [ 26.53375, 61.691326996999976 ], [ 26.315036, 61.608448497999973 ], [ 25.921634, 61.78734750000001 ], [ 24.970471498999984, 61.45070549799999 ], [ 24.913933499999985, 61.324883 ], [ 23.195350500000018, 61.001223 ], [ 22.968488499999978, 61.043258 ], [ 21.419929500000023, 61.047442998 ], [ 21.7037775, 61.557694501000014 ], [ 21.27957, 61.993263 ], [ 21.366348, 62.370907 ], [ 21.08101, 62.6323175 ], [ 21.483848500000022, 62.97023950099998 ], [ 21.455967718000011, 63.012294849999989 ], [ 21.3373805, 63.0409545 ], [ 22.137469558000021, 63.261305887999981 ], [ 22.159774, 63.255317 ], [ 22.224766719, 63.291334242 ], [ 22.393028500000014, 63.333281500999988 ], [ 22.324308499999972, 63.581827499999974 ], [ 22.8713565, 63.8339785 ], [ 22.927715464000016, 63.82609472199999 ] ] ] } }, -{ "type": "Feature", "id": 955, "properties": { "NUTS_ID": "FI1B", "STAT_LEVL_": 2, "SHAPE_AREA": 1.57447489412, "SHAPE_LEN": 8.9623940527800006 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.208359499999972, 60.7579925 ], [ 26.539152999, 60.594937500000015 ], [ 26.453932, 60.487652500000024 ], [ 26.009723687000019, 60.316479188000017 ], [ 26.010455, 60.321357 ], [ 25.993759220000015, 60.337336162999975 ], [ 25.9122875, 60.366004498 ], [ 25.863847, 60.323478497999986 ], [ 25.936341, 60.26062 ], [ 25.7869765, 60.237285997000015 ], [ 25.627897500000017, 60.326478 ], [ 25.7202395, 60.339234498 ], [ 25.6696885, 60.383327501 ], [ 25.432495500000016, 60.222521 ], [ 25.216344105000019, 60.21141365599999 ], [ 24.575224, 60.178468501 ], [ 24.202054, 60.027420999000014 ], [ 23.839481499999977, 60.018403001000024 ], [ 23.956796, 60.004310997 ], [ 23.692564563000019, 59.972044676999985 ], [ 23.727499, 59.943315996000024 ], [ 23.3554325, 59.917364998999972 ], [ 23.186451499999976, 59.827804001 ], [ 22.932191499999988, 59.824022 ], [ 23.118828807999989, 60.000895125999989 ], [ 23.028183, 60.101486500000021 ], [ 23.64895, 60.201563997999983 ], [ 23.900492499999984, 60.649758500000019 ], [ 25.192922, 60.724738499000011 ], [ 25.110965998999973, 60.818584500999975 ], [ 26.208359499999972, 60.7579925 ] ] ] } }, -{ "type": "Feature", "id": 957, "properties": { "NUTS_ID": "FI1C", "STAT_LEVL_": 2, "SHAPE_AREA": 5.4280936690199999, "SHAPE_LEN": 20.848036445599998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.483068, 61.32283449900001 ], [ 26.513659500000017, 61.274324001000025 ], [ 26.929526, 61.210034501 ], [ 27.205819500000018, 61.162468000999979 ], [ 29.559279, 61.722068001000025 ], [ 30.143966499999976, 61.85223799900001 ], [ 27.991279500000019, 60.668979 ], [ 27.797273500000017, 60.54534300099999 ], [ 26.453932, 60.487652500000024 ], [ 26.539152999, 60.594937500000015 ], [ 26.208359499999972, 60.7579925 ], [ 25.110965998999973, 60.818584500999975 ], [ 25.192922, 60.724738499000011 ], [ 23.900492499999984, 60.649758500000019 ], [ 23.64895, 60.201563997999983 ], [ 23.028183, 60.101486500000021 ], [ 22.87021, 60.1982375 ], [ 23.079409, 60.375627 ], [ 22.454013998999983, 60.265965000999984 ], [ 22.604136499999981, 60.373881499999982 ], [ 22.50068, 60.418537497999978 ], [ 22.295877999000027, 60.384289497999987 ], [ 22.253048428, 60.411757148999982 ], [ 22.247403, 60.419651498 ], [ 22.24190927799998, 60.418904734000023 ], [ 21.846205, 60.63480049899999 ], [ 21.585519498999986, 60.491007001000014 ], [ 21.572621, 60.500252499 ], [ 21.592718, 60.517643501 ], [ 21.5593745, 60.559245001000022 ], [ 21.462105, 60.581443501000024 ], [ 21.1746465, 60.87034399700002 ], [ 21.419929500000023, 61.047442998 ], [ 22.968488499999978, 61.043258 ], [ 23.195350500000018, 61.001223 ], [ 24.913933499999985, 61.324883 ], [ 24.970471498999984, 61.45070549799999 ], [ 25.921634, 61.78734750000001 ], [ 26.315036, 61.608448497999973 ], [ 26.243660001000023, 61.446450001000017 ], [ 26.483068, 61.32283449900001 ] ] ] } }, -{ "type": "Feature", "id": 963, "properties": { "NUTS_ID": "FI1D", "STAT_LEVL_": 2, "SHAPE_AREA": 43.6803386383, "SHAPE_LEN": 45.300125503300002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.8007675, 68.869286000999978 ], [ 28.4339175, 68.539672 ], [ 28.6461425, 68.196304500999986 ], [ 30.0170405, 67.673556500000018 ], [ 29.033642, 66.942135001 ], [ 29.572938500000021, 66.432856 ], [ 30.13848, 65.668682000999979 ], [ 29.7547315, 65.497369498000012 ], [ 29.64493, 64.866495499999985 ], [ 30.086534500000027, 64.773990498999979 ], [ 30.044892, 64.402029997999989 ], [ 30.553427999, 64.132247999000015 ], [ 29.971917, 63.757165499999985 ], [ 31.586729, 62.90870200099999 ], [ 30.143966499999976, 61.85223799900001 ], [ 29.559279, 61.722068001000025 ], [ 27.205819500000018, 61.162468000999979 ], [ 26.929526, 61.210034501 ], [ 26.513659500000017, 61.274324001000025 ], [ 26.483068, 61.32283449900001 ], [ 26.243660001000023, 61.446450001000017 ], [ 26.315036, 61.608448497999973 ], [ 26.53375, 61.691326996999976 ], [ 26.220722, 62.118562497000028 ], [ 26.709129500000017, 62.452948998000011 ], [ 26.039845, 62.936113501000023 ], [ 26.138652, 63.457592 ], [ 25.036322499999983, 63.45807800099999 ], [ 24.772926499999983, 63.358689500000025 ], [ 24.772885499999973, 63.13336849699999 ], [ 24.359008, 63.116434501000015 ], [ 23.696989499999972, 63.380327 ], [ 23.422409500000015, 63.616021 ], [ 23.744085000999974, 63.675444001000017 ], [ 23.027271499999983, 63.788767501 ], [ 23.61733300100002, 64.048771998 ], [ 24.539910500000019, 64.814548496999976 ], [ 25.487671, 64.9614365 ], [ 25.366445, 65.427499499000021 ], [ 25.084607499000015, 65.588949496999987 ], [ 24.8877245, 65.665782 ], [ 24.155129, 65.816027 ], [ 23.6455995, 66.3014085 ], [ 23.995160500999987, 66.819708999 ], [ 23.3940235, 67.485820999 ], [ 23.652348999000026, 67.958793001 ], [ 21.888943000999973, 68.5843835 ], [ 20.548636499999986, 69.059968501000014 ], [ 21.2788215, 69.311883998999974 ], [ 21.9836115, 69.072893500000021 ], [ 22.374526, 68.716667 ], [ 24.903199500000028, 68.554591 ], [ 25.777502500000026, 69.018279001 ], [ 25.702101, 69.253661501000011 ], [ 25.950607, 69.6965505 ], [ 27.984522, 70.01396549899999 ], [ 29.336974, 69.478310500000021 ], [ 28.8057925, 69.111147 ], [ 28.92968, 69.051905 ], [ 28.415766500000018, 68.915452501 ], [ 28.8007675, 68.869286000999978 ] ] ] } }, -{ "type": "Feature", "id": 972, "properties": { "NUTS_ID": "FI20", "STAT_LEVL_": 2, "SHAPE_AREA": 0.144539654431, "SHAPE_LEN": 1.72365985858 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.916036500000018, 60.422706501999983 ], [ 20.2753515, 60.28527 ], [ 20.168312500000013, 60.17514399800001 ], [ 20.043062, 60.102843001 ], [ 19.980941499999972, 60.104172 ], [ 19.9577145, 60.060943501 ], [ 19.513948, 60.178337 ], [ 19.916036500000018, 60.422706501999983 ] ] ] } }, -{ "type": "Feature", "id": 976, "properties": { "NUTS_ID": "FR10", "STAT_LEVL_": 2, "SHAPE_AREA": 1.46444370405, "SHAPE_LEN": 5.2383928090699996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.4851835, 48.851910498999985 ], [ 3.557419164, 48.616713788000027 ], [ 3.414788999, 48.390268499 ], [ 3.049454, 48.360027499000012 ], [ 2.936316, 48.163391499999989 ], [ 2.476016500000014, 48.1296365 ], [ 2.402663, 48.3207175 ], [ 1.99409, 48.286584 ], [ 1.9221465, 48.457599499000025 ], [ 1.501526500000011, 48.941051997999978 ], [ 1.608799, 49.077894 ], [ 1.704359, 49.232196997000017 ], [ 2.5905285, 49.079653999000016 ], [ 3.07188, 49.117553500999975 ], [ 3.4851835, 48.851910498999985 ] ] ] } }, -{ "type": "Feature", "id": 986, "properties": { "NUTS_ID": "FR21", "STAT_LEVL_": 2, "SHAPE_AREA": 3.1271931257, "SHAPE_LEN": 9.1080439492800007 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.969431, 49.801825999000016 ], [ 5.153738499999974, 49.717926 ], [ 5.393511, 49.617111 ], [ 5.107566500000019, 49.584689498999978 ], [ 4.950990499999989, 49.23686749699999 ], [ 4.9884305, 48.684422000999973 ], [ 5.470055, 48.420926499000018 ], [ 5.8847235, 47.92604649899999 ], [ 5.37408, 47.604537999 ], [ 4.958992, 47.761870499 ], [ 4.704233, 48.020234999000024 ], [ 4.293421500000022, 47.92567349699999 ], [ 3.914676, 47.975023 ], [ 3.414788999, 48.390268499 ], [ 3.557419164, 48.616713788000027 ], [ 3.4851835, 48.851910498999985 ], [ 3.678962499000022, 49.01829399899998 ], [ 3.585201500999972, 49.038866998 ], [ 3.643940499999985, 49.312713497 ], [ 4.0479745, 49.405644000999985 ], [ 4.233133, 49.957828498000026 ], [ 4.432494, 49.941615996999985 ], [ 4.796697, 50.148677998999972 ], [ 4.896794, 50.137420498999973 ], [ 4.793194, 49.98199900100002 ], [ 4.851578, 49.793255000999977 ], [ 4.969431, 49.801825999000016 ] ] ] } }, -{ "type": "Feature", "id": 991, "properties": { "NUTS_ID": "FR22", "STAT_LEVL_": 2, "SHAPE_AREA": 2.42706245274, "SHAPE_LEN": 7.5659416253899998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.140853, 49.978759997 ], [ 4.233133, 49.957828498000026 ], [ 4.0479745, 49.405644000999985 ], [ 3.643940499999985, 49.312713497 ], [ 3.585201500999972, 49.038866998 ], [ 3.678962499000022, 49.01829399899998 ], [ 3.4851835, 48.851910498999985 ], [ 3.07188, 49.117553500999975 ], [ 2.5905285, 49.079653999000016 ], [ 1.704359, 49.232196997000017 ], [ 1.7139305, 49.409224999 ], [ 1.783834, 49.758309499 ], [ 1.379698, 50.06500999799999 ], [ 1.641539500000022, 50.352149997000026 ], [ 3.090252, 50.053740499000014 ], [ 3.1727045, 50.011996497999974 ], [ 4.140853, 49.978759997 ] ] ] } }, -{ "type": "Feature", "id": 995, "properties": { "NUTS_ID": "FR23", "STAT_LEVL_": 2, "SHAPE_AREA": 1.51357029991, "SHAPE_LEN": 4.9154017226500004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.704359, 49.232196997000017 ], [ 1.608799, 49.077894 ], [ 1.501526500000011, 48.941051997999978 ], [ 0.814824499999986, 48.670163499000012 ], [ 0.412810499999978, 48.950626499 ], [ 0.297224500000027, 49.429863001 ], [ 0.3389785, 49.4409255 ], [ 0.065609, 49.512576998999975 ], [ 0.192298, 49.706962498999985 ], [ 1.379698, 50.06500999799999 ], [ 1.783834, 49.758309499 ], [ 1.7139305, 49.409224999 ], [ 1.704359, 49.232196997000017 ] ] ] } }, -{ "type": "Feature", "id": 998, "properties": { "NUTS_ID": "FR24", "STAT_LEVL_": 2, "SHAPE_AREA": 4.8955427252600003, "SHAPE_LEN": 9.6271320915699992 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.936316, 48.163391499999989 ], [ 3.12857, 47.983377001 ], [ 2.8519905, 47.757863 ], [ 2.976535500000011, 47.569424497999989 ], [ 2.874630500000023, 47.520424999 ], [ 3.074774499, 47.029995000999975 ], [ 3.032063, 46.794909501 ], [ 2.28104350000001, 46.420403497 ], [ 2.167784499999982, 46.424068998999985 ], [ 1.4151855, 46.347215001 ], [ 1.177279, 46.383947998 ], [ 0.867469, 46.748216499000023 ], [ 0.05383, 47.163733499999978 ], [ 0.230000500000017, 47.608397498999977 ], [ 0.614432500000021, 47.694215497000016 ], [ 0.841217498999981, 48.103059501000018 ], [ 0.797658499000022, 48.19445500099999 ], [ 0.814824499999986, 48.670163499000012 ], [ 1.501526500000011, 48.941051997999978 ], [ 1.9221465, 48.457599499000025 ], [ 1.99409, 48.286584 ], [ 2.402663, 48.3207175 ], [ 2.476016500000014, 48.1296365 ], [ 2.936316, 48.163391499999989 ] ] ] } }, -{ "type": "Feature", "id": 1005, "properties": { "NUTS_ID": "FR25", "STAT_LEVL_": 2, "SHAPE_AREA": 2.1604044366599999, "SHAPE_LEN": 7.9769272330999996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.297224500000027, 49.429863001 ], [ 0.412810499999978, 48.950626499 ], [ 0.814824499999986, 48.670163499000012 ], [ 0.797658499000022, 48.19445500099999 ], [ 0.35289, 48.459688 ], [ -0.054527, 48.3820045 ], [ -0.234124, 48.561847500999988 ], [ -0.86036, 48.501458499000023 ], [ -1.070164499999976, 48.508492 ], [ -1.42794, 48.461915001000023 ], [ -1.571089500000028, 48.626442 ], [ -1.391047, 48.644653496999979 ], [ -1.942384, 49.725959999 ], [ -1.266492500000027, 49.69559849699999 ], [ -1.3077705, 49.545719 ], [ -1.11962, 49.35556800099999 ], [ 0.297224500000027, 49.429863001 ] ] ] } }, -{ "type": "Feature", "id": 1009, "properties": { "NUTS_ID": "FR26", "STAT_LEVL_": 2, "SHAPE_AREA": 3.7043378695800002, "SHAPE_LEN": 9.0217169556400005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.37408, 47.604537999 ], [ 5.477542, 47.60871849900002 ], [ 5.375406999, 47.460167499000022 ], [ 5.518537499999979, 47.304183998999974 ], [ 5.255232499999977, 46.979887498999972 ], [ 5.440604, 46.637912 ], [ 5.310563499000011, 46.446769999000026 ], [ 4.953853998999989, 46.513422999 ], [ 4.780208500000015, 46.176675999 ], [ 4.388074500000016, 46.219790499 ], [ 3.899538499000016, 46.275907999000026 ], [ 3.998868500000015, 46.46486699899998 ], [ 3.629422499999976, 46.749456497999972 ], [ 3.032063, 46.794909501 ], [ 3.074774499, 47.029995000999975 ], [ 2.874630500000023, 47.520424999 ], [ 2.976535500000011, 47.569424497999989 ], [ 2.8519905, 47.757863 ], [ 3.12857, 47.983377001 ], [ 2.936316, 48.163391499999989 ], [ 3.049454, 48.360027499000012 ], [ 3.414788999, 48.390268499 ], [ 3.914676, 47.975023 ], [ 4.293421500000022, 47.92567349699999 ], [ 4.704233, 48.020234999000024 ], [ 4.958992, 47.761870499 ], [ 5.37408, 47.604537999 ] ] ] } }, -{ "type": "Feature", "id": 1015, "properties": { "NUTS_ID": "FR30", "STAT_LEVL_": 2, "SHAPE_AREA": 1.5419431428799999, "SHAPE_LEN": 6.4342402718200002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.863276, 50.708343496999987 ], [ 3.0187085, 50.773532999 ], [ 3.098481, 50.779019 ], [ 3.176996, 50.756164497999976 ], [ 3.245294, 50.713009498000019 ], [ 3.286492, 50.52756899799999 ], [ 3.615081499999974, 50.490399001000014 ], [ 3.65551, 50.461735498999985 ], [ 3.710389, 50.303165499999977 ], [ 4.027774500000021, 50.358330498999976 ], [ 4.140853, 49.978759997 ], [ 3.1727045, 50.011996497999974 ], [ 3.090252, 50.053740499000014 ], [ 1.641539500000022, 50.352149997000026 ], [ 1.580953, 50.8695525 ], [ 2.067705, 51.00649999699999 ], [ 2.546011, 51.089381998000022 ], [ 2.607036, 50.91268949900001 ], [ 2.863276, 50.708343496999987 ] ] ] } }, -{ "type": "Feature", "id": 1019, "properties": { "NUTS_ID": "FR41", "STAT_LEVL_": 2, "SHAPE_AREA": 2.8873361388399998, "SHAPE_LEN": 8.2960198920299995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.818117, 49.5463105 ], [ 5.893386, 49.496944498 ], [ 6.367107499999975, 49.469507001000011 ], [ 6.556986, 49.419208498999978 ], [ 6.723465499999975, 49.218828998999982 ], [ 7.101069, 49.155998 ], [ 7.36875550000002, 49.16145799899999 ], [ 7.635651, 49.053950499999985 ], [ 7.536287500000014, 48.932412996999972 ], [ 7.067510500000026, 49.066366501 ], [ 6.954672, 48.893890498000019 ], [ 7.30645, 48.769112498000027 ], [ 7.079356, 48.536418500000025 ], [ 7.123163499999976, 48.513587998999981 ], [ 7.198287, 48.310471499000016 ], [ 6.846175500000015, 47.822942496999985 ], [ 6.8235335, 47.813051 ], [ 6.1470185, 48.01552049899999 ], [ 5.8847235, 47.92604649899999 ], [ 5.470055, 48.420926499000018 ], [ 4.9884305, 48.684422000999973 ], [ 4.950990499999989, 49.23686749699999 ], [ 5.107566500000019, 49.584689498999978 ], [ 5.393511, 49.617111 ], [ 5.470882999000025, 49.49723799899999 ], [ 5.734555999, 49.545690501000024 ], [ 5.818117, 49.5463105 ] ] ] } }, -{ "type": "Feature", "id": 1024, "properties": { "NUTS_ID": "FR42", "STAT_LEVL_": 2, "SHAPE_AREA": 1.05138959987, "SHAPE_LEN": 5.59639523334 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.635651, 49.053950499999985 ], [ 7.910654500000021, 49.045163499000012 ], [ 8.068407499999978, 48.999316497999985 ], [ 8.232632998999975, 48.966571500999976 ], [ 7.9596305, 48.718580998999983 ], [ 7.680713, 48.257266996999988 ], [ 7.5779195, 48.121391999000025 ], [ 7.577291, 48.115654999000014 ], [ 7.545990500000016, 47.743573998999977 ], [ 7.589039, 47.589877999 ], [ 7.5551595, 47.56456399699999 ], [ 7.510905499999978, 47.502582497999981 ], [ 7.445019, 47.46172349699998 ], [ 7.42113949899999, 47.446387999000024 ], [ 7.380894, 47.431892499000014 ], [ 7.326466, 47.439853500000027 ], [ 7.130353, 47.503040499 ], [ 6.846175500000015, 47.822942496999985 ], [ 7.198287, 48.310471499000016 ], [ 7.123163499999976, 48.513587998999981 ], [ 7.079356, 48.536418500000025 ], [ 7.30645, 48.769112498000027 ], [ 6.954672, 48.893890498000019 ], [ 7.067510500000026, 49.066366501 ], [ 7.536287500000014, 48.932412996999972 ], [ 7.635651, 49.053950499999985 ] ] ] } }, -{ "type": "Feature", "id": 1027, "properties": { "NUTS_ID": "FR43", "STAT_LEVL_": 2, "SHAPE_AREA": 1.9444617739700001, "SHAPE_LEN": 6.28624551483 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.846175500000015, 47.822942496999985 ], [ 7.130353, 47.503040499 ], [ 6.939186, 47.433704499999976 ], [ 6.879806, 47.352439998000023 ], [ 7.061636, 47.34373449899999 ], [ 6.858914, 47.165294499000026 ], [ 6.460011, 46.851551498999982 ], [ 6.138106, 46.557666997000013 ], [ 6.064003, 46.416228997000019 ], [ 5.4736565, 46.264284001000021 ], [ 5.310563499000011, 46.446769999000026 ], [ 5.440604, 46.637912 ], [ 5.255232499999977, 46.979887498999972 ], [ 5.518537499999979, 47.304183998999974 ], [ 5.375406999, 47.460167499000022 ], [ 5.477542, 47.60871849900002 ], [ 5.37408, 47.604537999 ], [ 5.8847235, 47.92604649899999 ], [ 6.1470185, 48.01552049899999 ], [ 6.8235335, 47.813051 ], [ 6.846175500000015, 47.822942496999985 ] ] ] } }, -{ "type": "Feature", "id": 1033, "properties": { "NUTS_ID": "FR51", "STAT_LEVL_": 2, "SHAPE_AREA": 3.8763044061, "SHAPE_LEN": 10.085981059 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.797658499000022, 48.19445500099999 ], [ 0.841217498999981, 48.103059501000018 ], [ 0.614432500000021, 47.694215497000016 ], [ 0.230000500000017, 47.608397498999977 ], [ 0.05383, 47.163733499999978 ], [ -0.102116, 47.064799998000012 ], [ -0.891964, 46.975820499 ], [ -0.537795001, 46.386463999 ], [ -0.7504715, 46.304254499000024 ], [ -1.129406, 46.310271999 ], [ -1.8123445, 46.49341949799998 ], [ -2.141985, 46.81897349799999 ], [ -1.980413, 47.028907999000012 ], [ -2.547108001000026, 47.292373499 ], [ -2.458493, 47.448119999000028 ], [ -2.097034, 47.63135649899999 ], [ -1.245885, 47.776717498999972 ], [ -1.238248, 47.809992497 ], [ -1.015823501, 48.003285999000013 ], [ -1.070164499999976, 48.508492 ], [ -0.86036, 48.501458499000023 ], [ -0.234124, 48.561847500999988 ], [ -0.054527, 48.3820045 ], [ 0.35289, 48.459688 ], [ 0.797658499000022, 48.19445500099999 ] ] ] } }, -{ "type": "Feature", "id": 1037, "properties": { "NUTS_ID": "HU10", "STAT_LEVL_": 2, "SHAPE_AREA": 0.86330293364900001, "SHAPE_LEN": 4.1065573863199996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.666329, 47.588550000999987 ], [ 19.990462499999978, 47.346628001 ], [ 20.094639, 47.0074265 ], [ 18.965907500000014, 47.028965 ], [ 18.688433499999974, 47.577067499 ], [ 18.848478, 47.818228001000023 ], [ 18.7548155, 47.975082499 ], [ 18.928392, 48.056832499 ], [ 19.086134500000014, 47.838170499 ], [ 19.570937, 47.734900001000028 ], [ 19.666329, 47.588550000999987 ] ] ] } }, -{ "type": "Feature", "id": 1041, "properties": { "NUTS_ID": "HU21", "STAT_LEVL_": 2, "SHAPE_AREA": 1.37681274166, "SHAPE_LEN": 5.9550441362599997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.965907500000014, 47.028965 ], [ 18.925097, 46.85716850099999 ], [ 18.636275, 46.687217498999985 ], [ 18.210897499999987, 46.77816150000001 ], [ 18.205248499999982, 46.971633000999987 ], [ 17.419067499999983, 46.750656497000023 ], [ 17.074528499999985, 47.04871349699999 ], [ 17.1723915, 47.432483998 ], [ 17.737528, 47.47290749699999 ], [ 17.7652275, 47.27287850099998 ], [ 17.883888, 47.389586998000027 ], [ 17.893923, 47.739456999000026 ], [ 18.848478, 47.818228001000023 ], [ 18.688433499999974, 47.577067499 ], [ 18.965907500000014, 47.028965 ] ] ] } }, -{ "type": "Feature", "id": 1045, "properties": { "NUTS_ID": "HU22", "STAT_LEVL_": 2, "SHAPE_AREA": 1.26060733998, "SHAPE_LEN": 7.0741646506400002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.893923, 47.739456999000026 ], [ 17.883888, 47.389586998000027 ], [ 17.7652275, 47.27287850099998 ], [ 17.737528, 47.47290749699999 ], [ 17.1723915, 47.432483998 ], [ 17.074528499999985, 47.04871349699999 ], [ 17.419067499999983, 46.750656497000023 ], [ 17.2214945, 46.671697499 ], [ 17.187541, 46.429071997999984 ], [ 16.8760435, 46.320602496999982 ], [ 16.854754999000022, 46.350440999 ], [ 16.596805, 46.475902498999972 ], [ 16.3707935, 46.722243499 ], [ 16.113849, 46.869067998999981 ], [ 16.508267499999988, 47.001255999000023 ], [ 16.4337615, 47.352918499999987 ], [ 16.64622, 47.446597 ], [ 16.652076, 47.6229035 ], [ 16.421846, 47.664704498999981 ], [ 17.093074, 47.708236 ], [ 17.1607975, 48.006656501 ], [ 17.247427500000015, 48.012008998999988 ], [ 17.705436500000019, 47.758992498999987 ], [ 17.893923, 47.739456999000026 ] ] ] } }, -{ "type": "Feature", "id": 1049, "properties": { "NUTS_ID": "HU23", "STAT_LEVL_": 2, "SHAPE_AREA": 1.6763555730499999, "SHAPE_LEN": 5.7023003946699999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.925097, 46.85716850099999 ], [ 19.006243499999982, 46.704923496999982 ], [ 18.802291, 46.108764999000016 ], [ 18.821306, 45.914382997000018 ], [ 18.446884, 45.737048997999977 ], [ 17.911642, 45.790950996999982 ], [ 17.651499, 45.847835499999974 ], [ 17.294325, 45.988544500999978 ], [ 16.8760435, 46.320602496999982 ], [ 17.187541, 46.429071997999984 ], [ 17.2214945, 46.671697499 ], [ 17.419067499999983, 46.750656497000023 ], [ 18.205248499999982, 46.971633000999987 ], [ 18.210897499999987, 46.77816150000001 ], [ 18.636275, 46.687217498999985 ], [ 18.925097, 46.85716850099999 ] ] ] } }, -{ "type": "Feature", "id": 1054, "properties": { "NUTS_ID": "HU31", "STAT_LEVL_": 2, "SHAPE_AREA": 1.57920442329, "SHAPE_LEN": 7.1439435300999996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.121077500000013, 48.378311499 ], [ 21.122180500000013, 47.96182749899998 ], [ 20.8279715, 47.659018496999977 ], [ 20.771698, 47.654476500999976 ], [ 20.3941565, 47.420463498 ], [ 19.993662500000028, 47.672739501000024 ], [ 19.666329, 47.588550000999987 ], [ 19.570937, 47.734900001000028 ], [ 19.086134500000014, 47.838170499 ], [ 18.928392, 48.056832499 ], [ 19.0143225, 48.077736499000025 ], [ 20.051879, 48.16770399699999 ], [ 20.463937, 48.463967 ], [ 21.440056, 48.585232999000027 ], [ 21.721957, 48.351050499 ], [ 22.121077500000013, 48.378311499 ] ] ] } }, -{ "type": "Feature", "id": 1058, "properties": { "NUTS_ID": "HU32", "STAT_LEVL_": 2, "SHAPE_AREA": 2.0871446893500001, "SHAPE_LEN": 8.2411672073099993 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.896270500000014, 47.954120500999977 ], [ 22.1808375, 47.600094499000022 ], [ 22.12832, 47.598089496999989 ], [ 21.658955, 47.022131498000022 ], [ 21.2478405, 47.006699998999977 ], [ 21.300893499999972, 47.150679001000015 ], [ 20.9920975, 47.23228799899999 ], [ 20.4242655, 46.803470998000023 ], [ 20.061163, 46.80639099699999 ], [ 20.094639, 47.0074265 ], [ 19.990462499999978, 47.346628001 ], [ 19.666329, 47.588550000999987 ], [ 19.993662500000028, 47.672739501000024 ], [ 20.3941565, 47.420463498 ], [ 20.771698, 47.654476500999976 ], [ 20.8279715, 47.659018496999977 ], [ 21.122180500000013, 47.96182749899998 ], [ 22.121077500000013, 48.378311499 ], [ 22.155306, 48.403396499 ], [ 22.896270500000014, 47.954120500999977 ] ] ] } }, -{ "type": "Feature", "id": 1062, "properties": { "NUTS_ID": "HU33", "STAT_LEVL_": 2, "SHAPE_AREA": 2.1759118862800002, "SHAPE_LEN": 7.8165427205800002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.658955, 47.022131498000022 ], [ 21.441398, 46.651467 ], [ 21.103170499999976, 46.262590497000019 ], [ 20.7756, 46.275909999000021 ], [ 20.705303500000014, 46.160937499 ], [ 20.264296, 46.1263735 ], [ 19.86539, 46.150334499 ], [ 19.698099, 46.187930999 ], [ 19.3027095, 45.991550500000017 ], [ 18.889734, 45.921180497000023 ], [ 18.821306, 45.914382997000018 ], [ 18.802291, 46.108764999000016 ], [ 19.006243499999982, 46.704923496999982 ], [ 18.925097, 46.85716850099999 ], [ 18.965907500000014, 47.028965 ], [ 20.094639, 47.0074265 ], [ 20.061163, 46.80639099699999 ], [ 20.4242655, 46.803470998000023 ], [ 20.9920975, 47.23228799899999 ], [ 21.300893499999972, 47.150679001000015 ], [ 21.2478405, 47.006699998999977 ], [ 21.658955, 47.022131498000022 ] ] ] } }, -{ "type": "Feature", "id": 1068, "properties": { "NUTS_ID": "IE01", "STAT_LEVL_": 2, "SHAPE_AREA": 4.3523965868300003, "SHAPE_LEN": 17.462404901799999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -8.177718, 54.464973500999974 ], [ -7.565956, 54.126514499 ], [ -7.0286355, 54.421306497999979 ], [ -6.623778500000014, 54.036548497000013 ], [ -6.2680155, 54.102337 ], [ -6.1031835, 53.99999950099999 ], [ -6.3811025, 54.012704 ], [ -6.247098, 53.722454500000026 ], [ -6.749452500000018, 53.913742997999975 ], [ -7.343828499999972, 53.799062498000012 ], [ -7.063349, 53.468781501000024 ], [ -6.939413, 52.88005449799999 ], [ -7.674081, 52.781294 ], [ -7.674682691999976, 52.781863515999987 ], [ -8.081461029000025, 53.166883229 ], [ -8.359738204999985, 52.971357996999984 ], [ -9.008489770999972, 53.140603919 ], [ -9.009308499999975, 53.140817498999979 ], [ -9.009085012000014, 53.141198864999978 ], [ -8.933212, 53.270670997000025 ], [ -9.63143794299998, 53.296942788000024 ], [ -9.630072499999983, 53.297348496999973 ], [ -9.63144528700002, 53.297345429000018 ], [ -10.179155499999979, 53.406988999000021 ], [ -10.189941, 53.556088500999977 ], [ -9.80073826, 53.608912261 ], [ -9.900522, 53.764440997 ], [ -9.546066, 53.88420849900001 ], [ -10.070641500000022, 54.27627250099999 ], [ -9.132258499999978, 54.162360498 ], [ -8.508256, 54.216985497999985 ], [ -8.134833, 54.603353501000015 ], [ -8.7886565, 54.688915996999981 ], [ -8.281798499999979, 55.158847998 ], [ -7.339527, 55.374958 ], [ -6.924876, 55.233694500000013 ], [ -7.256068500000026, 55.067034998 ], [ -7.534506, 54.74713900099999 ], [ -7.921372, 54.696544499000026 ], [ -7.703411501, 54.608287999000027 ], [ -8.177718, 54.464973500999974 ] ] ] } }, -{ "type": "Feature", "id": 1070, "properties": { "NUTS_ID": "ITC2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.38508475661300001, "SHAPE_LEN": 2.6806923866800001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.86407650000001, 45.916750499999978 ], [ 7.936649, 45.724340499999983 ], [ 7.895811, 45.590028 ], [ 7.104723, 45.468454499000018 ], [ 6.8023685, 45.778562 ], [ 7.044886, 45.922412999000016 ], [ 7.86407650000001, 45.916750499999978 ] ] ] } }, -{ "type": "Feature", "id": 1072, "properties": { "NUTS_ID": "ITC3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.59362874578299996, "SHAPE_LEN": 5.9188564593599997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.686725500000023, 44.365921999000022 ], [ 10.018769500000019, 44.044535998000015 ], [ 9.511344, 44.216675497999972 ], [ 8.63301, 44.379803498 ], [ 8.135350999000025, 43.938940498000022 ], [ 7.529827, 43.784007997 ], [ 7.714236500000027, 44.061513499 ], [ 8.015629499999989, 44.110676499000022 ], [ 8.252819499, 44.528740501000016 ], [ 8.261596, 44.519424496999989 ], [ 8.576182, 44.509206001 ], [ 9.202995499999986, 44.613476499 ], [ 9.493363, 44.555858999 ], [ 9.4790595, 44.40924050000001 ], [ 9.686725500000023, 44.365921999000022 ] ] ] } }, -{ "type": "Feature", "id": 1077, "properties": { "NUTS_ID": "ITC4", "STAT_LEVL_": 2, "SHAPE_AREA": 2.7614940722400001, "SHAPE_LEN": 9.6008424673199997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.452801, 46.530682999000021 ], [ 10.622145499999988, 46.448101999000016 ], [ 10.515751500000022, 46.34322449699999 ], [ 10.502388, 45.830373 ], [ 10.840176499999984, 45.832758501 ], [ 10.631074, 45.609512500999983 ], [ 10.6546555, 45.415826998999989 ], [ 11.205502500000023, 45.109487499000011 ], [ 11.426765499999988, 44.950076 ], [ 11.246231500000022, 44.951427997 ], [ 10.887909499999978, 44.914265999 ], [ 10.504344, 44.922417999 ], [ 10.464030499999978, 44.937171501000023 ], [ 10.083503, 45.04395850100002 ], [ 9.8911015, 45.130898 ], [ 9.548684499999979, 45.132648499000027 ], [ 9.3246605, 44.69 ], [ 9.200074, 44.686099496999987 ], [ 8.887709, 45.059148999 ], [ 8.5477975, 45.168147497 ], [ 8.51356, 45.313278501000013 ], [ 8.8429155, 45.393841 ], [ 8.706896500000028, 45.558316 ], [ 8.593811, 45.828224998999985 ], [ 8.713936, 46.097271998999986 ], [ 8.912147, 45.830444999 ], [ 9.088803499999983, 45.896897001000013 ], [ 8.988276499999984, 45.972282498000027 ], [ 9.1593775, 46.169601 ], [ 9.248531500000013, 46.233768000999987 ], [ 9.714149500000019, 46.292708499000014 ], [ 10.2448745, 46.622091997999974 ], [ 10.452801, 46.530682999000021 ] ] ] } }, -{ "type": "Feature", "id": 1091, "properties": { "NUTS_ID": "ITF1", "STAT_LEVL_": 2, "SHAPE_AREA": 1.1910737036100001, "SHAPE_LEN": 4.6806817078299998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.779646999000022, 42.070021499 ], [ 14.485359, 41.759622998999987 ], [ 14.2297575, 41.877056497000012 ], [ 13.941038499, 41.68794399699999 ], [ 13.296299499999975, 41.948588500000028 ], [ 13.0305745, 42.115353 ], [ 13.1913805, 42.587491 ], [ 13.39403149899999, 42.591233999 ], [ 13.3577745, 42.694069997999975 ], [ 13.9157315, 42.894577 ], [ 14.1469065, 42.530596499000012 ], [ 14.253960499000016, 42.444798499 ], [ 14.779646999000022, 42.070021499 ] ] ] } }, -{ "type": "Feature", "id": 1096, "properties": { "NUTS_ID": "ITF2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.47183014395400003, "SHAPE_LEN": 3.2448607619200001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.138178499999981, 41.927007499000013 ], [ 14.934101, 41.619428998999979 ], [ 15.0076555, 41.486356999 ], [ 14.5051, 41.382461498 ], [ 14.382519, 41.443216499000016 ], [ 13.977928, 41.462454 ], [ 13.941038499, 41.68794399699999 ], [ 14.2297575, 41.877056497000012 ], [ 14.485359, 41.759622998999987 ], [ 14.779646999000022, 42.070021499 ], [ 15.138178499999981, 41.927007499000013 ] ] ] } }, -{ "type": "Feature", "id": 1099, "properties": { "NUTS_ID": "ITF3", "STAT_LEVL_": 2, "SHAPE_AREA": 1.43525192794, "SHAPE_LEN": 6.1603078757600001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.542921, 41.05582350100002 ], [ 15.335024499999975, 40.834843998 ], [ 15.8065315, 40.272222498000019 ], [ 15.644945499000016, 40.042790498999977 ], [ 15.356917, 39.999090997999986 ], [ 14.787251500000025, 40.666180498000017 ], [ 14.747420499999976, 40.67764649899999 ], [ 14.692414499999984, 40.634065998999972 ], [ 14.528490499999975, 40.607152498 ], [ 14.46862, 40.620201499000018 ], [ 14.324673, 40.569084998999983 ], [ 14.460677499999974, 40.742930500999989 ], [ 14.0321305, 40.898838997999974 ], [ 13.760795499999972, 41.223167997000019 ], [ 13.8737185, 41.338294001 ], [ 13.977928, 41.462454 ], [ 14.382519, 41.443216499000016 ], [ 14.5051, 41.382461498 ], [ 15.0076555, 41.486356999 ], [ 15.046827, 41.443310499 ], [ 15.149196500000016, 41.280412497999976 ], [ 15.542921, 41.05582350100002 ] ] ] } }, -{ "type": "Feature", "id": 1105, "properties": { "NUTS_ID": "ITF4", "STAT_LEVL_": 2, "SHAPE_AREA": 1.9638188166499999, "SHAPE_LEN": 9.5842599956000001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.867264, 40.397845499000027 ], [ 16.719678499, 40.481393500000024 ], [ 16.72499, 40.713814499000023 ], [ 16.2440985, 40.838008499000011 ], [ 16.202532, 40.917511 ], [ 15.870311, 41.139899999000022 ], [ 15.542921, 41.05582350100002 ], [ 15.149196500000016, 41.280412497999976 ], [ 15.046827, 41.443310499 ], [ 15.0076555, 41.486356999 ], [ 14.934101, 41.619428998999979 ], [ 15.138178499999981, 41.927007499000013 ], [ 16.17653150000001, 41.884789500000011 ], [ 15.89714, 41.603231999 ], [ 16.024738500000012, 41.425590499 ], [ 16.542302499000016, 41.229441 ], [ 17.388981, 40.89186349900001 ], [ 18.097453, 40.515377999 ], [ 18.517056, 40.135147999000026 ], [ 18.369068, 39.793742001 ], [ 18.047947500000021, 39.92847849899999 ], [ 17.763504499000021, 40.295507 ], [ 17.127098, 40.517620500000021 ], [ 16.867264, 40.397845499000027 ] ] ] } }, -{ "type": "Feature", "id": 1112, "properties": { "NUTS_ID": "ITF5", "STAT_LEVL_": 2, "SHAPE_AREA": 1.09753088693, "SHAPE_LEN": 4.5340961084 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.867264, 40.397845499000027 ], [ 16.644317, 40.119095999000024 ], [ 16.398881, 40.055399998999974 ], [ 16.337835499999983, 39.935806997999975 ], [ 15.75595850000002, 39.923496 ], [ 15.644945499000016, 40.042790498999977 ], [ 15.8065315, 40.272222498000019 ], [ 15.335024499999975, 40.834843998 ], [ 15.542921, 41.05582350100002 ], [ 15.870311, 41.139899999000022 ], [ 16.202532, 40.917511 ], [ 16.2440985, 40.838008499000011 ], [ 16.72499, 40.713814499000023 ], [ 16.719678499, 40.481393500000024 ], [ 16.867264, 40.397845499000027 ] ] ] } }, -{ "type": "Feature", "id": 1115, "properties": { "NUTS_ID": "ITF6", "STAT_LEVL_": 2, "SHAPE_AREA": 1.60604070436, "SHAPE_LEN": 7.0096335973499997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.5820845, 38.46979049700002 ], [ 16.0638095, 37.924418996999975 ], [ 15.678212, 37.954119498000011 ], [ 15.636063, 38.231473498000014 ], [ 15.652291742999978, 38.247265964 ], [ 15.687350835000018, 38.281382564000012 ], [ 15.918956, 38.50676149899999 ], [ 15.8481175, 38.658864498000014 ], [ 16.2137535, 38.810439998999982 ], [ 16.093153, 39.048742998000023 ], [ 15.75595850000002, 39.923496 ], [ 16.337835499999983, 39.935806997999975 ], [ 16.398881, 40.055399998999974 ], [ 16.644317, 40.119095999000024 ], [ 16.527955500000019, 39.668659500999979 ], [ 17.025064499999985, 39.483578498999975 ], [ 17.188881, 39.020471998 ], [ 16.890732, 38.92712849899999 ], [ 16.566985499999987, 38.765481998999974 ], [ 16.5820845, 38.46979049700002 ] ] ] } }, -{ "type": "Feature", "id": 1122, "properties": { "NUTS_ID": "ITG1", "STAT_LEVL_": 2, "SHAPE_AREA": 2.5704041635100001, "SHAPE_LEN": 8.4805904823600002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 15.572551, 38.234204998999985 ], [ 15.2580825, 37.807223997999984 ], [ 15.091499, 37.3577085 ], [ 15.315962500000012, 37.035012498000015 ], [ 15.116582, 36.674955999000019 ], [ 15.000358, 36.702847497999983 ], [ 14.493577, 36.78673349799999 ], [ 14.337594500000023, 37.001979999000014 ], [ 14.036207, 37.10602799899999 ], [ 12.896496, 37.577118498 ], [ 12.672787, 37.560080998999979 ], [ 12.4429295, 37.811051998999972 ], [ 12.561744499999975, 38.065561998000021 ], [ 12.731687, 38.180297499 ], [ 12.811005, 38.081515497999987 ], [ 12.9772625, 38.040205999000023 ], [ 13.36569350000002, 38.182289498999978 ], [ 13.7438295, 37.97024649799999 ], [ 14.183486, 38.019396498999981 ], [ 15.652927, 38.26710399699999 ], [ 15.572551, 38.234204998999985 ] ] ] } }, -{ "type": "Feature", "id": 1132, "properties": { "NUTS_ID": "ITG2", "STAT_LEVL_": 2, "SHAPE_AREA": 2.54113479455, "SHAPE_LEN": 7.0390948148400003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.423461998999983, 41.176741000999982 ], [ 9.748871999000016, 40.660406997999985 ], [ 9.8270205, 40.512112499000011 ], [ 9.626526999000021, 40.224876998000013 ], [ 9.7352045, 40.075661998999976 ], [ 9.6511185, 39.549323997999977 ], [ 9.555865, 39.133966997000016 ], [ 9.1099865, 39.214018501 ], [ 8.859653, 38.877469498999972 ], [ 8.612392, 38.957787998000015 ], [ 8.368104499000026, 39.213810500000022 ], [ 8.393, 39.446529499 ], [ 8.5022545, 39.713006999000015 ], [ 8.399809, 40.407568498999979 ], [ 8.135010500000021, 40.736348998999972 ], [ 8.201709, 40.97256649799999 ], [ 8.4171275, 40.83831349899998 ], [ 8.802688499999988, 40.931047998 ], [ 9.163662, 41.235624001000019 ], [ 9.423461998999983, 41.176741000999982 ] ] ] } }, -{ "type": "Feature", "id": 1142, "properties": { "NUTS_ID": "ITH1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.91392241406899999, "SHAPE_LEN": 5.0580670730400001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.2407455, 47.069168499 ], [ 12.143811, 46.913779998 ], [ 12.477924, 46.679835497999989 ], [ 11.828336499999978, 46.508914499000014 ], [ 11.20649, 46.21977949699999 ], [ 10.9786995, 46.483954 ], [ 10.622145499999988, 46.448101999000016 ], [ 10.452801, 46.530682999000021 ], [ 10.4696515, 46.854909 ], [ 11.02225, 46.765410498999984 ], [ 11.164281500000016, 46.965722500000027 ], [ 11.627199500000017, 47.013299 ], [ 12.136014, 47.0806675 ], [ 12.2407455, 47.069168499 ] ] ] } }, -{ "type": "Feature", "id": 1144, "properties": { "NUTS_ID": "ITH2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.68980963493299996, "SHAPE_LEN": 4.16031414413 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.840176499999984, 45.832758501 ], [ 10.502388, 45.830373 ], [ 10.515751500000022, 46.34322449699999 ], [ 10.622145499999988, 46.448101999000016 ], [ 10.9786995, 46.483954 ], [ 11.20649, 46.21977949699999 ], [ 11.828336499999978, 46.508914499000014 ], [ 11.7744025, 46.358237997 ], [ 11.962298499999974, 46.187860998000019 ], [ 11.684318500000018, 45.984077999000021 ], [ 11.373413500000026, 45.983213997 ], [ 11.138337499999977, 45.697088499000017 ], [ 10.840176499999984, 45.832758501 ] ] ] } }, -{ "type": "Feature", "id": 1146, "properties": { "NUTS_ID": "ITH3", "STAT_LEVL_": 2, "SHAPE_AREA": 2.0197477502700001, "SHAPE_LEN": 9.1559164488700002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.690635, 46.656972000999986 ], [ 12.731392998999979, 46.634288 ], [ 12.498703, 46.412222500999974 ], [ 12.320955498999979, 46.2689145 ], [ 12.495829, 46.152560499 ], [ 12.4005345, 46.041996501000028 ], [ 12.661673, 45.792440999 ], [ 12.779838, 45.854448500999979 ], [ 12.979058, 45.834048997000025 ], [ 13.098785501, 45.644532997 ], [ 12.434162500000014, 45.424485996999977 ], [ 12.631836, 45.534338499 ], [ 12.413683999, 45.544310500999984 ], [ 12.132562, 45.300370499999985 ], [ 12.200494, 45.257337 ], [ 12.2045665, 45.197675998000022 ], [ 12.330571500000019, 45.1605505 ], [ 12.328777, 45.151860999 ], [ 12.302155605999985, 45.13788754699999 ], [ 12.279706042999976, 45.123266828 ], [ 12.399056499999972, 44.792615501 ], [ 12.0980285, 44.971468999000024 ], [ 11.426765499999988, 44.950076 ], [ 11.205502500000023, 45.109487499000011 ], [ 10.6546555, 45.415826998999989 ], [ 10.631074, 45.609512500999983 ], [ 10.840176499999984, 45.832758501 ], [ 11.138337499999977, 45.697088499000017 ], [ 11.373413500000026, 45.983213997 ], [ 11.684318500000018, 45.984077999000021 ], [ 11.962298499999974, 46.187860998000019 ], [ 11.7744025, 46.358237997 ], [ 11.828336499999978, 46.508914499000014 ], [ 12.477924, 46.679835497999989 ], [ 12.690635, 46.656972000999986 ] ] ] } }, -{ "type": "Feature", "id": 1154, "properties": { "NUTS_ID": "ITH4", "STAT_LEVL_": 2, "SHAPE_AREA": 0.90366658890200002, "SHAPE_LEN": 5.4317396789899997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.714184999, 46.522703499999977 ], [ 13.684032, 46.437472501 ], [ 13.3754925, 46.29823249899999 ], [ 13.664347500000019, 46.177549999 ], [ 13.496938999, 46.051334999 ], [ 13.597145, 45.81952250099999 ], [ 13.596243, 45.807937501000026 ], [ 13.9186565, 45.63351749899999 ], [ 13.7228235, 45.594725497000013 ], [ 13.579783, 45.786951499 ], [ 13.40649350000001, 45.725175001000025 ], [ 13.130853, 45.771844499999986 ], [ 13.098785501, 45.644532997 ], [ 12.979058, 45.834048997000025 ], [ 12.779838, 45.854448500999979 ], [ 12.661673, 45.792440999 ], [ 12.4005345, 46.041996501000028 ], [ 12.495829, 46.152560499 ], [ 12.320955498999979, 46.2689145 ], [ 12.498703, 46.412222500999974 ], [ 12.731392998999979, 46.634288 ], [ 13.504249500000014, 46.566303998000024 ], [ 13.714184999, 46.522703499999977 ] ] ] } }, -{ "type": "Feature", "id": 1159, "properties": { "NUTS_ID": "ITH5", "STAT_LEVL_": 2, "SHAPE_AREA": 2.5819292947200001, "SHAPE_LEN": 9.11749788813 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 10.504344, 44.922417999 ], [ 10.887909499999978, 44.914265999 ], [ 11.246231500000022, 44.951427997 ], [ 11.426765499999988, 44.950076 ], [ 12.0980285, 44.971468999000024 ], [ 12.399056499999972, 44.792615501 ], [ 12.269892, 44.630007497 ], [ 12.384282, 44.224726499999974 ], [ 12.450349, 44.162189496999986 ], [ 12.75078, 43.970601500999976 ], [ 12.669299, 43.823227498999984 ], [ 12.493956, 43.91554650099999 ], [ 12.513435500000014, 43.991269497000019 ], [ 12.4046075, 43.955678501000023 ], [ 12.4177, 43.899029997000014 ], [ 12.2837975, 43.764898997999978 ], [ 12.107464, 43.75375349699999 ], [ 11.98652850000002, 43.761913998000011 ], [ 11.710189, 43.877430498000024 ], [ 11.715906500000017, 44.122540499000024 ], [ 11.524959500000023, 44.157639999000025 ], [ 11.202439500000025, 44.100721 ], [ 11.049449, 44.090229998999973 ], [ 10.814787, 44.11617449900001 ], [ 10.624078, 44.120351501000016 ], [ 10.470149, 44.226041001 ], [ 10.253875, 44.268566998999972 ], [ 10.142054499999972, 44.353852999000026 ], [ 9.686725500000023, 44.365921999000022 ], [ 9.4790595, 44.40924050000001 ], [ 9.493363, 44.555858999 ], [ 9.202995499999986, 44.613476499 ], [ 9.200074, 44.686099496999987 ], [ 9.3246605, 44.69 ], [ 9.548684499999979, 45.132648499000027 ], [ 9.8911015, 45.130898 ], [ 10.083503, 45.04395850100002 ], [ 10.464030499999978, 44.937171501000023 ], [ 10.504344, 44.922417999 ] ] ] } }, -{ "type": "Feature", "id": 1170, "properties": { "NUTS_ID": "ITI1", "STAT_LEVL_": 2, "SHAPE_AREA": 2.5111235389100002, "SHAPE_LEN": 8.2573723067299998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.2837975, 43.764898997999978 ], [ 12.371335499999986, 43.709004500999981 ], [ 12.213856, 43.610824499999978 ], [ 12.025227, 43.415556998999989 ], [ 12.2237225, 43.296245498000019 ], [ 11.961263499999973, 43.166890498999976 ], [ 11.952102500000024, 42.900970497 ], [ 11.958612500000015, 42.874307497000018 ], [ 11.933317, 42.869329999 ], [ 11.894987500000013, 42.834653499000012 ], [ 11.746037, 42.78574249899998 ], [ 11.804794500000014, 42.643982998000013 ], [ 11.449938499999973, 42.377670501000011 ], [ 11.0979815, 42.393149499 ], [ 11.1765795, 42.541544 ], [ 10.7056725, 42.9418645 ], [ 10.499046, 42.93527050099999 ], [ 10.528247498999974, 43.231603999000015 ], [ 10.299847, 43.581928999000013 ], [ 10.258118, 43.815146998999978 ], [ 10.143476, 43.97542049899999 ], [ 10.018769500000019, 44.044535998000015 ], [ 9.686725500000023, 44.365921999000022 ], [ 10.142054499999972, 44.353852999000026 ], [ 10.253875, 44.268566998999972 ], [ 10.470149, 44.226041001 ], [ 10.624078, 44.120351501000016 ], [ 10.814787, 44.11617449900001 ], [ 11.049449, 44.090229998999973 ], [ 11.202439500000025, 44.100721 ], [ 11.524959500000023, 44.157639999000025 ], [ 11.715906500000017, 44.122540499000024 ], [ 11.710189, 43.877430498000024 ], [ 11.98652850000002, 43.761913998000011 ], [ 12.107464, 43.75375349699999 ], [ 12.2837975, 43.764898997999978 ] ] ] } }, -{ "type": "Feature", "id": 1181, "properties": { "NUTS_ID": "ITI2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.919179259857, "SHAPE_LEN": 4.2686462331100001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.189226, 42.733565499 ], [ 12.896352, 42.616417999000021 ], [ 12.444709, 42.398799499 ], [ 11.894987500000013, 42.834653499000012 ], [ 11.933317, 42.869329999 ], [ 11.958612500000015, 42.874307497000018 ], [ 11.952102500000024, 42.900970497 ], [ 11.961263499999973, 43.166890498999976 ], [ 12.2237225, 43.296245498000019 ], [ 12.025227, 43.415556998999989 ], [ 12.213856, 43.610824499999978 ], [ 12.767457, 43.459829996999986 ], [ 12.862358, 43.2112325 ], [ 12.895834499999978, 42.964570998999989 ], [ 13.235287500000027, 42.867662999 ], [ 13.189226, 42.733565499 ] ] ] } }, -{ "type": "Feature", "id": 1184, "properties": { "NUTS_ID": "ITI3", "STAT_LEVL_": 2, "SHAPE_AREA": 1.00375511097, "SHAPE_LEN": 4.93569426052 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.9157315, 42.894577 ], [ 13.3577745, 42.694069997999975 ], [ 13.189226, 42.733565499 ], [ 13.235287500000027, 42.867662999 ], [ 12.895834499999978, 42.964570998999989 ], [ 12.862358, 43.2112325 ], [ 12.767457, 43.459829996999986 ], [ 12.213856, 43.610824499999978 ], [ 12.371335499999986, 43.709004500999981 ], [ 12.2837975, 43.764898997999978 ], [ 12.4177, 43.899029997000014 ], [ 12.493956, 43.91554650099999 ], [ 12.669299, 43.823227498999984 ], [ 12.75078, 43.970601500999976 ], [ 13.172615, 43.75034599899999 ], [ 13.6420965, 43.474142498999981 ], [ 13.742970499000023, 43.29414699900002 ], [ 13.849453, 43.066659497999979 ], [ 13.9157315, 42.894577 ] ] ] } }, -{ "type": "Feature", "id": 1190, "properties": { "NUTS_ID": "ITI4", "STAT_LEVL_": 2, "SHAPE_AREA": 1.8973496858000001, "SHAPE_LEN": 7.5266030483100002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 13.189226, 42.733565499 ], [ 13.3577745, 42.694069997999975 ], [ 13.39403149899999, 42.591233999 ], [ 13.1913805, 42.587491 ], [ 13.0305745, 42.115353 ], [ 13.296299499999975, 41.948588500000028 ], [ 13.941038499, 41.68794399699999 ], [ 13.977928, 41.462454 ], [ 13.8737185, 41.338294001 ], [ 13.760795499999972, 41.223167997000019 ], [ 13.067982, 41.221979 ], [ 12.7733215, 41.416263999000023 ], [ 11.733844, 42.15805899899999 ], [ 11.449938499999973, 42.377670501000011 ], [ 11.804794500000014, 42.643982998000013 ], [ 11.746037, 42.78574249899998 ], [ 11.894987500000013, 42.834653499000012 ], [ 12.444709, 42.398799499 ], [ 12.896352, 42.616417999000021 ], [ 13.189226, 42.733565499 ] ], [ [ 12.4466885, 41.901744998000026 ], [ 12.458003, 41.901485498999989 ], [ 12.45582, 41.907197499 ], [ 12.4466885, 41.901744998000026 ] ] ] } }, -{ "type": "Feature", "id": 1198, "properties": { "NUTS_ID": "LI00", "STAT_LEVL_": 2, "SHAPE_AREA": 0.018972630538699999, "SHAPE_LEN": 0.59777272911599999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.607078, 47.0607745 ], [ 9.4760475, 47.051797498999974 ], [ 9.530749, 47.270581000999982 ], [ 9.620580500000017, 47.151645499999972 ], [ 9.607078, 47.0607745 ] ] ] } }, -{ "type": "Feature", "id": 1202, "properties": { "NUTS_ID": "LT00", "STAT_LEVL_": 2, "SHAPE_AREA": 9.1183198946200008, "SHAPE_LEN": 14.746266998499999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.91819, 56.440865 ], [ 25.0920375, 56.186041998 ], [ 25.821386500000017, 56.052179 ], [ 26.0461545, 55.944105998999987 ], [ 26.630365, 55.680666998999982 ], [ 26.553886, 55.388916000999984 ], [ 26.8356225, 55.285648498 ], [ 26.743454, 55.254102998 ], [ 25.779577500000016, 54.854839501000015 ], [ 25.762614, 54.5768945 ], [ 25.5319225, 54.342031498999972 ], [ 25.779838, 54.160037000999978 ], [ 25.497109500000022, 54.309776499 ], [ 24.835949500000027, 54.149027499 ], [ 24.435035500000026, 53.901003 ], [ 23.51465, 53.956559997999989 ], [ 23.321498500000018, 54.25332599799998 ], [ 22.792095500000016, 54.363358996999978 ], [ 22.588968, 55.070251498 ], [ 21.651070999000012, 55.179983500999981 ], [ 21.271226238999986, 55.244369351999978 ], [ 21.2643495, 55.245534997999982 ], [ 21.064238, 56.069136999000023 ], [ 21.978209, 56.385142998999982 ], [ 22.635563499999989, 56.368168 ], [ 22.920517, 56.39914299899999 ], [ 24.1518, 56.253348501 ], [ 24.91819, 56.440865 ] ] ] } }, -{ "type": "Feature", "id": 1215, "properties": { "NUTS_ID": "LU00", "STAT_LEVL_": 2, "SHAPE_AREA": 0.334562602948, "SHAPE_LEN": 2.34710743195 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.137662499999976, 50.129951499000015 ], [ 6.4749625, 49.821274999000025 ], [ 6.380052499999977, 49.551104999000017 ], [ 6.367107499999975, 49.469507001000011 ], [ 5.893386, 49.496944498 ], [ 5.818117, 49.5463105 ], [ 5.910688, 49.662388001000011 ], [ 5.746319, 49.853595 ], [ 6.0248995, 50.182779498 ], [ 6.137662499999976, 50.129951499000015 ] ] ] } }, -{ "type": "Feature", "id": 1219, "properties": { "NUTS_ID": "LV00", "STAT_LEVL_": 2, "SHAPE_AREA": 9.6020568119899998, "SHAPE_LEN": 18.2246422222 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 27.351579, 57.51823699900001 ], [ 27.690777, 57.37056099900002 ], [ 27.8701565, 57.28979499899998 ], [ 27.6594445, 56.8343655 ], [ 28.192765, 56.448565998999982 ], [ 28.154555500000015, 56.169843501 ], [ 27.615505499999983, 55.787071501000014 ], [ 26.630365, 55.680666998999982 ], [ 26.0461545, 55.944105998999987 ], [ 25.821386500000017, 56.052179 ], [ 25.0920375, 56.186041998 ], [ 24.91819, 56.440865 ], [ 24.1518, 56.253348501 ], [ 22.920517, 56.39914299899999 ], [ 22.635563499999989, 56.368168 ], [ 21.978209, 56.385142998999982 ], [ 21.064238, 56.069136999000023 ], [ 20.97067850000002, 56.352584497 ], [ 21.05211, 56.823620999000013 ], [ 21.3748955, 57.00309699799999 ], [ 21.419337, 57.290952499000014 ], [ 21.7031505, 57.5685305 ], [ 22.6050035, 57.758573999000021 ], [ 23.146890499999984, 57.316258 ], [ 23.304514, 57.064289499999973 ], [ 23.934532499999989, 57.006370496999978 ], [ 24.119202499999972, 57.086290001 ], [ 24.410199499999976, 57.266025501 ], [ 24.352817500000015, 57.876556500999982 ], [ 24.834082500000022, 57.9727795 ], [ 25.046307, 58.040146000999982 ], [ 26.056459, 57.848431496999979 ], [ 26.524905499999988, 57.516247497999984 ], [ 27.351579, 57.51823699900001 ] ] ] } }, -{ "type": "Feature", "id": 1228, "properties": { "NUTS_ID": "ME00", "STAT_LEVL_": 2, "SHAPE_AREA": 1.46919018022, "SHAPE_LEN": 5.89019509358 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.525213, 42.420462997000016 ], [ 18.438104, 42.555705000999978 ], [ 18.5672495, 42.651405497999974 ], [ 18.491927998999984, 42.983962997999981 ], [ 18.683405, 43.245486998999979 ], [ 19.224069, 43.527541 ], [ 20.063936500000011, 43.006823999 ], [ 20.352928500000019, 42.833381498999984 ], [ 20.024653, 42.765138498999988 ], [ 20.0763, 42.555823498999985 ], [ 19.621872, 42.589744498000016 ], [ 19.282484, 42.180015502 ], [ 19.372067, 41.850320497999974 ], [ 18.689521633000027, 42.464353484000014 ], [ 18.525213, 42.420462997000016 ] ] ] } }, -{ "type": "Feature", "id": 1232, "properties": { "NUTS_ID": "MK00", "STAT_LEVL_": 2, "SHAPE_AREA": 2.70884348404, "SHAPE_LEN": 6.7098309700699996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.9275915, 41.338539498999978 ], [ 22.879178500000023, 41.340652998 ], [ 22.732037, 41.146391498000014 ], [ 22.332052, 41.120272500999988 ], [ 22.216216, 41.170457498000019 ], [ 21.929438, 41.100350498000012 ], [ 21.787378, 40.9311255 ], [ 20.980204500000013, 40.855665 ], [ 20.837823, 40.927682999000012 ], [ 20.515577, 41.230955500999983 ], [ 20.456284499999981, 41.554024001000016 ], [ 20.557774, 41.581870502000015 ], [ 20.594286, 41.877327498 ], [ 21.10894, 42.206170998 ], [ 21.2126975, 42.110701001 ], [ 21.4443185, 42.234930498999972 ], [ 21.58694650000001, 42.262817498 ], [ 22.3602065, 42.311157001000026 ], [ 22.510412, 42.15515849799999 ], [ 22.867214, 42.022199496999974 ], [ 22.968327499999987, 41.51983549900001 ], [ 22.9275915, 41.338539498999978 ] ] ] } }, -{ "type": "Feature", "id": 1243, "properties": { "NUTS_ID": "MT00", "STAT_LEVL_": 2, "SHAPE_AREA": 0.0251866693234, "SHAPE_LEN": 1.05686311101 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 14.5720435, 35.849754497999982 ], [ 14.535398, 35.807502998000018 ], [ 14.416679499999987, 35.828189499000018 ], [ 14.342219999, 35.873474498 ], [ 14.319842, 35.970368 ], [ 14.376091499999973, 35.987453999000024 ], [ 14.350481, 35.969952498999987 ], [ 14.5720435, 35.849754497999982 ] ] ], [ [ [ 14.336181, 36.032258499000022 ], [ 14.218846, 36.020974497999987 ], [ 14.186361, 36.036271999 ], [ 14.184842, 36.074078498 ], [ 14.300056499999982, 36.057194998999989 ], [ 14.336181, 36.032258499000022 ] ] ] ] } }, -{ "type": "Feature", "id": 1248, "properties": { "NUTS_ID": "NL11", "STAT_LEVL_": 2, "SHAPE_AREA": 0.34887343422400002, "SHAPE_LEN": 2.8031276956500002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.208935, 53.243064498000024 ], [ 7.202794499999982, 53.113281498999982 ], [ 7.092692, 52.83820099899998 ], [ 6.935702, 52.993362499 ], [ 6.81381, 53.071048497999982 ], [ 6.315237, 53.094051498999988 ], [ 6.176817, 53.159450499 ], [ 6.1913015, 53.410937999 ], [ 6.882578, 53.440654999 ], [ 6.874905, 53.408012998 ], [ 7.0927125, 53.25701749699999 ], [ 7.208935, 53.243064498000024 ] ] ] } }, -{ "type": "Feature", "id": 1252, "properties": { "NUTS_ID": "NL12", "STAT_LEVL_": 2, "SHAPE_AREA": 0.44830530217199999, "SHAPE_LEN": 3.0220122170099999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.315237, 53.094051498999988 ], [ 6.369053, 52.921973499999979 ], [ 6.119814, 52.854267000999982 ], [ 5.819826499999976, 52.81731750099999 ], [ 5.795148499999982, 52.806499498999983 ], [ 5.377261499999975, 52.764805 ], [ 5.167425499999979, 52.998798498999975 ], [ 5.164383499999985, 53.000910501000021 ], [ 5.4112285, 53.151724498000021 ], [ 6.1913015, 53.410937999 ], [ 6.176817, 53.159450499 ], [ 6.315237, 53.094051498999988 ] ] ] } }, -{ "type": "Feature", "id": 1256, "properties": { "NUTS_ID": "NL13", "STAT_LEVL_": 2, "SHAPE_AREA": 0.32480128497, "SHAPE_LEN": 2.5535842840699998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.092692, 52.83820099899998 ], [ 7.006229500000018, 52.63876299899999 ], [ 6.709732499999973, 52.627823498999987 ], [ 6.629429500000015, 52.669658500000025 ], [ 6.1630035, 52.680061498999976 ], [ 6.119814, 52.854267000999982 ], [ 6.369053, 52.921973499999979 ], [ 6.315237, 53.094051498999988 ], [ 6.81381, 53.071048497999982 ], [ 6.935702, 52.993362499 ], [ 7.092692, 52.83820099899998 ] ] ] } }, -{ "type": "Feature", "id": 1261, "properties": { "NUTS_ID": "NL21", "STAT_LEVL_": 2, "SHAPE_AREA": 0.45840828681399998, "SHAPE_LEN": 3.8003197204700001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.709732499999973, 52.627823498999987 ], [ 6.697865499999978, 52.486285998000028 ], [ 6.987941499999977, 52.469540999 ], [ 7.065685, 52.241372999000021 ], [ 6.760465, 52.118569499999978 ], [ 6.381997500000011, 52.246086000999981 ], [ 6.166411499999981, 52.231045 ], [ 6.109792500000026, 52.440574501000015 ], [ 5.864311, 52.518169496999974 ], [ 5.777970499999981, 52.607532499 ], [ 6.017299499999979, 52.643230499000026 ], [ 5.795148499999982, 52.806499498999983 ], [ 5.819826499999976, 52.81731750099999 ], [ 6.119814, 52.854267000999982 ], [ 6.1630035, 52.680061498999976 ], [ 6.629429500000015, 52.669658500000025 ], [ 6.709732499999973, 52.627823498999987 ] ] ] } }, -{ "type": "Feature", "id": 1265, "properties": { "NUTS_ID": "NL22", "STAT_LEVL_": 2, "SHAPE_AREA": 0.69184857152400003, "SHAPE_LEN": 4.753381876 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.760465, 52.118569499999978 ], [ 6.828513, 51.9640665 ], [ 6.4077795, 51.828092001000016 ], [ 6.167766, 51.900804499 ], [ 5.953192, 51.747845998 ], [ 5.8651585, 51.757407999 ], [ 5.597879499999976, 51.828082999 ], [ 5.128057500000011, 51.73761 ], [ 5.000534, 51.820937999000023 ], [ 5.149456, 51.933452499 ], [ 5.606011500000022, 51.943248498 ], [ 5.404633, 52.249629998999978 ], [ 5.864311, 52.518169496999974 ], [ 6.109792500000026, 52.440574501000015 ], [ 6.166411499999981, 52.231045 ], [ 6.381997500000011, 52.246086000999981 ], [ 6.760465, 52.118569499999978 ] ] ] } }, -{ "type": "Feature", "id": 1272, "properties": { "NUTS_ID": "IE02", "STAT_LEVL_": 2, "SHAPE_AREA": 5.0044245269100003, "SHAPE_LEN": 16.034226797799999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.102773, 53.210773 ], [ -6.144516501, 52.737696498999981 ], [ -6.360401500000023, 52.174297998999975 ], [ -7.842156, 51.954218498999978 ], [ -8.534105, 51.603961498999979 ], [ -9.820953499999973, 51.44911749900001 ], [ -9.4395065, 51.723395000999972 ], [ -10.143066499999975, 51.597052999000027 ], [ -10.359855687999982, 51.89811573899999 ], [ -10.292081, 51.9134095 ], [ -10.305404416999977, 51.91783544499998 ], [ -9.792653, 52.155574499000011 ], [ -10.472409, 52.180784501 ], [ -9.365306771, 52.572083917999976 ], [ -9.365192, 52.572124499999973 ], [ -8.733330465999984, 52.662677988999974 ], [ -8.72813801, 52.663422141000012 ], [ -8.728047772000025, 52.663435361999973 ], [ -8.728093624999985, 52.663433558 ], [ -8.733924531000014, 52.66327281299999 ], [ -9.545411424, 52.640890680999973 ], [ -9.546329543000013, 52.640865521000023 ], [ -9.546003731999974, 52.641486854999982 ], [ -9.282234397000025, 53.14464463600001 ], [ -9.282228877000023, 53.144654906000028 ], [ -9.282189335999988, 53.14465521599999 ], [ -9.009308499999975, 53.140817498999979 ], [ -9.008489770999972, 53.140603919 ], [ -8.359738204999985, 52.971357996999984 ], [ -8.081461029000025, 53.166883229 ], [ -7.674682691999976, 52.781863515999987 ], [ -7.674081, 52.781294 ], [ -6.939413, 52.88005449799999 ], [ -7.063349, 53.468781501000024 ], [ -7.343828499999972, 53.799062498000012 ], [ -6.749452500000018, 53.913742997999975 ], [ -6.247098, 53.722454500000026 ], [ -6.2148995, 53.633406998999988 ], [ -6.102773, 53.210773 ] ] ] } }, -{ "type": "Feature", "id": 1280, "properties": { "NUTS_ID": "IS00", "STAT_LEVL_": 2, "SHAPE_AREA": 19.582305420200001, "SHAPE_LEN": 42.765015966100002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.194012499999985, 66.537420000999987 ], [ -15.7608105, 66.280061499999988 ], [ -14.530650501000025, 66.377677 ], [ -15.1874295, 66.107847999 ], [ -14.604863500000022, 65.959309 ], [ -14.841373499999975, 65.725313001000018 ], [ -13.606742500999985, 65.510168 ], [ -13.495021, 65.076342496999985 ], [ -14.962440500000014, 64.23983099899999 ], [ -18.177745, 63.458595998000021 ], [ -22.007397, 63.835987500999977 ], [ -22.13086850000002, 63.836598001000027 ], [ -22.749017, 63.970331498 ], [ -22.125507, 64.040599 ], [ -21.3700475, 64.380325998999979 ], [ -22.031621500000028, 64.303023999 ], [ -22.4159795, 64.812200999000027 ], [ -24.04781, 64.87882700099999 ], [ -21.8073225, 65.025850000999981 ], [ -21.7099895, 65.15945799799999 ], [ -22.560879, 65.169345998999972 ], [ -21.681208, 65.451475 ], [ -24.532042499999989, 65.503079 ], [ -24.099384, 65.805268499000022 ], [ -23.171936500000015, 65.774955998 ], [ -23.868307, 65.886556499999983 ], [ -23.182204500000012, 65.837784498000019 ], [ -23.819687, 66.034912 ], [ -23.478353, 66.194693500000028 ], [ -22.360858, 65.925525999 ], [ -22.976494, 66.222132499999987 ], [ -22.362860500000011, 66.2698555 ], [ -23.1958975, 66.350033997000025 ], [ -22.9317105, 66.4693605 ], [ -21.327746499999989, 66.006199001000027 ], [ -21.3420165, 65.734767501000022 ], [ -21.7825325, 65.764513497999985 ], [ -21.094844500000022, 65.447562999000013 ], [ -20.264036, 65.725345499000014 ], [ -20.421178, 66.084051499999987 ], [ -19.473689, 65.736606500999983 ], [ -19.361081500000012, 65.829324 ], [ -19.4362145, 66.0476645 ], [ -18.77751, 66.191427001000022 ], [ -17.4125985, 65.992246497 ], [ -16.194012499999985, 66.537420000999987 ] ] ] } }, -{ "type": "Feature", "id": 1285, "properties": { "NUTS_ID": "ITC1", "STAT_LEVL_": 2, "SHAPE_AREA": 2.9445259612200001, "SHAPE_LEN": 8.9909437416499998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 8.713936, 46.097271998999986 ], [ 8.593811, 45.828224998999985 ], [ 8.706896500000028, 45.558316 ], [ 8.8429155, 45.393841 ], [ 8.51356, 45.313278501000013 ], [ 8.5477975, 45.168147497 ], [ 8.887709, 45.059148999 ], [ 9.200074, 44.686099496999987 ], [ 9.202995499999986, 44.613476499 ], [ 8.576182, 44.509206001 ], [ 8.261596, 44.519424496999989 ], [ 8.252819499, 44.528740501000016 ], [ 8.015629499999989, 44.110676499000022 ], [ 7.714236500000027, 44.061513499 ], [ 7.007760500000018, 44.23670049899999 ], [ 6.887428, 44.361287 ], [ 6.948443, 44.654741999 ], [ 7.065755, 44.713464497000018 ], [ 6.630051, 45.109856499999978 ], [ 7.125157, 45.243994498 ], [ 7.104723, 45.468454499000018 ], [ 7.895811, 45.590028 ], [ 7.936649, 45.724340499999983 ], [ 7.86407650000001, 45.916750499999978 ], [ 7.8771375, 45.926954997999985 ], [ 8.384717, 46.452158499 ], [ 8.713936, 46.097271998999986 ] ] ] } }, -{ "type": "Feature", "id": 1295, "properties": { "NUTS_ID": "PL43", "STAT_LEVL_": 2, "SHAPE_AREA": 1.8445872214400001, "SHAPE_LEN": 6.2404958520799996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.416191, 51.784865 ], [ 15.979245, 51.802309001000026 ], [ 15.714032499999973, 51.51739699699999 ], [ 14.974183, 51.36394999700002 ], [ 14.729862, 51.581776999 ], [ 14.716716, 52.001188001 ], [ 14.755227, 52.070024998 ], [ 14.600891499999989, 52.272051998999984 ], [ 14.534361999, 52.395008 ], [ 14.565063, 52.624497 ], [ 14.904187, 52.883909499000026 ], [ 15.962497499999984, 53.041380996999976 ], [ 15.946907, 52.75489599799999 ], [ 15.776346499999988, 52.637869501000011 ], [ 15.880810499, 52.290429499000027 ], [ 15.833296, 52.11112300100001 ], [ 16.416191, 51.784865 ] ] ] } }, -{ "type": "Feature", "id": 1299, "properties": { "NUTS_ID": "PL51", "STAT_LEVL_": 2, "SHAPE_AREA": 2.5705263551200002, "SHAPE_LEN": 8.2441852102199995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.416191, 51.784865 ], [ 16.828372, 51.57218799899999 ], [ 17.257433, 51.642843001000017 ], [ 17.556245, 51.58430149899999 ], [ 17.795269500000018, 51.194146000999979 ], [ 17.578243499999985, 51.162241 ], [ 17.164896, 50.613462998999978 ], [ 16.907924499999979, 50.44945400099999 ], [ 17.028323, 50.229996998999979 ], [ 16.86327, 50.19812299900002 ], [ 16.58029, 50.142787998000017 ], [ 16.195729, 50.432135001 ], [ 16.443536, 50.586257499999988 ], [ 16.107318, 50.662072998999975 ], [ 15.535267499999975, 50.779375999000024 ], [ 15.032691, 51.021315999000024 ], [ 14.823362, 50.870550497000011 ], [ 15.037271, 51.243749998999988 ], [ 14.974183, 51.36394999700002 ], [ 15.714032499999973, 51.51739699699999 ], [ 15.979245, 51.802309001000026 ], [ 16.416191, 51.784865 ] ] ] } }, -{ "type": "Feature", "id": 1305, "properties": { "NUTS_ID": "PL52", "STAT_LEVL_": 2, "SHAPE_AREA": 1.2668851860100001, "SHAPE_LEN": 5.1566603755299996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.1636815, 51.172516997 ], [ 18.672954499000014, 51.056902501000025 ], [ 18.615877500000011, 50.85358750099999 ], [ 18.607473500000026, 50.550011 ], [ 18.425866499999984, 50.248965498000018 ], [ 18.059780499999988, 50.174652499999979 ], [ 18.035060999, 50.06577199899999 ], [ 17.868675, 49.972545997 ], [ 17.592736, 50.160014 ], [ 17.758479, 50.206568 ], [ 17.718403998999975, 50.32095 ], [ 17.429605, 50.254513001000021 ], [ 16.907924499999979, 50.44945400099999 ], [ 17.164896, 50.613462998999978 ], [ 17.578243499999985, 51.162241 ], [ 17.795269500000018, 51.194146000999979 ], [ 17.939456, 51.10886499899999 ], [ 18.1636815, 51.172516997 ] ] ] } }, -{ "type": "Feature", "id": 1309, "properties": { "NUTS_ID": "PL61", "STAT_LEVL_": 2, "SHAPE_AREA": 2.3250527676899999, "SHAPE_LEN": 6.4972781343900001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.1292765, 53.588260499 ], [ 19.7615955, 53.15179649800001 ], [ 19.684806, 52.963038998 ], [ 19.444664, 52.939042500000028 ], [ 19.522742999, 52.74920049799999 ], [ 19.289184499999976, 52.39271249799998 ], [ 19.04712, 52.332803999000021 ], [ 18.377150500000027, 52.53746350099999 ], [ 17.458523, 52.738948000999983 ], [ 17.509582500000022, 52.917767997 ], [ 17.3015565, 52.994803 ], [ 17.438793499999974, 53.26751450099999 ], [ 17.390653, 53.490964 ], [ 18.072036500000024, 53.781074998 ], [ 18.761577499999987, 53.604881998 ], [ 19.1292765, 53.588260499 ] ] ] } }, -{ "type": "Feature", "id": 1315, "properties": { "NUTS_ID": "PL62", "STAT_LEVL_": 2, "SHAPE_AREA": 3.3344017992300001, "SHAPE_LEN": 9.1371717569000008 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.792095500000016, 54.363358996999978 ], [ 22.476556500000015, 54.201305500999979 ], [ 22.782806, 53.915489498999989 ], [ 22.703502500000013, 53.767354496999985 ], [ 22.135728, 53.544539998 ], [ 21.598199912999974, 53.480181970999979 ], [ 21.55169, 53.478128001000016 ], [ 20.675953999, 53.269529498 ], [ 20.411137, 53.214165 ], [ 19.7615955, 53.15179649800001 ], [ 19.1292765, 53.588260499 ], [ 19.377739500000018, 53.984958998000025 ], [ 19.2176885, 54.11612149699999 ], [ 19.256953, 54.2784605 ], [ 19.8037685, 54.4424105 ], [ 20.313503, 54.402202000999978 ], [ 21.559322, 54.322504 ], [ 22.792095500000016, 54.363358996999978 ] ] ] } }, -{ "type": "Feature", "id": 1319, "properties": { "NUTS_ID": "PL63", "STAT_LEVL_": 2, "SHAPE_AREA": 2.48264567887, "SHAPE_LEN": 8.7792554017299995 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.256953, 54.2784605 ], [ 19.2176885, 54.11612149699999 ], [ 19.377739500000018, 53.984958998000025 ], [ 19.1292765, 53.588260499 ], [ 18.761577499999987, 53.604881998 ], [ 18.072036500000024, 53.781074998 ], [ 17.390653, 53.490964 ], [ 16.892248, 53.655868999 ], [ 16.982053499000017, 53.904909499999974 ], [ 16.792764499999976, 53.985550499999988 ], [ 16.858620499999972, 54.38257649799999 ], [ 16.699085, 54.569247001 ], [ 17.666607, 54.7832315 ], [ 18.35961, 54.81719149700001 ], [ 18.828968499999974, 54.607707999000013 ], [ 18.3967745, 54.747280499999988 ], [ 18.541726499999982, 54.58448 ], [ 18.950029500000028, 54.358310501 ], [ 19.639032, 54.458294498999976 ], [ 19.648523, 54.453339 ], [ 19.256953, 54.2784605 ] ] ] } }, -{ "type": "Feature", "id": 1327, "properties": { "NUTS_ID": "PT11", "STAT_LEVL_": 2, "SHAPE_AREA": 2.2882624740200002, "SHAPE_LEN": 7.1108791504199997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.983513500000015, 41.972903998999982 ], [ -6.5884615, 41.967761998000015 ], [ -6.189352, 41.575046499 ], [ -6.479713, 41.294379999 ], [ -6.689786, 41.205241498000021 ], [ -6.929903500000023, 41.029466499000023 ], [ -7.40123545, 40.880941330999974 ], [ -7.4542035, 40.812609999000017 ], [ -7.9156385, 41.020001998 ], [ -8.08917150000002, 40.987557498 ], [ -8.273369, 40.763173497000025 ], [ -8.5491265, 40.791806996999981 ], [ -8.6531195, 40.964778497 ], [ -8.776427500000011, 41.471979497 ], [ -8.811573, 41.611576996999986 ], [ -8.863186, 41.872066499000027 ], [ -8.199000500000011, 42.154418998999972 ], [ -8.1650755, 41.818302 ], [ -8.051862500000027, 41.820613998 ], [ -7.20046450000001, 41.879749498000024 ], [ -6.983513500000015, 41.972903998999982 ] ] ] } }, -{ "type": "Feature", "id": 1336, "properties": { "NUTS_ID": "PT15", "STAT_LEVL_": 2, "SHAPE_AREA": 0.52293547670899998, "SHAPE_LEN": 3.8169800547900001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -7.401916500000027, 37.174827498000013 ], [ -7.8825875, 36.96182299899999 ], [ -8.592472, 37.1220545 ], [ -8.981500499999981, 37.027438497999981 ], [ -8.7963155, 37.442948 ], [ -8.3779285, 37.427245997 ], [ -8.065689500000019, 37.318969998 ], [ -7.512691500000017, 37.526256499 ], [ -7.401916500000027, 37.174827498000013 ] ] ] } }, -{ "type": "Feature", "id": 1338, "properties": { "NUTS_ID": "PT16", "STAT_LEVL_": 2, "SHAPE_AREA": 2.96847661888, "SHAPE_LEN": 8.9292265240499997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.865144, 40.270694499 ], [ -6.9512985, 40.257445999000026 ], [ -7.011960499999986, 40.126934 ], [ -6.864203, 40.011867498000015 ], [ -7.015405, 39.670856499000024 ], [ -7.53490245, 39.661986891000026 ], [ -7.8251085, 39.537363998999979 ], [ -7.959676, 39.560949499 ], [ -7.9394625, 39.409952498 ], [ -8.1726035, 39.233313996999982 ], [ -8.338524, 39.461524498000017 ], [ -8.759391, 39.475686999 ], [ -8.903426, 39.466005499 ], [ -8.930280499999981, 39.018022498999983 ], [ -9.333296, 39.02805749700002 ], [ -9.416459499999974, 39.054692999 ], [ -9.365950500999986, 39.348377998999979 ], [ -9.04026600100002, 39.741422000999989 ], [ -8.894938, 40.045502999 ], [ -8.784033, 40.520366498999977 ], [ -8.6531195, 40.964778497 ], [ -8.5491265, 40.791806996999981 ], [ -8.273369, 40.763173497000025 ], [ -8.08917150000002, 40.987557498 ], [ -7.9156385, 41.020001998 ], [ -7.4542035, 40.812609999000017 ], [ -7.40123545, 40.880941330999974 ], [ -6.929903500000023, 41.029466499000023 ], [ -6.801935, 40.861045998 ], [ -6.865144, 40.270694499 ] ] ] } }, -{ "type": "Feature", "id": 1347, "properties": { "NUTS_ID": "PT17", "STAT_LEVL_": 2, "SHAPE_AREA": 0.30151190928799998, "SHAPE_LEN": 3.4601073215999998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -8.735066500000016, 38.516034999 ], [ -9.222857499999975, 38.413747999 ], [ -9.260362499999985, 38.662664999000015 ], [ -8.924883500000021, 38.758676499999979 ], [ -8.546800500000018, 38.763433997999982 ], [ -8.490975, 38.76131049899999 ], [ -8.6391155, 38.549488999 ], [ -8.735066500000016, 38.516034999 ] ] ], [ [ [ -8.968469, 38.827762499000016 ], [ -9.477468499999986, 38.701838497999972 ], [ -9.416459499999974, 39.054692999 ], [ -9.333296, 39.02805749700002 ], [ -8.930280499999981, 39.018022498999983 ], [ -8.968469, 38.827762499000016 ] ] ] ] } }, -{ "type": "Feature", "id": 1349, "properties": { "NUTS_ID": "PT18", "STAT_LEVL_": 2, "SHAPE_AREA": 3.23742735079, "SHAPE_LEN": 8.7331231445800004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.9317385, 38.208377998 ], [ -7.002483499999983, 38.0227165 ], [ -7.2632845, 37.979908 ], [ -7.512691500000017, 37.526256499 ], [ -8.065689500000019, 37.318969998 ], [ -8.3779285, 37.427245997 ], [ -8.7963155, 37.442948 ], [ -8.735066500000016, 38.516034999 ], [ -8.6391155, 38.549488999 ], [ -8.490975, 38.76131049899999 ], [ -8.546800500000018, 38.763433997999982 ], [ -8.924883500000021, 38.758676499999979 ], [ -8.968469, 38.827762499000016 ], [ -8.930280499999981, 39.018022498999983 ], [ -8.903426, 39.466005499 ], [ -8.759391, 39.475686999 ], [ -8.338524, 39.461524498000017 ], [ -8.1726035, 39.233313996999982 ], [ -7.9394625, 39.409952498 ], [ -7.959676, 39.560949499 ], [ -7.8251085, 39.537363998999979 ], [ -7.53490245, 39.661986891000026 ], [ -7.231467, 39.278431 ], [ -6.9513915, 39.024070499 ], [ -7.203135, 38.75101749800001 ], [ -7.316636, 38.439876498999979 ], [ -7.10795250000001, 38.188121500000022 ], [ -6.9317385, 38.208377998 ] ] ] } }, -{ "type": "Feature", "id": 1356, "properties": { "NUTS_ID": "PT20", "STAT_LEVL_": 2, "SHAPE_AREA": 0.043939992241600001, "SHAPE_LEN": 1.4808539034099999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -25.1341635, 37.807617498000013 ], [ -25.5115255, 37.708371499 ], [ -25.85274, 37.85310549899998 ], [ -25.689569, 37.841939501000013 ], [ -25.1341635, 37.807617498000013 ] ] ] } }, -{ "type": "Feature", "id": 1359, "properties": { "NUTS_ID": "PT30", "STAT_LEVL_": 2, "SHAPE_AREA": 0.055018856820200003, "SHAPE_LEN": 1.11196618179 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -16.746594500000015, 32.73417 ], [ -16.944882501, 32.632935498999984 ], [ -17.2126035, 32.736969999 ], [ -17.193386499999974, 32.870556498999974 ], [ -16.746594500000015, 32.73417 ] ] ] } }, -{ "type": "Feature", "id": 1363, "properties": { "NUTS_ID": "RO11", "STAT_LEVL_": 2, "SHAPE_AREA": 4.12390517584, "SHAPE_LEN": 8.8819070628900008 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.947100499999976, 47.729124 ], [ 24.960837500000025, 47.596850999000026 ], [ 25.063383, 47.13653849799999 ], [ 24.400994998999977, 46.750535499000023 ], [ 24.183093105000012, 46.802148026 ], [ 23.985275, 46.430917998999973 ], [ 22.811950500000023, 46.56885950100002 ], [ 22.676575500000013, 46.405825497000023 ], [ 21.441398, 46.651467 ], [ 21.658955, 47.022131498000022 ], [ 22.12832, 47.598089496999989 ], [ 22.1808375, 47.600094499000022 ], [ 22.896270500000014, 47.954120500999977 ], [ 23.1885355, 48.108687998999983 ], [ 23.493605, 47.96781149899999 ], [ 24.583293500000025, 47.964851496999984 ], [ 24.947100499999976, 47.729124 ] ] ] } }, -{ "type": "Feature", "id": 1370, "properties": { "NUTS_ID": "RO12", "STAT_LEVL_": 2, "SHAPE_AREA": 3.92995911014, "SHAPE_LEN": 9.4690049802199994 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.4399845, 46.038876499000025 ], [ 26.392094499999985, 45.802389496999979 ], [ 26.093334500000026, 45.516305997000018 ], [ 26.0727185, 45.505787999 ], [ 25.452539, 45.441341998999974 ], [ 25.321577499999989, 45.381088998 ], [ 25.103214, 45.585193999000012 ], [ 24.68492550000002, 45.604110997000021 ], [ 24.5128345, 45.586824998999987 ], [ 23.703613, 45.496772001000011 ], [ 23.597270499999979, 45.473471499000027 ], [ 23.234864, 46.030501996999988 ], [ 22.748716, 46.351207499999987 ], [ 22.676575500000013, 46.405825497000023 ], [ 22.811950500000023, 46.56885950100002 ], [ 23.985275, 46.430917998999973 ], [ 24.183093105000012, 46.802148026 ], [ 24.400994998999977, 46.750535499000023 ], [ 25.063383, 47.13653849799999 ], [ 25.2467105, 47.097919 ], [ 25.661582499000019, 47.091646500000024 ], [ 25.8619675, 46.923383498000021 ], [ 25.79531, 46.71911749899999 ], [ 25.975159500000018, 46.69731249900002 ], [ 26.263439, 46.246338497000011 ], [ 26.4399845, 46.038876499000025 ] ] ] } }, -{ "type": "Feature", "id": 1378, "properties": { "NUTS_ID": "RO21", "STAT_LEVL_": 2, "SHAPE_AREA": 4.3028983650099999, "SHAPE_LEN": 9.2209686130800002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.115802, 46.107826997000018 ], [ 27.610243, 46.136248498999976 ], [ 27.562554499999976, 46.002876997999977 ], [ 27.503053, 46.139620998999987 ], [ 27.4928185, 46.159212998999976 ], [ 26.4399845, 46.038876499000025 ], [ 26.263439, 46.246338497000011 ], [ 25.975159500000018, 46.69731249900002 ], [ 25.79531, 46.71911749899999 ], [ 25.8619675, 46.923383498000021 ], [ 25.661582499000019, 47.091646500000024 ], [ 25.2467105, 47.097919 ], [ 25.063383, 47.13653849799999 ], [ 24.960837500000025, 47.596850999000026 ], [ 24.947100499999976, 47.729124 ], [ 26.098827500000027, 47.97879599700002 ], [ 26.63056, 48.259749999 ], [ 27.1646515, 47.994683499000018 ], [ 27.3911665, 47.58939749699999 ], [ 28.113805500000012, 46.838411001 ], [ 28.260886, 46.437139499000011 ], [ 28.115802, 46.107826997000018 ] ] ] } }, -{ "type": "Feature", "id": 1385, "properties": { "NUTS_ID": "RO22", "STAT_LEVL_": 2, "SHAPE_AREA": 4.0466299814199997, "SHAPE_LEN": 11.781261604699999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.115802, 46.107826997000018 ], [ 28.088561500000026, 45.606112499 ], [ 28.21136, 45.467279999000027 ], [ 28.28599, 45.430630001 ], [ 28.717, 45.224379999 ], [ 29.42759, 45.44223999899998 ], [ 29.6796395, 45.211838 ], [ 29.600269, 44.839554498999973 ], [ 28.994085, 44.679625498 ], [ 28.625982500000021, 44.297031998000023 ], [ 28.578884, 43.738739 ], [ 27.69541, 43.987343 ], [ 27.271344999, 44.12633649899999 ], [ 28.017373998999972, 44.340248997 ], [ 28.110168499999986, 44.439703501 ], [ 27.881007, 44.763076499000022 ], [ 27.203458500000011, 44.787073998999972 ], [ 26.6055515, 44.856993998 ], [ 26.0727185, 45.505787999 ], [ 26.093334500000026, 45.516305997000018 ], [ 26.392094499999985, 45.802389496999979 ], [ 26.4399845, 46.038876499000025 ], [ 27.4928185, 46.159212998999976 ], [ 27.503053, 46.139620998999987 ], [ 27.562554499999976, 46.002876997999977 ], [ 27.610243, 46.136248498999976 ], [ 28.115802, 46.107826997000018 ] ] ] } }, -{ "type": "Feature", "id": 1393, "properties": { "NUTS_ID": "RO31", "STAT_LEVL_": 2, "SHAPE_AREA": 3.9547184404600002, "SHAPE_LEN": 11.6967165344 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.0727185, 45.505787999 ], [ 26.6055515, 44.856993998 ], [ 27.203458500000011, 44.787073998999972 ], [ 27.881007, 44.763076499000022 ], [ 28.110168499999986, 44.439703501 ], [ 28.017373998999972, 44.340248997 ], [ 27.271344999, 44.12633649899999 ], [ 26.379968, 44.042950999000027 ], [ 26.358359999000015, 44.038415500999974 ], [ 25.671862499999975, 43.691339998999979 ], [ 25.544640500000014, 43.64298149699999 ], [ 25.293740500000013, 43.654294 ], [ 24.641605998999978, 43.733412999 ], [ 24.755096, 43.817601498999977 ], [ 24.613092499, 44.014155997999978 ], [ 24.884019500000022, 44.382636497000021 ], [ 24.438121, 44.845375499 ], [ 24.5128345, 45.586824998999987 ], [ 24.68492550000002, 45.604110997000021 ], [ 25.103214, 45.585193999000012 ], [ 25.321577499999989, 45.381088998 ], [ 25.452539, 45.441341998999974 ], [ 26.0727185, 45.505787999 ] ], [ [ 26.416060500000015, 44.521682999 ], [ 26.301818500000024, 44.768875 ], [ 25.970744, 44.710408501000018 ], [ 25.8907395, 44.540952999000012 ], [ 25.870018500000015, 44.35740049899999 ], [ 26.259956499999987, 44.294985999 ], [ 26.416060500000015, 44.521682999 ] ] ] } }, -{ "type": "Feature", "id": 1401, "properties": { "NUTS_ID": "RO32", "STAT_LEVL_": 2, "SHAPE_AREA": 0.18702136140600001, "SHAPE_LEN": 1.65076928773 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 26.416060500000015, 44.521682999 ], [ 26.259956499999987, 44.294985999 ], [ 25.870018500000015, 44.35740049899999 ], [ 25.8907395, 44.540952999000012 ], [ 25.970744, 44.710408501000018 ], [ 26.301818500000024, 44.768875 ], [ 26.416060500000015, 44.521682999 ] ] ] } }, -{ "type": "Feature", "id": 1405, "properties": { "NUTS_ID": "RO41", "STAT_LEVL_": 2, "SHAPE_AREA": 3.2936654731799999, "SHAPE_LEN": 9.3151045322500003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.641605998999978, 43.733412999 ], [ 24.324132, 43.699567996999974 ], [ 24.112719, 43.699566498000024 ], [ 23.63008, 43.791259997999987 ], [ 22.997154500000022, 43.807626997 ], [ 22.838719, 43.877852001 ], [ 23.045898, 44.063749499999972 ], [ 22.966399500000023, 44.098524997000027 ], [ 22.6751615, 44.215662996999981 ], [ 22.4573995, 44.4674665 ], [ 22.705956500000013, 44.603216498999984 ], [ 22.467334, 44.7147455 ], [ 22.1595795, 44.471777498999984 ], [ 22.016132500000026, 44.599202499 ], [ 22.154162, 44.59519949700001 ], [ 22.207799, 44.816878497 ], [ 22.418032, 44.756857498999977 ], [ 22.656632, 45.108166997000012 ], [ 22.686246499999982, 45.257960998999977 ], [ 23.59064, 45.353072499 ], [ 23.597270499999979, 45.473471499000027 ], [ 23.703613, 45.496772001000011 ], [ 24.5128345, 45.586824998999987 ], [ 24.438121, 44.845375499 ], [ 24.884019500000022, 44.382636497000021 ], [ 24.613092499, 44.014155997999978 ], [ 24.755096, 43.817601498999977 ], [ 24.641605998999978, 43.733412999 ] ] ] } }, -{ "type": "Feature", "id": 1407, "properties": { "NUTS_ID": "NL23", "STAT_LEVL_": 2, "SHAPE_AREA": 0.309937998411, "SHAPE_LEN": 2.5075505365400002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.864311, 52.518169496999974 ], [ 5.404633, 52.249629998999978 ], [ 5.335462, 52.29021849899999 ], [ 5.079161, 52.388653 ], [ 5.0604265, 52.578937499 ], [ 5.377261499999975, 52.764805 ], [ 5.795148499999982, 52.806499498999983 ], [ 6.017299499999979, 52.643230499000026 ], [ 5.777970499999981, 52.607532499 ], [ 5.864311, 52.518169496999974 ] ] ] } }, -{ "type": "Feature", "id": 1410, "properties": { "NUTS_ID": "NL31", "STAT_LEVL_": 2, "SHAPE_AREA": 0.229959014706, "SHAPE_LEN": 2.02926129032 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.335462, 52.29021849899999 ], [ 5.404633, 52.249629998999978 ], [ 5.606011500000022, 51.943248498 ], [ 5.149456, 51.933452499 ], [ 4.877899500000012, 51.937835498000027 ], [ 4.794524, 52.22672649899999 ], [ 5.021537500000022, 52.302498499000023 ], [ 5.335462, 52.29021849899999 ] ] ] } }, -{ "type": "Feature", "id": 1412, "properties": { "NUTS_ID": "NL32", "STAT_LEVL_": 2, "SHAPE_AREA": 0.40767895522199998, "SHAPE_LEN": 3.1639832698600001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.377261499999975, 52.764805 ], [ 5.0604265, 52.578937499 ], [ 5.079161, 52.388653 ], [ 5.335462, 52.29021849899999 ], [ 5.021537500000022, 52.302498499000023 ], [ 4.794524, 52.22672649899999 ], [ 4.728766, 52.20981949899999 ], [ 4.611684, 52.31358699899999 ], [ 4.493847500000015, 52.32826000099999 ], [ 4.560596499999974, 52.437426001 ], [ 4.609676499999978, 52.573401000999979 ], [ 4.649071, 52.756177499999978 ], [ 4.730989, 52.962188498999978 ], [ 5.164383499999985, 53.000910501000021 ], [ 5.167425499999979, 52.998798498999975 ], [ 5.377261499999975, 52.764805 ] ] ] } }, -{ "type": "Feature", "id": 1420, "properties": { "NUTS_ID": "NL33", "STAT_LEVL_": 2, "SHAPE_AREA": 0.45687345162199999, "SHAPE_LEN": 3.4920526723799998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.611684, 52.31358699899999 ], [ 4.728766, 52.20981949899999 ], [ 4.794524, 52.22672649899999 ], [ 4.877899500000012, 51.937835498000027 ], [ 5.149456, 51.933452499 ], [ 5.000534, 51.820937999000023 ], [ 4.676294499999983, 51.7249185 ], [ 4.620420500000023, 51.71412650000002 ], [ 4.249017, 51.6458015 ], [ 4.161857000999987, 51.666831576999982 ], [ 4.135041090000016, 51.673303697999984 ], [ 3.678739, 51.695324001000017 ], [ 3.839083, 51.758297 ], [ 4.1277885, 52.000542497000026 ], [ 4.198018499999989, 52.054144496999982 ], [ 4.3742325, 52.187089996999987 ], [ 4.493847500000015, 52.32826000099999 ], [ 4.611684, 52.31358699899999 ] ] ] } }, -{ "type": "Feature", "id": 1427, "properties": { "NUTS_ID": "NL34", "STAT_LEVL_": 2, "SHAPE_AREA": 0.13223311163599999, "SHAPE_LEN": 4.1009217265500002 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.9776665, 51.225131998999984 ], [ 3.8563395, 51.211056 ], [ 3.380661, 51.274299497000015 ], [ 3.367216499999984, 51.368134499 ], [ 4.23481750000002, 51.348254 ], [ 3.9776665, 51.225131998999984 ] ] ], [ [ [ 4.249017, 51.6458015 ], [ 4.279565, 51.376017497000021 ], [ 4.24366950000001, 51.374729499000011 ], [ 3.4342, 51.526157499000021 ], [ 4.223578, 51.438655997000012 ], [ 4.161857000999987, 51.666831576999982 ], [ 4.249017, 51.6458015 ] ] ] ] } }, -{ "type": "Feature", "id": 1431, "properties": { "NUTS_ID": "NL41", "STAT_LEVL_": 2, "SHAPE_AREA": 0.64833468247199999, "SHAPE_LEN": 4.3603427068 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.8651585, 51.757407999 ], [ 6.047766500000023, 51.558505997999987 ], [ 5.838077, 51.566467499 ], [ 5.8402455, 51.34692400099999 ], [ 5.5662835, 51.220836497999983 ], [ 5.237716499999976, 51.261600499 ], [ 5.10218, 51.42900499699999 ], [ 4.759926, 51.50246449799999 ], [ 4.669544, 51.426383999 ], [ 4.279565, 51.376017497000021 ], [ 4.249017, 51.6458015 ], [ 4.620420500000023, 51.71412650000002 ], [ 4.676294499999983, 51.7249185 ], [ 5.000534, 51.820937999000023 ], [ 5.128057500000011, 51.73761 ], [ 5.597879499999976, 51.828082999 ], [ 5.8651585, 51.757407999 ] ] ] } }, -{ "type": "Feature", "id": 1436, "properties": { "NUTS_ID": "NL42", "STAT_LEVL_": 2, "SHAPE_AREA": 0.28219573142499998, "SHAPE_LEN": 3.5693945439900001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.953192, 51.747845998 ], [ 6.224405, 51.364978999000016 ], [ 6.072657, 51.242587497999978 ], [ 6.174812, 51.1845135 ], [ 5.877084998999976, 51.032101 ], [ 6.0869475, 50.913134999000022 ], [ 6.020998999000028, 50.754295500000012 ], [ 5.892073, 50.755237498999975 ], [ 5.682000499000026, 50.757446497999979 ], [ 5.687622, 50.811923998999987 ], [ 5.758272498999986, 50.954795 ], [ 5.766149, 51.009235499999988 ], [ 5.798274, 51.059853498999985 ], [ 5.5662835, 51.220836497999983 ], [ 5.8402455, 51.34692400099999 ], [ 5.838077, 51.566467499 ], [ 6.047766500000023, 51.558505997999987 ], [ 5.8651585, 51.757407999 ], [ 5.953192, 51.747845998 ] ] ] } }, -{ "type": "Feature", "id": 1442, "properties": { "NUTS_ID": "NO01", "STAT_LEVL_": 2, "SHAPE_AREA": 0.90365272472000002, "SHAPE_LEN": 4.8185333132599997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.822262, 60.052144998000017 ], [ 11.839729, 59.840767 ], [ 11.926970499999982, 59.790475999000023 ], [ 10.686118, 59.489406998999982 ], [ 10.5818175, 59.756759500999976 ], [ 10.764788, 59.8295445 ], [ 10.681954881000024, 59.884828632999984 ], [ 10.64198, 59.911508500000025 ], [ 10.497314500000016, 59.7883385 ], [ 10.489164999000025, 60.01726 ], [ 10.600720500000023, 60.13161 ], [ 10.680319499, 60.1335305 ], [ 10.933902499999988, 60.346691997999983 ], [ 10.713308499999982, 60.524164997000014 ], [ 11.153986, 60.605148000999975 ], [ 11.2095645, 60.504914498 ], [ 11.822262, 60.052144998000017 ] ] ] } }, -{ "type": "Feature", "id": 1445, "properties": { "NUTS_ID": "NO02", "STAT_LEVL_": 2, "SHAPE_AREA": 8.6932138411000004, "SHAPE_LEN": 15.8007202379 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 12.2546595, 62.331024496999987 ], [ 12.29937, 62.267494 ], [ 12.137665, 61.723816998000018 ], [ 12.870847500000025, 61.356494998000016 ], [ 12.670176500000025, 61.055976498 ], [ 12.22399, 61.013078001 ], [ 12.606881499999986, 60.512742496999977 ], [ 12.499544999000022, 60.09765699799999 ], [ 11.839729, 59.840767 ], [ 11.822262, 60.052144998000017 ], [ 11.2095645, 60.504914498 ], [ 11.153986, 60.605148000999975 ], [ 10.713308499999982, 60.524164997000014 ], [ 10.933902499999988, 60.346691997999983 ], [ 10.680319499, 60.1335305 ], [ 10.600720500000023, 60.13161 ], [ 10.03533, 60.632055001000026 ], [ 9.478695, 60.530145498000024 ], [ 8.251701, 61.073943997000015 ], [ 8.051171, 61.232776500999989 ], [ 8.262332500000014, 61.533979500999976 ], [ 7.5138235, 61.727364500000022 ], [ 7.349109, 62.00768199700002 ], [ 9.062062, 62.372608497999977 ], [ 9.792455, 62.287932001 ], [ 10.1969, 62.687693500000023 ], [ 12.2546595, 62.331024496999987 ] ] ] } }, -{ "type": "Feature", "id": 1448, "properties": { "NUTS_ID": "NO03", "STAT_LEVL_": 2, "SHAPE_AREA": 5.6903743056099998, "SHAPE_LEN": 14.528180644000001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 8.251701, 61.073943997000015 ], [ 9.478695, 60.530145498000024 ], [ 10.03533, 60.632055001000026 ], [ 10.600720500000023, 60.13161 ], [ 10.489164999000025, 60.01726 ], [ 10.497314500000016, 59.7883385 ], [ 10.54188649299999, 59.708155780000027 ], [ 10.555847737000022, 59.683040208000023 ], [ 10.617811, 59.571571499000015 ], [ 10.421314, 59.525081500999988 ], [ 10.4391965, 59.665851498999984 ], [ 10.212189500000022, 59.737282 ], [ 10.3198815, 59.691343501 ], [ 10.374606, 59.676967499999989 ], [ 10.386558499999978, 59.275020498 ], [ 10.273399499999982, 59.041736500000013 ], [ 9.839197001, 59.044178998 ], [ 9.289463, 58.839130496 ], [ 9.46771050000001, 58.829845498 ], [ 9.365971, 58.771349 ], [ 8.996341500000028, 58.991956499000025 ], [ 7.966328499999975, 58.968421 ], [ 7.506116001, 59.607801 ], [ 7.214666500000021, 59.672687 ], [ 7.096287500000017, 59.782777 ], [ 7.488040500000011, 60.098838498000021 ], [ 7.732114500000023, 60.520970499999976 ], [ 7.46964, 60.675547498000014 ], [ 8.251701, 61.073943997000015 ] ] ], [ [ [ 11.8261965, 59.237849998 ], [ 11.632557, 58.908306501000027 ], [ 11.460827, 58.988658499 ], [ 11.15222652599999, 59.068580457 ], [ 11.133916596, 59.073322399 ], [ 10.825053, 59.153312501000016 ], [ 10.686118, 59.489406998999982 ], [ 11.926970499999982, 59.790475999000023 ], [ 11.93987850000002, 59.69458099799999 ], [ 11.691129, 59.589547499999981 ], [ 11.8261965, 59.237849998 ] ] ] ] } }, -{ "type": "Feature", "id": 1453, "properties": { "NUTS_ID": "NO04", "STAT_LEVL_": 2, "SHAPE_AREA": 3.91684786219, "SHAPE_LEN": 12.8731007401 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.214666500000021, 59.672687 ], [ 7.506116001, 59.607801 ], [ 7.966328499999975, 58.968421 ], [ 8.996341500000028, 58.991956499000025 ], [ 9.365971, 58.771349 ], [ 9.082190498999978, 58.74871449699998 ], [ 9.0575915, 58.725215999 ], [ 9.244501, 58.725330499999984 ], [ 8.185152, 58.1429415 ], [ 7.038199, 58.021426999000028 ], [ 6.553461500000026, 58.117786498999976 ], [ 6.89118, 58.2743605 ], [ 6.438839, 58.2908195 ], [ 5.491752, 58.75478 ], [ 5.5742715, 59.030342500000017 ], [ 5.995267500000011, 58.968890998 ], [ 6.217452499999979, 59.266296497999974 ], [ 5.941965499999981, 59.361309001 ], [ 5.614074, 59.330623499000012 ], [ 5.550886, 59.271621499999981 ], [ 5.295012441999972, 59.370869887000026 ], [ 5.298477, 59.145370501 ], [ 5.175062500000024, 59.178374497999982 ], [ 5.302875500000027, 59.481168001000015 ], [ 5.534834, 59.7320785 ], [ 5.506673157000023, 59.52538185899999 ], [ 5.794665721, 59.650943915000028 ], [ 5.80379270899999, 59.649380173999987 ], [ 5.823972500000025, 59.645922998 ], [ 6.651835, 59.711413 ], [ 7.096287500000017, 59.782777 ], [ 7.214666500000021, 59.672687 ] ] ] } }, -{ "type": "Feature", "id": 1457, "properties": { "NUTS_ID": "NO05", "STAT_LEVL_": 2, "SHAPE_AREA": 7.4945283417799997, "SHAPE_LEN": 35.447629056899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.115073511999981, 60.965715414999977 ], [ 5.026263, 61.01004050099999 ], [ 5.426630526999986, 61.043119309000019 ], [ 5.394584, 61.069965497 ], [ 4.947169499999973, 61.25885 ], [ 5.209688823000022, 61.334528406 ], [ 4.977364500000022, 61.41730899800001 ], [ 5.843049, 61.45913699800002 ], [ 5.24131566599999, 61.583933230000014 ], [ 4.994847999, 61.591152001000012 ], [ 4.969778, 61.72112249700001 ], [ 6.846349, 61.870303997 ], [ 5.4584625, 61.93935 ], [ 5.089433, 62.167289499999981 ], [ 5.491458, 62.014787500000011 ], [ 5.6237655, 62.067054500999973 ], [ 5.405087499999979, 62.1274295 ], [ 6.3250655, 62.060600500000021 ], [ 5.931158, 62.21788399799999 ], [ 6.328697, 62.37550749799999 ], [ 6.653805499999976, 62.193794497999988 ], [ 6.573409500000025, 62.54216 ], [ 6.2564425, 62.529735500000015 ], [ 6.334281499999975, 62.61331949800001 ], [ 8.146601499999974, 62.688270500999977 ], [ 6.898579, 62.909847501 ], [ 7.3014915, 63.010261496999988 ], [ 7.450778500000013, 62.90481949799999 ], [ 8.11747, 62.921828998000024 ], [ 8.107145499000012, 63.105423 ], [ 8.764103, 63.18451 ], [ 9.4685455, 63.177874001000021 ], [ 9.463019499999973, 62.848407001 ], [ 8.919962, 62.711771 ], [ 9.24373, 62.556077999000024 ], [ 9.062062, 62.372608497999977 ], [ 7.349109, 62.00768199700002 ], [ 7.5138235, 61.727364500000022 ], [ 8.262332500000014, 61.533979500999976 ], [ 8.051171, 61.232776500999989 ], [ 8.251701, 61.073943997000015 ], [ 7.46964, 60.675547498000014 ], [ 7.732114500000023, 60.520970499999976 ], [ 7.488040500000011, 60.098838498000021 ], [ 7.096287500000017, 59.782777 ], [ 6.651835, 59.711413 ], [ 5.823972500000025, 59.645922998 ], [ 5.80379270899999, 59.649380173999987 ], [ 5.794665721, 59.650943915000028 ], [ 6.381009, 59.874691 ], [ 5.675114, 59.848640499 ], [ 5.994348, 59.954563 ], [ 6.0828945, 60.191448 ], [ 6.353219500000023, 60.370498998000016 ], [ 6.829082746999973, 60.471445758000016 ], [ 6.716949, 60.520217996999975 ], [ 6.0151285, 60.269165 ], [ 5.817266, 59.983326 ], [ 5.5750435, 60.153873498999985 ], [ 5.756293, 60.399605 ], [ 5.446748500000012, 60.156437000999972 ], [ 5.2010105, 60.290233501999978 ], [ 5.309116500000016, 60.388206502 ], [ 5.262637499999983, 60.505832496999972 ], [ 5.7384535, 60.459213499999976 ], [ 5.7344455, 60.673576500000024 ], [ 5.708317500000021, 60.471111501 ], [ 5.339822, 60.541588 ], [ 5.706546, 60.759361497999976 ], [ 5.280158, 60.540760001000024 ], [ 5.207727998999985, 60.621887001 ], [ 5.281049, 60.632553 ], [ 4.94567, 60.809383500000024 ], [ 5.469385499999987, 60.659252 ], [ 5.140299, 60.84025250000002 ], [ 5.115073511999981, 60.965715414999977 ] ] ], [ [ [ 5.396219498999983, 59.711742501 ], [ 5.183555500000011, 59.574615500999982 ], [ 5.0594595, 59.854045998 ], [ 5.179249, 59.877666498999986 ], [ 5.396219498999983, 59.711742501 ] ] ] ] } }, -{ "type": "Feature", "id": 1461, "properties": { "NUTS_ID": "NO06", "STAT_LEVL_": 2, "SHAPE_AREA": 7.1201230414800003, "SHAPE_LEN": 28.430885440099999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 11.514355244, 64.878553708000027 ], [ 11.278464499999984, 64.857429498999977 ], [ 11.9609795, 65.077147997999987 ], [ 11.981972, 65.070815497000012 ], [ 12.0461065, 65.06245 ], [ 12.092824, 65.0398255 ], [ 12.187348499999985, 65.000111498000024 ], [ 12.182329, 64.981381 ], [ 14.325985, 65.118916001 ], [ 13.654257500000028, 64.580340498999988 ], [ 14.113869500000021, 64.462484501 ], [ 14.157109, 64.195054497 ], [ 13.967524500000025, 64.00797 ], [ 12.683565, 63.9742235 ], [ 12.149767, 63.593946999000025 ], [ 11.974581, 63.269228 ], [ 12.0524555, 63.1834445 ], [ 12.218231, 63.000332500000013 ], [ 12.056142, 62.611918499000012 ], [ 12.2546595, 62.331024496999987 ], [ 10.1969, 62.687693500000023 ], [ 9.792455, 62.287932001 ], [ 9.062062, 62.372608497999977 ], [ 9.24373, 62.556077999000024 ], [ 8.919962, 62.711771 ], [ 9.463019499999973, 62.848407001 ], [ 9.4685455, 63.177874001000021 ], [ 8.764103, 63.18451 ], [ 8.832189, 63.201980000999981 ], [ 8.490692, 63.2775115 ], [ 8.765663999000026, 63.34213649899999 ], [ 8.650367, 63.400879 ], [ 8.7551115, 63.424341 ], [ 9.0929175, 63.287159 ], [ 9.501772, 63.39708699800002 ], [ 9.249117, 63.367828497 ], [ 9.147209, 63.488140000999977 ], [ 9.753410499999973, 63.645359000999974 ], [ 9.714933499999972, 63.615505000999974 ], [ 9.977688, 63.441615997999975 ], [ 9.8231755, 63.312244501 ], [ 10.85359, 63.439093496999988 ], [ 10.941581, 63.564289 ], [ 10.627927, 63.546741500999985 ], [ 11.458975, 63.802337500000021 ], [ 11.0724775, 63.858989501 ], [ 11.501289499999984, 64.005218501 ], [ 11.222313, 64.074219001000017 ], [ 10.5912035, 63.804355499999986 ], [ 11.070417500000019, 63.8419495 ], [ 10.955013501, 63.7456095 ], [ 10.170315, 63.526134496999987 ], [ 9.8057985, 63.626873 ], [ 10.130084, 63.754104499999983 ], [ 9.529121499999974, 63.712398496999981 ], [ 10.010268949000022, 64.045650763000026 ], [ 10.634974129999989, 64.391002416999982 ], [ 10.548171, 64.44136050100002 ], [ 11.3407555, 64.436919998 ], [ 11.225456, 64.311905001000014 ], [ 11.7259625, 64.584793 ], [ 11.1820715, 64.740906 ], [ 11.514355244, 64.878553708000027 ] ] ] } }, -{ "type": "Feature", "id": 1464, "properties": { "NUTS_ID": "NO07", "STAT_LEVL_": 2, "SHAPE_AREA": 22.165087784800001, "SHAPE_LEN": 102.592049905 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.548399, 70.96723950099999 ], [ 27.855804499999977, 70.430145499999981 ], [ 28.510006, 70.447929999 ], [ 28.397211, 70.542122001 ], [ 28.96657349899999, 70.884941 ], [ 31.060808, 70.287788501000023 ], [ 28.73865071, 70.155567389999987 ], [ 28.575159, 70.118652500999985 ], [ 29.767906536, 69.823490934 ], [ 29.459511, 69.648964001000024 ], [ 30.839926, 69.775808000999973 ], [ 30.954538500000012, 69.632432 ], [ 30.085324500000013, 69.658104501000025 ], [ 30.1884235, 69.568457500000022 ], [ 28.92968, 69.051905 ], [ 28.8057925, 69.111147 ], [ 29.336974, 69.478310500000021 ], [ 27.984522, 70.01396549899999 ], [ 25.950607, 69.6965505 ], [ 25.702101, 69.253661501000011 ], [ 25.777502500000026, 69.018279001 ], [ 24.903199500000028, 68.554591 ], [ 22.374526, 68.716667 ], [ 21.9836115, 69.072893500000021 ], [ 21.2788215, 69.311883998999974 ], [ 20.548636499999986, 69.059968501000014 ], [ 20.0600475, 69.045759001000022 ], [ 20.3358725, 68.802312500000028 ], [ 19.921397, 68.356013001 ], [ 18.125925, 68.536515999000017 ], [ 18.151354, 68.19879 ], [ 17.899761500000011, 67.969372 ], [ 17.281524, 68.118815 ], [ 16.158001500000012, 67.51915900099999 ], [ 16.387759, 67.045462499999985 ], [ 15.3772265, 66.484303996999984 ], [ 15.453994500000022, 66.345233501 ], [ 14.516289, 66.132579 ], [ 14.6254765, 65.811808499999984 ], [ 14.325985, 65.118916001 ], [ 12.182329, 64.981381 ], [ 12.9642955, 65.322120499999983 ], [ 12.041082500000016, 65.216194 ], [ 12.292716, 65.588462998000011 ], [ 12.781976499999985, 65.462524499999972 ], [ 12.347975, 65.627327 ], [ 12.646986, 65.814437997000027 ], [ 12.666879418, 65.920708010999988 ], [ 12.3801345, 65.894111 ], [ 14.147304500000018, 66.330467 ], [ 13.0099535, 66.191283999 ], [ 13.562423500000023, 66.30467999699999 ], [ 12.990386999, 66.348778 ], [ 13.733414499999981, 66.609176500999979 ], [ 13.2072895, 66.716881 ], [ 14.000651, 66.797889500999986 ], [ 13.492176, 66.949196500000028 ], [ 14.01318550000002, 66.961944501 ], [ 14.0676185, 67.161491501 ], [ 14.511739499999976, 67.207649 ], [ 15.08839799899999, 67.236534 ], [ 15.433605, 67.104980500000011 ], [ 15.481187, 67.1844635 ], [ 15.162948498999981, 67.329765 ], [ 14.308716, 67.263771 ], [ 15.650709213000027, 67.53825820899999 ], [ 15.160784499999977, 67.632698 ], [ 15.855372499999987, 67.7099 ], [ 14.75716, 67.804359499999975 ], [ 16.001165500000013, 67.996216002999972 ], [ 15.526616, 68.065216002 ], [ 15.395943499999987, 68.036521999 ], [ 15.440778500000022, 68.024948 ], [ 15.4147835, 67.995910499999979 ], [ 15.275926500000025, 68.050613 ], [ 16.062347499, 68.255936001 ], [ 16.819980499999986, 68.155219999 ], [ 16.275680500000021, 68.373138499999982 ], [ 17.900738, 68.417808 ], [ 16.075683500000025, 68.414055001 ], [ 16.5795895, 68.541367 ], [ 17.685274, 68.674110499999983 ], [ 17.251898, 68.75971199899999 ], [ 17.805559, 68.749992500000019 ], [ 17.447077, 68.907905501000016 ], [ 18.166633499, 69.1502 ], [ 17.96954549899999, 69.228561501 ], [ 18.238685499999974, 69.482642999 ], [ 19.547487499999988, 69.214874499000018 ], [ 18.934316500000023, 69.59994500099998 ], [ 19.2743185, 69.779205499999989 ], [ 20.394979499999977, 69.890387998999984 ], [ 19.930265500000019, 69.266662500999985 ], [ 20.459503, 69.762077498999986 ], [ 21.325062, 69.909232998999983 ], [ 21.241577, 70.008903499999974 ], [ 22.140845, 69.745193501000017 ], [ 21.727436, 70.05191050000002 ], [ 21.19089, 70.221240500000022 ], [ 21.424858, 70.22282400099999 ], [ 21.478477275999978, 70.200361853 ], [ 21.493496359, 70.199272055999984 ], [ 21.56427, 70.323387001000015 ], [ 21.8320885, 70.168754501000024 ], [ 21.782270499999981, 70.258720499999981 ], [ 21.983658, 70.329452499000013 ], [ 22.96682, 70.189369000999989 ], [ 23.001796500000012, 69.91750349900002 ], [ 23.407093, 69.964683499999978 ], [ 23.52833, 70.015915 ], [ 23.132837, 70.085571501 ], [ 23.179638, 70.216247501 ], [ 23.246681500000022, 70.248192 ], [ 24.090675499999975, 70.541496499 ], [ 24.298256, 70.686134501000026 ], [ 24.236952, 70.8358915 ], [ 24.553296499999988, 70.97564699899999 ], [ 25.911754499999972, 70.875648500000011 ], [ 25.086530499999981, 70.514610499000014 ], [ 24.912155, 70.096092 ], [ 25.153381500000023, 70.064895499999977 ], [ 26.572368499999982, 70.954368500999976 ], [ 26.733936500000027, 70.824897998999973 ], [ 26.475652500000024, 70.354866 ], [ 27.032476499999973, 70.483855999000014 ], [ 26.951067, 70.546791 ], [ 27.7029875, 70.800621001000025 ], [ 27.1011425, 70.93241899899999 ], [ 27.66123, 71.126999001 ], [ 28.548399, 70.96723950099999 ] ] ], [ [ [ 16.005573, 68.7555385 ], [ 15.7227115, 68.536804001 ], [ 16.076727, 68.748443499000018 ], [ 16.302828, 68.715187001 ], [ 16.123302500000023, 68.84416199899999 ], [ 16.409397, 68.857864499000016 ], [ 16.456951999000012, 68.557357998999976 ], [ 14.98062149899999, 68.273948500000017 ], [ 15.716285, 68.693619001 ], [ 15.464602500000012, 68.753418001 ], [ 15.619679500000018, 68.952705499999979 ], [ 15.959016500000018, 68.889045499000019 ], [ 15.963360495000018, 68.876588513 ], [ 15.988082191999979, 68.805695734999972 ], [ 16.005573, 68.7555385 ] ] ], [ [ [ 23.4573385, 70.765121500000021 ], [ 22.798172, 70.513825000999987 ], [ 21.928592499999979, 70.642860499999983 ], [ 23.4573385, 70.765121500000021 ] ] ], [ [ [ 18.080169500000011, 69.426903001000028 ], [ 16.782012999000017, 69.0575945 ], [ 17.658531, 69.487670998999988 ], [ 18.080169500000011, 69.426903001000028 ] ] ], [ [ [ 15.41872, 68.7030565 ], [ 14.368575998999972, 68.684494 ], [ 15.317963500000019, 68.917221 ], [ 15.253855, 68.755890001000012 ], [ 15.41872, 68.7030565 ] ] ], [ [ [ 15.165045500000019, 68.442626999000026 ], [ 14.206444499999975, 68.17415599899999 ], [ 14.4163855, 68.393623499 ], [ 15.165045500000019, 68.442626999000026 ] ] ] ] } }, -{ "type": "Feature", "id": 1470, "properties": { "NUTS_ID": "PL11", "STAT_LEVL_": 2, "SHAPE_AREA": 2.4276629344199998, "SHAPE_LEN": 6.7897286233400003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 20.432815, 51.33940499900001 ], [ 19.993847, 51.183954001000018 ], [ 20.0394705, 50.990206496999974 ], [ 19.74706, 50.86597000099999 ], [ 19.243142499999976, 51.036844497 ], [ 18.672954499000014, 51.056902501000025 ], [ 18.1636815, 51.172516997 ], [ 18.0745215, 51.349915001 ], [ 18.47196550000001, 51.851005499 ], [ 18.685665500000027, 51.821002997999983 ], [ 18.827809, 52.06418800099999 ], [ 19.04712, 52.332803999000021 ], [ 19.289184499999976, 52.39271249799998 ], [ 19.936101, 52.299733499000013 ], [ 20.658493, 51.724147999000024 ], [ 20.385006, 51.641610001 ], [ 20.4248905, 51.611619500000018 ], [ 20.528847499999983, 51.462917996999977 ], [ 20.432815, 51.33940499900001 ] ] ] } }, -{ "type": "Feature", "id": 1476, "properties": { "NUTS_ID": "PL12", "STAT_LEVL_": 2, "SHAPE_AREA": 4.6157702037700004, "SHAPE_LEN": 11.415563776799999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.128409, 52.287841500000013 ], [ 22.622901499000022, 52.018744497 ], [ 21.889174500000024, 51.973184 ], [ 21.879981, 51.69363149899999 ], [ 21.6155425, 51.617562 ], [ 21.87317600099999, 51.474913499000024 ], [ 21.802998, 51.072078998999984 ], [ 21.630164499999978, 51.06338899799999 ], [ 20.432815, 51.33940499900001 ], [ 20.528847499999983, 51.462917996999977 ], [ 20.4248905, 51.611619500000018 ], [ 20.385006, 51.641610001 ], [ 20.658493, 51.724147999000024 ], [ 19.936101, 52.299733499000013 ], [ 19.289184499999976, 52.39271249799998 ], [ 19.522742999, 52.74920049799999 ], [ 19.444664, 52.939042500000028 ], [ 19.684806, 52.963038998 ], [ 19.7615955, 53.15179649800001 ], [ 20.411137, 53.214165 ], [ 20.675953999, 53.269529498 ], [ 21.55169, 53.478128001000016 ], [ 21.598199912999974, 53.480181970999979 ], [ 21.735427500000014, 53.312727999 ], [ 21.694427500000018, 53.138093997999988 ], [ 22.453771500000016, 52.788238499999977 ], [ 22.408589, 52.609689999000011 ], [ 22.58041350000002, 52.393157997 ], [ 23.128409, 52.287841500000013 ] ] ] } }, -{ "type": "Feature", "id": 1486, "properties": { "NUTS_ID": "PL21", "STAT_LEVL_": 2, "SHAPE_AREA": 1.90934263009, "SHAPE_LEN": 6.1692243857299998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.208831499999974, 50.354897499 ], [ 21.150439, 49.976484500000026 ], [ 21.297149499999989, 49.842864 ], [ 21.241772, 49.776104499999974 ], [ 21.397712500000011, 49.433793998999988 ], [ 20.9237225, 49.296234498999979 ], [ 20.6149395, 49.417832998999984 ], [ 19.883929500000022, 49.204176999000026 ], [ 19.467386499999975, 49.613767 ], [ 19.414951499999972, 49.775265 ], [ 19.09321, 49.956658996999977 ], [ 19.253810499999986, 50.134193 ], [ 19.489045499999975, 50.397027499999979 ], [ 19.8445375, 50.434195499999987 ], [ 19.949966500000016, 50.504782501000022 ], [ 20.681539, 50.205875497000022 ], [ 21.208831499999974, 50.354897499 ] ] ] } }, -{ "type": "Feature", "id": 1493, "properties": { "NUTS_ID": "PL22", "STAT_LEVL_": 2, "SHAPE_AREA": 1.48515741573, "SHAPE_LEN": 6.2803044208900003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.74706, 50.86597000099999 ], [ 19.712949499999979, 50.729156000999978 ], [ 19.949966500000016, 50.504782501000022 ], [ 19.8445375, 50.434195499999987 ], [ 19.489045499999975, 50.397027499999979 ], [ 19.253810499999986, 50.134193 ], [ 19.09321, 49.956658996999977 ], [ 19.414951499999972, 49.775265 ], [ 19.467386499999975, 49.613767 ], [ 19.153403, 49.40377700099998 ], [ 18.851551, 49.51718900100002 ], [ 18.575724, 49.910423 ], [ 18.035060999, 50.06577199899999 ], [ 18.059780499999988, 50.174652499999979 ], [ 18.425866499999984, 50.248965498000018 ], [ 18.607473500000026, 50.550011 ], [ 18.615877500000011, 50.85358750099999 ], [ 18.672954499000014, 51.056902501000025 ], [ 19.243142499999976, 51.036844497 ], [ 19.74706, 50.86597000099999 ] ] ] } }, -{ "type": "Feature", "id": 1503, "properties": { "NUTS_ID": "PL31", "STAT_LEVL_": 2, "SHAPE_AREA": 3.2377427514699999, "SHAPE_LEN": 8.0098617805100005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.178338, 52.283140998000022 ], [ 23.653733, 52.072494999000014 ], [ 23.529021, 51.731750998999985 ], [ 23.617665999, 51.507613999 ], [ 23.709221, 51.277648498000019 ], [ 24.1457825, 50.869376999 ], [ 24.0345575, 50.44484350099998 ], [ 23.547642, 50.251602 ], [ 23.387574500000028, 50.405392999000014 ], [ 22.638222, 50.303077497 ], [ 22.437193, 50.399717499000019 ], [ 22.5862, 50.477348498000026 ], [ 22.519738, 50.583233499000016 ], [ 21.8643035, 50.80270649900001 ], [ 21.802998, 51.072078998999984 ], [ 21.87317600099999, 51.474913499000024 ], [ 21.6155425, 51.617562 ], [ 21.879981, 51.69363149899999 ], [ 21.889174500000024, 51.973184 ], [ 22.622901499000022, 52.018744497 ], [ 23.128409, 52.287841500000013 ], [ 23.178338, 52.283140998000022 ] ] ] } }, -{ "type": "Feature", "id": 1508, "properties": { "NUTS_ID": "PL32", "STAT_LEVL_": 2, "SHAPE_AREA": 2.3689456279900001, "SHAPE_LEN": 7.2683387219400002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.547642, 50.251602 ], [ 22.6861495, 49.57316549699999 ], [ 22.894087, 49.016692998999986 ], [ 22.56684, 49.088377498999989 ], [ 21.397712500000011, 49.433793998999988 ], [ 21.241772, 49.776104499999974 ], [ 21.297149499999989, 49.842864 ], [ 21.150439, 49.976484500000026 ], [ 21.208831499999974, 50.354897499 ], [ 21.8643035, 50.80270649900001 ], [ 22.519738, 50.583233499000016 ], [ 22.5862, 50.477348498000026 ], [ 22.437193, 50.399717499000019 ], [ 22.638222, 50.303077497 ], [ 23.387574500000028, 50.405392999000014 ], [ 23.547642, 50.251602 ] ] ] } }, -{ "type": "Feature", "id": 1513, "properties": { "NUTS_ID": "PL33", "STAT_LEVL_": 2, "SHAPE_AREA": 1.5499128468800001, "SHAPE_LEN": 5.2599395959399997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 21.802998, 51.072078998999984 ], [ 21.8643035, 50.80270649900001 ], [ 21.208831499999974, 50.354897499 ], [ 20.681539, 50.205875497000022 ], [ 19.949966500000016, 50.504782501000022 ], [ 19.712949499999979, 50.729156000999978 ], [ 19.74706, 50.86597000099999 ], [ 20.0394705, 50.990206496999974 ], [ 19.993847, 51.183954001000018 ], [ 20.432815, 51.33940499900001 ], [ 21.630164499999978, 51.06338899799999 ], [ 21.802998, 51.072078998999984 ] ] ] } }, -{ "type": "Feature", "id": 1516, "properties": { "NUTS_ID": "PL34", "STAT_LEVL_": 2, "SHAPE_AREA": 2.7322079498699998, "SHAPE_LEN": 7.5099734213299998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 23.51465, 53.956559997999989 ], [ 23.588702, 53.695928497000011 ], [ 23.918259, 53.157621999000014 ], [ 23.916239, 52.904812 ], [ 23.93864, 52.712916001 ], [ 23.178338, 52.283140998000022 ], [ 23.128409, 52.287841500000013 ], [ 22.58041350000002, 52.393157997 ], [ 22.408589, 52.609689999000011 ], [ 22.453771500000016, 52.788238499999977 ], [ 21.694427500000018, 53.138093997999988 ], [ 21.735427500000014, 53.312727999 ], [ 21.598199912999974, 53.480181970999979 ], [ 22.135728, 53.544539998 ], [ 22.703502500000013, 53.767354496999985 ], [ 22.782806, 53.915489498999989 ], [ 22.476556500000015, 54.201305500999979 ], [ 22.792095500000016, 54.363358996999978 ], [ 23.321498500000018, 54.25332599799998 ], [ 23.51465, 53.956559997999989 ] ] ] } }, -{ "type": "Feature", "id": 1521, "properties": { "NUTS_ID": "PL41", "STAT_LEVL_": 2, "SHAPE_AREA": 3.98911898331, "SHAPE_LEN": 10.1502319712 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.390653, 53.490964 ], [ 17.438793499999974, 53.26751450099999 ], [ 17.3015565, 52.994803 ], [ 17.509582500000022, 52.917767997 ], [ 17.458523, 52.738948000999983 ], [ 18.377150500000027, 52.53746350099999 ], [ 19.04712, 52.332803999000021 ], [ 18.827809, 52.06418800099999 ], [ 18.685665500000027, 51.821002997999983 ], [ 18.47196550000001, 51.851005499 ], [ 18.0745215, 51.349915001 ], [ 18.1636815, 51.172516997 ], [ 17.939456, 51.10886499899999 ], [ 17.795269500000018, 51.194146000999979 ], [ 17.556245, 51.58430149899999 ], [ 17.257433, 51.642843001000017 ], [ 16.828372, 51.57218799899999 ], [ 16.416191, 51.784865 ], [ 15.833296, 52.11112300100001 ], [ 15.880810499, 52.290429499000027 ], [ 15.776346499999988, 52.637869501000011 ], [ 15.946907, 52.75489599799999 ], [ 15.962497499999984, 53.041380996999976 ], [ 16.3173, 53.043952499999989 ], [ 16.6969115, 53.301046 ], [ 16.45421, 53.488475500999982 ], [ 16.892248, 53.655868999 ], [ 17.390653, 53.490964 ] ] ] } }, -{ "type": "Feature", "id": 1528, "properties": { "NUTS_ID": "PL42", "STAT_LEVL_": 2, "SHAPE_AREA": 3.1298885351300001, "SHAPE_LEN": 9.1584286662000007 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.892248, 53.655868999 ], [ 16.45421, 53.488475500999982 ], [ 16.6969115, 53.301046 ], [ 16.3173, 53.043952499999989 ], [ 15.962497499999984, 53.041380996999976 ], [ 14.904187, 52.883909499000026 ], [ 14.565063, 52.624497 ], [ 14.436438, 52.679900498999984 ], [ 14.156692, 52.895590998999978 ], [ 14.143658, 52.9613685 ], [ 14.412157, 53.329635998000015 ], [ 14.267542, 53.697806496999988 ], [ 14.619581499999981, 53.649783999000022 ], [ 14.573513, 53.849196999000014 ], [ 14.2130775, 53.866479498999979 ], [ 14.226302, 53.928652998000018 ], [ 15.388074500000016, 54.158907 ], [ 16.699085, 54.569247001 ], [ 16.858620499999972, 54.38257649799999 ], [ 16.792764499999976, 53.985550499999988 ], [ 16.982053499000017, 53.904909499999974 ], [ 16.892248, 53.655868999 ] ] ] } }, -{ "type": "Feature", "id": 1536, "properties": { "NUTS_ID": "RO42", "STAT_LEVL_": 2, "SHAPE_AREA": 3.6424982529699999, "SHAPE_LEN": 9.0187448510500001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.676575500000013, 46.405825497000023 ], [ 22.748716, 46.351207499999987 ], [ 23.234864, 46.030501996999988 ], [ 23.597270499999979, 45.473471499000027 ], [ 23.59064, 45.353072499 ], [ 22.686246499999982, 45.257960998999977 ], [ 22.656632, 45.108166997000012 ], [ 22.418032, 44.756857498999977 ], [ 22.207799, 44.816878497 ], [ 22.154162, 44.59519949700001 ], [ 22.016132500000026, 44.599202499 ], [ 22.012350500000025, 44.602318498999978 ], [ 21.35847, 44.82161199699999 ], [ 21.560126500000024, 44.8890065 ], [ 21.479178499999989, 45.193027501000017 ], [ 21.016575, 45.324627497999984 ], [ 20.662833, 45.794115998999985 ], [ 20.264296, 46.1263735 ], [ 20.705303500000014, 46.160937499 ], [ 20.7756, 46.275909999000021 ], [ 21.103170499999976, 46.262590497000019 ], [ 21.441398, 46.651467 ], [ 22.676575500000013, 46.405825497000023 ] ] ] } }, -{ "type": "Feature", "id": 1543, "properties": { "NUTS_ID": "SE11", "STAT_LEVL_": 2, "SHAPE_AREA": 1.0267044483600001, "SHAPE_LEN": 5.9373756798599997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.572396, 58.950852498000017 ], [ 17.245373001000019, 59.204196997999986 ], [ 17.416126500000018, 59.384139998000023 ], [ 17.629102499999988, 59.693004496000015 ], [ 18.3647995, 59.864387497 ], [ 18.513265499999989, 60.14808899799999 ], [ 18.838097, 60.110722501 ], [ 19.0854185, 59.758264497000027 ], [ 18.058382209, 59.379042366000022 ], [ 18.138552267000023, 59.332316024000022 ], [ 18.708546500000011, 59.290029998000023 ], [ 17.991549570000018, 58.966979990000027 ], [ 17.868635241999982, 58.847063186000014 ], [ 17.850585, 58.901825998999982 ], [ 17.827534277999973, 58.884624761999987 ], [ 17.605396633, 58.94228633099999 ], [ 17.592441408000013, 58.945649194 ], [ 17.572396, 58.950852498000017 ] ] ] } }, -{ "type": "Feature", "id": 1545, "properties": { "NUTS_ID": "SE12", "STAT_LEVL_": 2, "SHAPE_AREA": 6.6381811610500003, "SHAPE_LEN": 16.423212745299999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 18.513265499999989, 60.14808899799999 ], [ 18.3647995, 59.864387497 ], [ 17.629102499999988, 59.693004496000015 ], [ 17.416126500000018, 59.384139998000023 ], [ 17.245373001000019, 59.204196997999986 ], [ 17.572396, 58.950852498000017 ], [ 16.75066350100002, 58.626932001 ], [ 16.218891636000023, 58.625096370999984 ], [ 16.948542, 58.4797815 ], [ 16.414471, 58.475954499000011 ], [ 16.927406, 58.335789498 ], [ 16.627013499999975, 58.356352500000014 ], [ 16.854670499, 58.172553497000024 ], [ 16.666683499999976, 57.996076497999979 ], [ 16.239588, 58.134933499999988 ], [ 15.942313999000021, 57.803287497999975 ], [ 15.421051, 57.704879498000025 ], [ 15.1283585, 57.716312501 ], [ 14.982714, 58.1491125 ], [ 14.41671, 58.187240497 ], [ 14.778936499, 58.645992501000023 ], [ 14.295995, 59.012779501000011 ], [ 14.437155500000017, 60.026160996999977 ], [ 15.422092500000019, 59.854747499999974 ], [ 15.801567, 60.179103499 ], [ 16.703831, 60.195720498000014 ], [ 17.192478, 60.300712499999975 ], [ 17.370218, 60.654461500000025 ], [ 17.675121999, 60.505647996999983 ], [ 17.9892855, 60.6041095 ], [ 18.617636, 60.232382500000028 ], [ 18.310146499999973, 60.316625499999986 ], [ 18.513265499999989, 60.14808899799999 ] ] ] } }, -{ "type": "Feature", "id": 1552, "properties": { "NUTS_ID": "SE21", "STAT_LEVL_": 2, "SHAPE_AREA": 5.3215564680699998, "SHAPE_LEN": 16.526624023499998 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 15.1283585, 57.716312501 ], [ 15.421051, 57.704879498000025 ], [ 15.942313999000021, 57.803287497999975 ], [ 16.239588, 58.134933499999988 ], [ 16.666683499999976, 57.996076497999979 ], [ 16.690222393, 57.99604851399999 ], [ 16.73475643099999, 57.995995569 ], [ 16.813461, 57.995902 ], [ 16.727634500000022, 57.443552997999973 ], [ 16.0498715, 56.321888500999989 ], [ 15.586373499999979, 56.48294 ], [ 15.363503499999979, 56.48237599700002 ], [ 14.514669500000025, 56.460036998000021 ], [ 13.462636499999974, 56.428188501000022 ], [ 13.298661, 56.823604500999977 ], [ 13.681201, 56.972114501000021 ], [ 13.100760499999978, 57.145515499 ], [ 13.688058, 57.558208501000024 ], [ 13.772147, 58.048560996999981 ], [ 14.41671, 58.187240497 ], [ 14.982714, 58.1491125 ], [ 15.1283585, 57.716312501 ] ] ], [ [ [ 18.711624, 57.244686498000021 ], [ 18.340005500000018, 57.072327998999981 ], [ 18.091156, 57.259374001000026 ], [ 18.106193500000018, 57.53464150100001 ], [ 18.777192500000012, 57.867417000999978 ], [ 19.097435, 57.819173001000024 ], [ 18.810876, 57.705975501000012 ], [ 18.761467499999981, 57.469703501000026 ], [ 18.917816500000015, 57.403347499 ], [ 18.711624, 57.244686498000021 ] ] ], [ [ [ 17.07371999899999, 57.179024001000016 ], [ 16.400671, 56.195806996999977 ], [ 16.413673, 56.589974499999983 ], [ 16.959014, 57.291363499999989 ], [ 17.076804309000011, 57.355879516000016 ], [ 17.07371999899999, 57.179024001000016 ] ] ] ] } }, -{ "type": "Feature", "id": 1557, "properties": { "NUTS_ID": "SI04", "STAT_LEVL_": 2, "SHAPE_AREA": 0.89638290032699997, "SHAPE_LEN": 5.5475772181199998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.5651755, 46.372453496999981 ], [ 14.565212, 46.367696998999975 ], [ 14.908764500000018, 46.207565998 ], [ 14.711757499999976, 46.07792999899999 ], [ 14.948575, 45.978610496999977 ], [ 14.564807499999972, 45.791461998999978 ], [ 14.129577499999982, 45.869498998999973 ], [ 14.0423715, 45.761358998999981 ], [ 14.11819650000001, 45.48123899699999 ], [ 14.109059, 45.482458496999982 ], [ 13.583067, 45.477409997 ], [ 13.7228235, 45.594725497000013 ], [ 13.9186565, 45.63351749899999 ], [ 13.596243, 45.807937501000026 ], [ 13.597145, 45.81952250099999 ], [ 13.496938999, 46.051334999 ], [ 13.664347500000019, 46.177549999 ], [ 13.3754925, 46.29823249899999 ], [ 13.684032, 46.437472501 ], [ 13.714184999, 46.522703499999977 ], [ 14.434500500000013, 46.442943501 ], [ 14.5651755, 46.372453496999981 ] ] ] } }, -{ "type": "Feature", "id": 1564, "properties": { "NUTS_ID": "SK01", "STAT_LEVL_": 2, "SHAPE_AREA": 0.243769281699, "SHAPE_LEN": 1.8834293815700001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.247427500000015, 48.012008998999988 ], [ 17.1607975, 48.006656501 ], [ 17.066741, 48.11868149899999 ], [ 16.976203, 48.172244498 ], [ 16.851106, 48.438635001000023 ], [ 16.949778, 48.535791999000025 ], [ 17.235799, 48.567409500999986 ], [ 17.477537, 48.3525785 ], [ 17.529213, 48.196497500000021 ], [ 17.247427500000015, 48.012008998999988 ] ] ] } }, -{ "type": "Feature", "id": 1566, "properties": { "NUTS_ID": "SK02", "STAT_LEVL_": 2, "SHAPE_AREA": 1.83780527502, "SHAPE_LEN": 6.9407493556400004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.0143225, 48.077736499000025 ], [ 18.928392, 48.056832499 ], [ 18.7548155, 47.975082499 ], [ 18.848478, 47.818228001000023 ], [ 17.893923, 47.739456999000026 ], [ 17.705436500000019, 47.758992498999987 ], [ 17.247427500000015, 48.012008998999988 ], [ 17.529213, 48.196497500000021 ], [ 17.477537, 48.3525785 ], [ 17.235799, 48.567409500999986 ], [ 16.949778, 48.535791999000025 ], [ 16.940278, 48.617245498999978 ], [ 17.2016625, 48.878028997 ], [ 17.3967255, 48.813349997999978 ], [ 17.64693, 48.854265998000017 ], [ 18.322436, 49.315059 ], [ 18.826351, 48.744058999 ], [ 18.478677, 48.548603997999976 ], [ 19.062313, 48.188361499999985 ], [ 19.0143225, 48.077736499000025 ] ] ] } }, -{ "type": "Feature", "id": 1570, "properties": { "NUTS_ID": "SK03", "STAT_LEVL_": 2, "SHAPE_AREA": 1.9631115984, "SHAPE_LEN": 6.5273432752599998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.883929500000022, 49.204176999000026 ], [ 19.992254499000012, 48.907499998999981 ], [ 20.2674505, 48.874073001 ], [ 20.1822955, 48.728225 ], [ 20.463937, 48.463967 ], [ 20.051879, 48.16770399699999 ], [ 19.0143225, 48.077736499000025 ], [ 19.062313, 48.188361499999985 ], [ 18.478677, 48.548603997999976 ], [ 18.826351, 48.744058999 ], [ 18.322436, 49.315059 ], [ 18.4035955, 49.396745499000019 ], [ 18.851551, 49.51718900100002 ], [ 19.153403, 49.40377700099998 ], [ 19.467386499999975, 49.613767 ], [ 19.883929500000022, 49.204176999000026 ] ] ] } }, -{ "type": "Feature", "id": 1573, "properties": { "NUTS_ID": "SK04", "STAT_LEVL_": 2, "SHAPE_AREA": 1.9131529494, "SHAPE_LEN": 6.5505345016699996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 22.56684, 49.088377498999989 ], [ 22.382817499999987, 48.86226399899999 ], [ 22.155306, 48.403396499 ], [ 22.121077500000013, 48.378311499 ], [ 21.721957, 48.351050499 ], [ 21.440056, 48.585232999000027 ], [ 20.463937, 48.463967 ], [ 20.1822955, 48.728225 ], [ 20.2674505, 48.874073001 ], [ 19.992254499000012, 48.907499998999981 ], [ 19.883929500000022, 49.204176999000026 ], [ 20.6149395, 49.417832998999984 ], [ 20.9237225, 49.296234498999979 ], [ 21.397712500000011, 49.433793998999988 ], [ 22.56684, 49.088377498999989 ] ] ] } }, -{ "type": "Feature", "id": 1578, "properties": { "NUTS_ID": "TR10", "STAT_LEVL_": 2, "SHAPE_AREA": 0.63573077059399996, "SHAPE_LEN": 4.8702439844700001 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 29.0726335, 41.124540498999977 ], [ 28.824152, 40.954229499 ], [ 27.991102500000011, 41.018344997999975 ], [ 28.181659498999977, 41.564058999 ], [ 29.1158845, 41.228910498 ], [ 29.037527, 41.155839999000023 ], [ 29.0726335, 41.124540498999977 ] ] ], [ [ [ 29.849114, 41.064824498 ], [ 29.342517499999985, 40.807657499000015 ], [ 29.031469500000014, 40.967085 ], [ 29.087270499999988, 41.178521999 ], [ 29.265264, 41.230552 ], [ 29.865624500000024, 41.143447498 ], [ 29.849114, 41.064824498 ] ] ] ] } }, -{ "type": "Feature", "id": 1581, "properties": { "NUTS_ID": "TR21", "STAT_LEVL_": 2, "SHAPE_AREA": 1.99841529999, "SHAPE_LEN": 6.7315670669400003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.035512499999982, 41.983079498999984 ], [ 28.152973, 41.57896249700002 ], [ 28.181659498999977, 41.564058999 ], [ 27.991102500000011, 41.018344997999975 ], [ 27.5128535, 40.974729497 ], [ 26.968651500000021, 40.553368998999986 ], [ 26.962811, 40.667037999 ], [ 26.773845, 40.741130999 ], [ 26.734886500000016, 40.64293299799999 ], [ 26.151155500000016, 40.5893155 ], [ 26.032758, 40.730256999 ], [ 26.291015500000015, 40.93188349899998 ], [ 26.321652, 41.250406499 ], [ 26.628431499999976, 41.345533499 ], [ 26.6001205, 41.601198997999973 ], [ 26.357879, 41.711104498999987 ], [ 26.561544500000025, 41.92627349899999 ], [ 26.9492285, 42.000213498999983 ], [ 27.059650499999975, 42.088336997999988 ], [ 27.559395, 41.904781496999988 ], [ 28.035512499999982, 41.983079498999984 ] ] ] } }, -{ "type": "Feature", "id": 1585, "properties": { "NUTS_ID": "TR22", "STAT_LEVL_": 2, "SHAPE_AREA": 2.5807494770199999, "SHAPE_LEN": 10.9485000929 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 28.164779, 40.395613 ], [ 28.067550499999982, 40.253133999 ], [ 28.2650375, 39.870233998 ], [ 28.968574, 39.600677499000028 ], [ 28.885427, 39.372048998000025 ], [ 28.597988, 39.280636 ], [ 28.652546500000028, 39.147368498999981 ], [ 28.15897, 39.05698399900001 ], [ 27.800632, 39.313108 ], [ 27.381316, 39.352746501000013 ], [ 26.763921, 39.175209999 ], [ 26.671144500000025, 39.279348497 ], [ 26.950548500000025, 39.559968498999979 ], [ 26.618685, 39.547879498999976 ], [ 26.062643, 39.479497998999989 ], [ 26.179243, 39.99143399799999 ], [ 26.7568455, 40.403798998000013 ], [ 27.319921500000021, 40.433412498 ], [ 27.5062805, 40.304677998999978 ], [ 27.879064500000027, 40.372956998 ], [ 27.753523, 40.528421498 ], [ 28.016809500000022, 40.447443 ], [ 28.164779, 40.395613 ] ] ], [ [ [ 26.968651500000021, 40.553368998999986 ], [ 26.165872499999978, 40.052561 ], [ 26.218675500000018, 40.319448497 ], [ 26.838197499999978, 40.58582499900001 ], [ 26.734886500000016, 40.64293299799999 ], [ 26.773845, 40.741130999 ], [ 26.962811, 40.667037999 ], [ 26.968651500000021, 40.553368998999986 ] ] ] ] } }, -{ "type": "Feature", "id": 1589, "properties": { "NUTS_ID": "TR31", "STAT_LEVL_": 2, "SHAPE_AREA": 1.1209372772199999, "SHAPE_LEN": 8.1125298209400007 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 28.4426095, 38.104661498999974 ], [ 28.285376, 38.110739498999976 ], [ 27.264569, 37.875048498000012 ], [ 26.757936500000028, 38.221479499999987 ], [ 26.5912, 38.102750497999978 ], [ 26.281446500000015, 38.26644349899999 ], [ 26.344708121999986, 38.485118011 ], [ 26.348637239000027, 38.49869967 ], [ 26.397398, 38.667249498999979 ], [ 26.6252955, 38.52710550099999 ], [ 26.674020499999983, 38.311987 ], [ 27.167742, 38.440419999000028 ], [ 26.73378550000001, 38.653470998999978 ], [ 27.06627450000002, 38.877225997999972 ], [ 26.763921, 39.175209999 ], [ 27.381316, 39.352746501000013 ], [ 27.4262905, 38.944966498999975 ], [ 27.101313499000014, 38.77824549799999 ], [ 27.260101500000019, 38.548467501 ], [ 28.286419500000022, 38.319715998999982 ], [ 28.4426095, 38.104661498999974 ] ] ] } }, -{ "type": "Feature", "id": 1591, "properties": { "NUTS_ID": "TR32", "STAT_LEVL_": 2, "SHAPE_AREA": 3.1947943783300001, "SHAPE_LEN": 13.064469818599999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 29.852119, 37.752285498999981 ], [ 29.500381, 37.618871997999975 ], [ 29.606530500000019, 37.395360998 ], [ 29.341447, 37.006848998 ], [ 29.71326449899999, 36.956309498999985 ], [ 29.637207, 36.669686001 ], [ 29.2605615, 36.304398998000011 ], [ 29.102026, 36.386720497999988 ], [ 29.103811, 36.670343498000022 ], [ 28.928788999, 36.754858001 ], [ 28.851038, 36.662084499 ], [ 28.270406499999979, 36.852479997999978 ], [ 27.979345500000022, 36.553571498 ], [ 28.131860500000016, 36.793966501 ], [ 27.374422, 36.685484 ], [ 28.032835, 36.787759999 ], [ 28.330560499, 37.033395498 ], [ 27.565542, 36.977285499 ], [ 27.4248715, 37.03574199799999 ], [ 27.264269, 36.964120998 ], [ 27.32292, 37.15848349800001 ], [ 27.47090350000002, 37.08077799900002 ], [ 27.611025, 37.257513 ], [ 27.404363, 37.368095 ], [ 27.424582461, 37.407003472999975 ], [ 27.419004802000018, 37.41190175600002 ], [ 27.202436499999976, 37.350824499999987 ], [ 27.21665, 37.59111199900002 ], [ 27.003069, 37.659795998999982 ], [ 27.234331, 37.72418399899999 ], [ 27.264569, 37.875048498000012 ], [ 28.285376, 38.110739498999976 ], [ 28.4426095, 38.104661498999974 ], [ 28.616089, 38.089585999 ], [ 28.847341500000027, 38.240428501 ], [ 29.580195, 38.246578499 ], [ 29.755703499999981, 38.484307496999975 ], [ 30.027253499999972, 38.214679499999988 ], [ 29.653922500000022, 37.960175499 ], [ 29.852119, 37.752285498999981 ] ] ] } }, -{ "type": "Feature", "id": 1595, "properties": { "NUTS_ID": "TR33", "STAT_LEVL_": 2, "SHAPE_AREA": 4.8043626292099999, "SHAPE_LEN": 12.866254769399999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.6197325, 39.10305549899999 ], [ 31.621331, 38.619947497999988 ], [ 31.233349499999974, 38.409972998 ], [ 30.986741, 38.466414499 ], [ 30.039979500000015, 37.752413999 ], [ 29.852119, 37.752285498999981 ], [ 29.653922500000022, 37.960175499 ], [ 30.027253499999972, 38.214679499999988 ], [ 29.755703499999981, 38.484307496999975 ], [ 29.580195, 38.246578499 ], [ 28.847341500000027, 38.240428501 ], [ 28.616089, 38.089585999 ], [ 28.4426095, 38.104661498999974 ], [ 28.286419500000022, 38.319715998999982 ], [ 27.260101500000019, 38.548467501 ], [ 27.101313499000014, 38.77824549799999 ], [ 27.4262905, 38.944966498999975 ], [ 27.381316, 39.352746501000013 ], [ 27.800632, 39.313108 ], [ 28.15897, 39.05698399900001 ], [ 28.652546500000028, 39.147368498999981 ], [ 28.597988, 39.280636 ], [ 28.885427, 39.372048998000025 ], [ 28.968574, 39.600677499000028 ], [ 29.1940935, 39.600573998000016 ], [ 29.396933, 39.901012499999979 ], [ 29.74218350000001, 39.871334 ], [ 29.760535, 39.710123497999973 ], [ 30.0601345, 39.658641 ], [ 30.355477, 39.499004999000022 ], [ 30.429491499999983, 39.217612498999983 ], [ 30.741455499999972, 39.126772999000025 ], [ 31.192543, 39.279110498000023 ], [ 31.6197325, 39.10305549899999 ] ] ] } }, -{ "type": "Feature", "id": 1601, "properties": { "NUTS_ID": "TR41", "STAT_LEVL_": 2, "SHAPE_AREA": 3.0588850509899999, "SHAPE_LEN": 9.9751178265299991 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 30.82533, 40.125784499000019 ], [ 31.676844, 40.035240500999976 ], [ 32.069824, 39.276070998000023 ], [ 31.8153175, 39.128693499 ], [ 31.6197325, 39.10305549899999 ], [ 31.192543, 39.279110498000023 ], [ 30.741455499999972, 39.126772999000025 ], [ 30.429491499999983, 39.217612498999983 ], [ 30.355477, 39.499004999000022 ], [ 30.0601345, 39.658641 ], [ 29.760535, 39.710123497999973 ], [ 29.74218350000001, 39.871334 ], [ 29.396933, 39.901012499999979 ], [ 29.1940935, 39.600573998000016 ], [ 28.968574, 39.600677499000028 ], [ 28.2650375, 39.870233998 ], [ 28.067550499999982, 40.253133999 ], [ 28.164779, 40.395613 ], [ 29.154478, 40.425374998999985 ], [ 28.991232500000024, 40.466273498000021 ], [ 29.4102205, 40.550392499 ], [ 29.924952, 40.551626499 ], [ 29.964417, 40.522084499000016 ], [ 30.521932, 40.294341501000019 ], [ 30.650090499999976, 40.144735998999977 ], [ 30.82533, 40.125784499000019 ] ] ] } }, -{ "type": "Feature", "id": 1605, "properties": { "NUTS_ID": "TR42", "STAT_LEVL_": 2, "SHAPE_AREA": 2.0869899628800002, "SHAPE_LEN": 9.4248561123200005 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.2956565, 41.11632 ], [ 31.75363, 41.005629999 ], [ 32.134024, 41.030704 ], [ 32.560043, 40.807477499000015 ], [ 32.554816, 40.691943998 ], [ 31.911622, 40.328740498 ], [ 31.128547500000025, 40.36527999899999 ], [ 30.82533, 40.125784499000019 ], [ 30.650090499999976, 40.144735998999977 ], [ 30.521932, 40.294341501000019 ], [ 29.964417, 40.522084499000016 ], [ 29.924952, 40.551626499 ], [ 29.4102205, 40.550392499 ], [ 28.991232500000024, 40.466273498000021 ], [ 28.780161, 40.53619199799999 ], [ 29.546993, 40.695436 ], [ 29.9421865, 40.750489999000024 ], [ 29.342517499999985, 40.807657499000015 ], [ 29.849114, 41.064824498 ], [ 29.865624500000024, 41.143447498 ], [ 30.354686500000014, 41.184194499 ], [ 30.9820555, 41.072602501 ], [ 31.2956565, 41.11632 ] ] ] } }, -{ "type": "Feature", "id": 1612, "properties": { "NUTS_ID": "TR51", "STAT_LEVL_": 2, "SHAPE_AREA": 2.6770228737599999, "SHAPE_LEN": 9.7096746052899991 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.695422, 40.33224149900002 ], [ 33.247372499999983, 39.64108699799999 ], [ 33.441716, 39.35144900099999 ], [ 33.886019, 39.043412499 ], [ 33.722786, 38.942947998000022 ], [ 33.7054745, 38.680822499999977 ], [ 33.464405, 38.636591499000019 ], [ 33.337978, 39.050211998 ], [ 32.992395499999986, 39.244097001 ], [ 32.44286, 38.958912999 ], [ 31.8153175, 39.128693499 ], [ 32.069824, 39.276070998000023 ], [ 31.676844, 40.035240500999976 ], [ 30.82533, 40.125784499000019 ], [ 31.128547500000025, 40.36527999899999 ], [ 31.911622, 40.328740498 ], [ 32.554816, 40.691943998 ], [ 32.972095498999977, 40.615893501000016 ], [ 33.220758999, 40.320784498000023 ], [ 33.695422, 40.33224149900002 ] ] ] } }, -{ "type": "Feature", "id": 1614, "properties": { "NUTS_ID": "TR52", "STAT_LEVL_": 2, "SHAPE_AREA": 5.1009588366400003, "SHAPE_LEN": 11.336343491499999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.464405, 38.636591499000019 ], [ 33.2033695, 38.278494001000013 ], [ 33.3944535, 37.97126099799999 ], [ 34.033573499999989, 38.004810997999982 ], [ 34.4004265, 37.751674998999988 ], [ 34.3350345, 37.479407497000011 ], [ 34.428914500000019, 37.316384998999979 ], [ 33.997476, 37.097663997999973 ], [ 32.95091050000002, 36.831344999 ], [ 33.238955499999975, 36.520920999 ], [ 32.573227, 36.357624 ], [ 32.457231499999978, 36.738470999000015 ], [ 31.740267500000016, 37.35582599899999 ], [ 31.4533915, 37.333832998999981 ], [ 31.300975, 37.404258997999989 ], [ 31.419393, 37.973507997000013 ], [ 31.5975305, 38.0560855 ], [ 31.233349499999974, 38.409972998 ], [ 31.621331, 38.619947497999988 ], [ 31.6197325, 39.10305549899999 ], [ 31.8153175, 39.128693499 ], [ 32.44286, 38.958912999 ], [ 32.992395499999986, 39.244097001 ], [ 33.337978, 39.050211998 ], [ 33.464405, 38.636591499000019 ] ] ] } }, -{ "type": "Feature", "id": 1618, "properties": { "NUTS_ID": "TR61", "STAT_LEVL_": 2, "SHAPE_AREA": 3.62010169803, "SHAPE_LEN": 11.1316431683 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 31.233349499999974, 38.409972998 ], [ 31.5975305, 38.0560855 ], [ 31.419393, 37.973507997000013 ], [ 31.300975, 37.404258997999989 ], [ 31.4533915, 37.333832998999981 ], [ 31.740267500000016, 37.35582599899999 ], [ 32.457231499999978, 36.738470999000015 ], [ 32.573227, 36.357624 ], [ 32.57634, 36.093232999 ], [ 32.029032, 36.538202499000022 ], [ 30.698167500000011, 36.884519497999975 ], [ 30.327932499999974, 36.296952998999984 ], [ 29.644518, 36.196329 ], [ 29.2605615, 36.304398998000011 ], [ 29.637207, 36.669686001 ], [ 29.71326449899999, 36.956309498999985 ], [ 29.341447, 37.006848998 ], [ 29.606530500000019, 37.395360998 ], [ 29.500381, 37.618871997999975 ], [ 29.852119, 37.752285498999981 ], [ 30.039979500000015, 37.752413999 ], [ 30.986741, 38.466414499 ], [ 31.233349499999974, 38.409972998 ] ] ] } }, -{ "type": "Feature", "id": 1622, "properties": { "NUTS_ID": "TR62", "STAT_LEVL_": 2, "SHAPE_AREA": 3.04327508632, "SHAPE_LEN": 11.081011848099999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 36.440496, 38.21943249899999 ], [ 36.303865, 37.734576499000013 ], [ 36.0404835, 37.660304999 ], [ 35.884942498999976, 37.344126499000026 ], [ 35.856385, 37.169712998000023 ], [ 36.0454575, 37.188982999000018 ], [ 36.05271, 37.018507999 ], [ 35.963096, 36.902986999 ], [ 35.56584, 36.5647945 ], [ 35.339365, 36.538526499 ], [ 34.899245, 36.738280998999983 ], [ 34.5607205, 36.768163496999989 ], [ 33.68421, 36.133401999 ], [ 32.57634, 36.093232999 ], [ 32.573227, 36.357624 ], [ 33.238955499999975, 36.520920999 ], [ 32.95091050000002, 36.831344999 ], [ 33.997476, 37.097663997999973 ], [ 34.428914500000019, 37.316384998999979 ], [ 34.748, 37.409303998999974 ], [ 34.8854045, 37.67054299900002 ], [ 35.218708, 37.759224499000027 ], [ 35.574764, 37.737158498999975 ], [ 35.6144215, 37.962110999 ], [ 36.253814, 38.379422998999985 ], [ 36.440496, 38.21943249899999 ] ] ] } }, -{ "type": "Feature", "id": 1625, "properties": { "NUTS_ID": "TR63", "STAT_LEVL_": 2, "SHAPE_AREA": 2.3721356137599998, "SHAPE_LEN": 9.2624314110399997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.6386675, 37.931167 ], [ 37.432401, 37.641709 ], [ 37.623216500000012, 37.511652497 ], [ 37.08278, 37.175676 ], [ 36.901796, 37.333660499000018 ], [ 36.697388499999988, 37.218142496999974 ], [ 36.465673, 36.94866749900001 ], [ 36.660010393999983, 36.833231536000028 ], [ 36.549576, 36.487769997999976 ], [ 36.683648, 36.236783499000012 ], [ 36.39222, 36.213326 ], [ 36.37497, 35.99791399899999 ], [ 36.168469, 35.819717997999987 ], [ 35.917953, 35.928695499000014 ], [ 35.978777, 36.019441498999981 ], [ 35.779623, 36.318555998000022 ], [ 36.2157305, 36.65963549899999 ], [ 36.1485765, 36.855066498999975 ], [ 35.963096, 36.902986999 ], [ 36.05271, 37.018507999 ], [ 36.0454575, 37.188982999000018 ], [ 35.856385, 37.169712998000023 ], [ 35.884942498999976, 37.344126499000026 ], [ 36.0404835, 37.660304999 ], [ 36.303865, 37.734576499000013 ], [ 36.440496, 38.21943249899999 ], [ 36.769845499999974, 38.546435998999982 ], [ 37.341487, 38.593515498999977 ], [ 37.259534499999972, 38.479911 ], [ 37.7602465, 38.203050997999981 ], [ 37.6386675, 37.931167 ] ] ] } }, -{ "type": "Feature", "id": 1630, "properties": { "NUTS_ID": "TR71", "STAT_LEVL_": 2, "SHAPE_AREA": 3.2471589654400002, "SHAPE_LEN": 9.3844985226300004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 33.9162255, 40.263038 ], [ 34.175507, 39.940434 ], [ 34.108037, 39.793002498000021 ], [ 34.6441815, 39.41150399899999 ], [ 34.9147415, 39.283632497999974 ], [ 35.034188, 39.004880997999976 ], [ 34.9680335, 38.788846998999986 ], [ 35.083858, 38.570535498000027 ], [ 34.885322, 38.344688497999982 ], [ 35.2656685, 38.106019998000022 ], [ 35.218708, 37.759224499000027 ], [ 34.8854045, 37.67054299900002 ], [ 34.748, 37.409303998999974 ], [ 34.428914500000019, 37.316384998999979 ], [ 34.3350345, 37.479407497000011 ], [ 34.4004265, 37.751674998999988 ], [ 34.033573499999989, 38.004810997999982 ], [ 33.3944535, 37.97126099799999 ], [ 33.2033695, 38.278494001000013 ], [ 33.464405, 38.636591499000019 ], [ 33.7054745, 38.680822499999977 ], [ 33.722786, 38.942947998000022 ], [ 33.886019, 39.043412499 ], [ 33.441716, 39.35144900099999 ], [ 33.247372499999983, 39.64108699799999 ], [ 33.695422, 40.33224149900002 ], [ 33.9162255, 40.263038 ] ] ] } }, -{ "type": "Feature", "id": 1636, "properties": { "NUTS_ID": "TR72", "STAT_LEVL_": 2, "SHAPE_AREA": 6.2061808062699999, "SHAPE_LEN": 13.508281758100001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 38.78355, 40.083271498999977 ], [ 38.3667795, 39.93940199799999 ], [ 38.349975, 39.149943496999981 ], [ 37.825541, 39.093950499000016 ], [ 37.341487, 38.593515498999977 ], [ 36.769845499999974, 38.546435998999982 ], [ 36.440496, 38.21943249899999 ], [ 36.253814, 38.379422998999985 ], [ 35.6144215, 37.962110999 ], [ 35.574764, 37.737158498999975 ], [ 35.218708, 37.759224499000027 ], [ 35.2656685, 38.106019998000022 ], [ 34.885322, 38.344688497999982 ], [ 35.083858, 38.570535498000027 ], [ 34.9680335, 38.788846998999986 ], [ 35.034188, 39.004880997999976 ], [ 34.9147415, 39.283632497999974 ], [ 34.6441815, 39.41150399899999 ], [ 34.108037, 39.793002498000021 ], [ 34.175507, 39.940434 ], [ 35.072878, 40.012056498999982 ], [ 35.1556395, 40.226113 ], [ 35.35115, 40.2433805 ], [ 35.442588, 40.23402249899999 ], [ 36.003423, 39.95451049799999 ], [ 36.606419500000015, 39.980525999 ], [ 36.8059275, 40.228436999 ], [ 37.450466, 40.170535498999982 ], [ 37.584064, 40.424386998999978 ], [ 37.73245750000001, 40.3425095 ], [ 38.148452500000019, 40.524218497999982 ], [ 38.213064, 40.213312498999983 ], [ 38.78355, 40.083271498999977 ] ] ] } }, -{ "type": "Feature", "id": 1641, "properties": { "NUTS_ID": "TR81", "STAT_LEVL_": 2, "SHAPE_AREA": 0.99100333273499996, "SHAPE_LEN": 4.7303579945500003 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 32.560043, 40.807477499000015 ], [ 32.134024, 41.030704 ], [ 31.75363, 41.005629999 ], [ 31.2956565, 41.11632 ], [ 31.403204, 41.317392498 ], [ 32.062578, 41.580305999000018 ], [ 32.736103500000013, 41.849009498999976 ], [ 32.776286, 41.58835299899999 ], [ 32.884223500000019, 41.575608999 ], [ 33.127837, 41.414297 ], [ 32.8912545, 41.173115 ], [ 33.042014, 41.069345998000017 ], [ 32.560043, 40.807477499000015 ] ] ] } }, -{ "type": "Feature", "id": 1645, "properties": { "NUTS_ID": "TR82", "STAT_LEVL_": 2, "SHAPE_AREA": 2.8979616136700002, "SHAPE_LEN": 9.4790676173099992 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 35.513699499999973, 41.635979999000028 ], [ 35.364086, 41.270556496999973 ], [ 35.1020165, 41.400094498999977 ], [ 34.856751998999982, 41.215630498999985 ], [ 34.449347, 41.327383999 ], [ 34.177718, 41.146645499999977 ], [ 34.2630365, 40.890320498999984 ], [ 33.929878, 40.8278105 ], [ 34.1436195, 40.418695999000022 ], [ 33.9162255, 40.263038 ], [ 33.695422, 40.33224149900002 ], [ 33.220758999, 40.320784498000023 ], [ 32.972095498999977, 40.615893501000016 ], [ 32.554816, 40.691943998 ], [ 32.560043, 40.807477499000015 ], [ 33.042014, 41.069345998000017 ], [ 32.8912545, 41.173115 ], [ 33.127837, 41.414297 ], [ 32.884223500000019, 41.575608999 ], [ 32.776286, 41.58835299899999 ], [ 32.736103500000013, 41.849009498999976 ], [ 33.3196165, 42.01599299899999 ], [ 34.228878499000018, 41.954958998999984 ], [ 34.7977085, 41.954602997999984 ], [ 34.943724, 42.096982998999977 ], [ 35.513699499999973, 41.635979999000028 ] ] ] } }, -{ "type": "Feature", "id": 1649, "properties": { "NUTS_ID": "TR83", "STAT_LEVL_": 2, "SHAPE_AREA": 4.13587860163, "SHAPE_LEN": 11.0426996741 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 37.152348500000016, 41.148413498000025 ], [ 36.671261, 40.915629498999976 ], [ 37.632352, 40.543681998000011 ], [ 37.584064, 40.424386998999978 ], [ 37.450466, 40.170535498999982 ], [ 36.8059275, 40.228436999 ], [ 36.606419500000015, 39.980525999 ], [ 36.003423, 39.95451049799999 ], [ 35.442588, 40.23402249899999 ], [ 35.35115, 40.2433805 ], [ 35.1556395, 40.226113 ], [ 35.072878, 40.012056498999982 ], [ 34.175507, 39.940434 ], [ 33.9162255, 40.263038 ], [ 34.1436195, 40.418695999000022 ], [ 33.929878, 40.8278105 ], [ 34.2630365, 40.890320498999984 ], [ 34.177718, 41.146645499999977 ], [ 34.449347, 41.327383999 ], [ 34.856751998999982, 41.215630498999985 ], [ 35.1020165, 41.400094498999977 ], [ 35.364086, 41.270556496999973 ], [ 35.513699499999973, 41.635979999000028 ], [ 35.9609585, 41.734693 ], [ 36.385412499999973, 41.256273498999974 ], [ 36.651739, 41.383401999 ], [ 37.152348500000016, 41.148413498000025 ] ] ] } }, -{ "type": "Feature", "id": 1655, "properties": { "NUTS_ID": "TR90", "STAT_LEVL_": 2, "SHAPE_AREA": 3.81807358941, "SHAPE_LEN": 13.882364019500001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.515174931999979, 41.43828241599999 ], [ 42.596096, 41.2710925 ], [ 42.28524950000002, 40.916437998999982 ], [ 41.9458735, 40.950454997 ], [ 41.809857500000021, 40.684673499999974 ], [ 41.384645499999976, 40.567911998 ], [ 41.164019499, 40.834939498999972 ], [ 40.60606150000001, 40.536 ], [ 40.461455, 40.52868399800002 ], [ 40.089906, 40.572094999 ], [ 39.643336499999975, 40.095837999000025 ], [ 39.789502, 39.940146 ], [ 39.4362185, 39.878558 ], [ 38.95667850000001, 40.068511999 ], [ 38.78355, 40.083271498999977 ], [ 38.213064, 40.213312498999983 ], [ 38.148452500000019, 40.524218497999982 ], [ 37.73245750000001, 40.3425095 ], [ 37.584064, 40.424386998999978 ], [ 37.632352, 40.543681998000011 ], [ 36.671261, 40.915629498999976 ], [ 37.152348500000016, 41.148413498000025 ], [ 38.109992499999976, 40.95851799799999 ], [ 39.1793085, 41.074095999 ], [ 40.328287499999988, 40.987883501 ], [ 41.2519, 41.32993349899999 ], [ 41.547133499999973, 41.520375498000021 ], [ 42.515174931999979, 41.43828241599999 ] ] ] } }, -{ "type": "Feature", "id": 1663, "properties": { "NUTS_ID": "TRA1", "STAT_LEVL_": 2, "SHAPE_AREA": 4.2686962366900003, "SHAPE_LEN": 12.677230391 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 42.28524950000002, 40.916437998999982 ], [ 42.574649500000021, 40.669076999000026 ], [ 42.530173499999989, 40.435869498999978 ], [ 42.128152, 40.292448998999987 ], [ 42.575026998999988, 39.953925998999978 ], [ 42.3006995, 39.841677499000014 ], [ 42.530970500000024, 39.630930499999977 ], [ 42.406795, 39.467103499000018 ], [ 41.801216, 39.14470749899999 ], [ 41.20683, 39.353699001 ], [ 40.651635, 39.522910498999977 ], [ 40.4484405, 39.522155498000018 ], [ 39.828901499999972, 39.601652498000021 ], [ 39.072714, 39.437300499 ], [ 38.7295135, 39.137155496999981 ], [ 38.768138, 39.006262998000011 ], [ 38.6840535, 39.02384299900001 ], [ 38.349975, 39.149943496999981 ], [ 38.3667795, 39.93940199799999 ], [ 38.78355, 40.083271498999977 ], [ 38.95667850000001, 40.068511999 ], [ 39.4362185, 39.878558 ], [ 39.789502, 39.940146 ], [ 39.643336499999975, 40.095837999000025 ], [ 40.089906, 40.572094999 ], [ 40.461455, 40.52868399800002 ], [ 40.60606150000001, 40.536 ], [ 41.164019499, 40.834939498999972 ], [ 41.384645499999976, 40.567911998 ], [ 41.809857500000021, 40.684673499999974 ], [ 41.9458735, 40.950454997 ], [ 42.28524950000002, 40.916437998999982 ] ] ] } }, -{ "type": "Feature", "id": 1667, "properties": { "NUTS_ID": "TRA2", "STAT_LEVL_": 2, "SHAPE_AREA": 3.2145787729899999, "SHAPE_LEN": 9.9925360629799993 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.049955809999972, 39.362815426999987 ], [ 43.716901, 39.209512500000017 ], [ 43.412439, 39.393592499000022 ], [ 43.1418885, 39.310626996999986 ], [ 43.184449, 39.198752497999976 ], [ 42.979636, 39.016623498 ], [ 42.75008, 38.92519099899999 ], [ 42.671909, 39.21350849800001 ], [ 42.406795, 39.467103499000018 ], [ 42.530970500000024, 39.630930499999977 ], [ 42.3006995, 39.841677499000014 ], [ 42.575026998999988, 39.953925998999978 ], [ 42.128152, 40.292448998999987 ], [ 42.530173499999989, 40.435869498999978 ], [ 42.574649500000021, 40.669076999000026 ], [ 42.28524950000002, 40.916437998999982 ], [ 42.596096, 41.2710925 ], [ 42.515174931999979, 41.43828241599999 ], [ 42.836095, 41.584442497999987 ], [ 43.473827, 41.123297499999978 ], [ 43.469638, 41.057344998000019 ], [ 43.750409, 40.744998999000018 ], [ 43.583054, 40.45111099899998 ], [ 43.653923, 40.130377499000019 ], [ 44.351662, 40.022220998000023 ], [ 44.76841, 39.714094498 ], [ 44.812042500000018, 39.63174349799999 ], [ 44.502099499999986, 39.7169935 ], [ 44.401101, 39.416515999000012 ], [ 44.049955809999972, 39.362815426999987 ] ] ] } }, -{ "type": "Feature", "id": 1673, "properties": { "NUTS_ID": "TRB1", "STAT_LEVL_": 2, "SHAPE_AREA": 3.7864286893100001, "SHAPE_LEN": 10.092083987700001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.20683, 39.353699001 ], [ 41.116833, 39.273619998000015 ], [ 41.176564, 38.716726 ], [ 40.459416499999975, 38.622623498999985 ], [ 40.31407, 38.465824499 ], [ 39.162863, 38.304434497999978 ], [ 39.122747, 38.183312999 ], [ 38.816859, 38.012205499 ], [ 38.329782500000022, 38.204376998999976 ], [ 38.095202500000028, 38.108330497999987 ], [ 38.0894285, 37.954172998999979 ], [ 37.6386675, 37.931167 ], [ 37.7602465, 38.203050997999981 ], [ 37.259534499999972, 38.479911 ], [ 37.341487, 38.593515498999977 ], [ 37.825541, 39.093950499000016 ], [ 38.349975, 39.149943496999981 ], [ 38.6840535, 39.02384299900001 ], [ 38.768138, 39.006262998000011 ], [ 38.7295135, 39.137155496999981 ], [ 39.072714, 39.437300499 ], [ 39.828901499999972, 39.601652498000021 ], [ 40.4484405, 39.522155498000018 ], [ 40.651635, 39.522910498999977 ], [ 41.20683, 39.353699001 ] ] ] } }, -{ "type": "Feature", "id": 1678, "properties": { "NUTS_ID": "TRB2", "STAT_LEVL_": 2, "SHAPE_AREA": 4.6325769802999996, "SHAPE_LEN": 11.9196457825 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 44.049955809999972, 39.362815426999987 ], [ 44.300266998999973, 38.842627999 ], [ 44.30526, 38.400534998000012 ], [ 44.482518, 38.341299998000011 ], [ 44.223969, 37.899149998999974 ], [ 44.462854938000021, 37.809568168999988 ], [ 44.617768, 37.717975998999975 ], [ 44.588852, 37.443092998 ], [ 44.801659, 37.321662999000011 ], [ 44.793147499999975, 37.17628399900002 ], [ 44.349709, 37.038322998000012 ], [ 44.118882, 37.315686 ], [ 43.424563, 37.275334499999985 ], [ 43.307242, 37.438266498000019 ], [ 43.505390499999976, 37.713529998000013 ], [ 42.9662085, 37.762133 ], [ 42.767993499999989, 37.913629497999978 ], [ 41.702295, 38.246542998999985 ], [ 41.506182, 38.564977999 ], [ 41.380549998999982, 38.492253498000025 ], [ 41.176564, 38.716726 ], [ 41.116833, 39.273619998000015 ], [ 41.20683, 39.353699001 ], [ 41.801216, 39.14470749899999 ], [ 42.406795, 39.467103499000018 ], [ 42.671909, 39.21350849800001 ], [ 42.75008, 38.92519099899999 ], [ 42.979636, 39.016623498 ], [ 43.184449, 39.198752497999976 ], [ 43.1418885, 39.310626996999986 ], [ 43.412439, 39.393592499000022 ], [ 43.716901, 39.209512500000017 ], [ 44.049955809999972, 39.362815426999987 ] ] ] } }, -{ "type": "Feature", "id": 1684, "properties": { "NUTS_ID": "TRC1", "STAT_LEVL_": 2, "SHAPE_AREA": 1.5888417105, "SHAPE_LEN": 7.8376010319700002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 39.122747, 38.183312999 ], [ 39.262784, 38.146125998 ], [ 39.099832, 38.012478499 ], [ 38.8514505, 37.649203999 ], [ 38.008049998999979, 37.454740997999977 ], [ 37.8355575, 37.165888498000015 ], [ 38.047589500000015, 36.845554497000023 ], [ 37.585516499999983, 36.703768498999978 ], [ 37.127495, 36.659157 ], [ 36.678777500000024, 36.83266099799999 ], [ 36.660010393999983, 36.833231536000028 ], [ 36.465673, 36.94866749900001 ], [ 36.697388499999988, 37.218142496999974 ], [ 36.901796, 37.333660499000018 ], [ 37.08278, 37.175676 ], [ 37.623216500000012, 37.511652497 ], [ 37.432401, 37.641709 ], [ 37.6386675, 37.931167 ], [ 38.0894285, 37.954172998999979 ], [ 38.095202500000028, 38.108330497999987 ], [ 38.329782500000022, 38.204376998999976 ], [ 38.816859, 38.012205499 ], [ 39.122747, 38.183312999 ] ] ] } }, -{ "type": "Feature", "id": 1688, "properties": { "NUTS_ID": "TRC2", "STAT_LEVL_": 2, "SHAPE_AREA": 3.5080607549299998, "SHAPE_LEN": 10.0639511966 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 41.380549998999982, 38.492253498000025 ], [ 41.189474, 38.312026998000022 ], [ 41.25448, 38.1395195 ], [ 40.995091, 37.826863 ], [ 41.045006, 37.715030499000022 ], [ 39.8555495, 37.531011998 ], [ 40.226033, 36.901373498999988 ], [ 39.221524, 36.665340996999987 ], [ 38.386376, 36.898329997000019 ], [ 38.047589500000015, 36.845554497000023 ], [ 37.8355575, 37.165888498000015 ], [ 38.008049998999979, 37.454740997999977 ], [ 38.8514505, 37.649203999 ], [ 39.099832, 38.012478499 ], [ 39.262784, 38.146125998 ], [ 39.122747, 38.183312999 ], [ 39.162863, 38.304434497999978 ], [ 40.31407, 38.465824499 ], [ 40.459416499999975, 38.622623498999985 ], [ 41.176564, 38.716726 ], [ 41.380549998999982, 38.492253498000025 ] ] ] } }, -{ "type": "Feature", "id": 1691, "properties": { "NUTS_ID": "TRC3", "STAT_LEVL_": 2, "SHAPE_AREA": 2.6195038347000001, "SHAPE_LEN": 9.3171077078100009 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 43.424563, 37.275334499999985 ], [ 42.786801, 37.38367499899999 ], [ 42.3556825, 37.10799350100001 ], [ 42.180832, 37.290541999000027 ], [ 41.663342, 37.102903498999979 ], [ 40.770821, 37.11804999899999 ], [ 40.226033, 36.901373498999988 ], [ 39.8555495, 37.531011998 ], [ 41.045006, 37.715030499000022 ], [ 40.995091, 37.826863 ], [ 41.25448, 38.1395195 ], [ 41.189474, 38.312026998000022 ], [ 41.380549998999982, 38.492253498000025 ], [ 41.506182, 38.564977999 ], [ 41.702295, 38.246542998999985 ], [ 42.767993499999989, 37.913629497999978 ], [ 42.9662085, 37.762133 ], [ 43.505390499999976, 37.713529998000013 ], [ 43.307242, 37.438266498000019 ], [ 43.424563, 37.275334499999985 ] ] ] } }, -{ "type": "Feature", "id": 1698, "properties": { "NUTS_ID": "UKC1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.37691346161200001, "SHAPE_LEN": 3.5318666524600002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.3473725, 54.860690998999985 ], [ -1.2422295, 54.722594997999977 ], [ -1.261252, 54.571902997999985 ], [ -0.7909065, 54.5594825 ], [ -1.234791, 54.51036849799999 ], [ -1.434778, 54.487514498999985 ], [ -1.696865, 54.536060501 ], [ -2.1701665, 54.458256 ], [ -2.312043001, 54.791080500000021 ], [ -1.820951, 54.905727500000012 ], [ -1.559341501, 54.882102998999983 ], [ -1.3473725, 54.860690998999985 ] ] ] } }, -{ "type": "Feature", "id": 1703, "properties": { "NUTS_ID": "SE22", "STAT_LEVL_": 2, "SHAPE_AREA": 2.1604080779900001, "SHAPE_LEN": 9.6146171591300007 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.0498715, 56.321888500999989 ], [ 15.85154799899999, 56.085102498000026 ], [ 15.592694, 56.211868998 ], [ 15.348007, 56.124922501000015 ], [ 14.687203, 56.167117 ], [ 14.781868499999973, 56.034379999 ], [ 14.721438499999977, 55.993557001 ], [ 14.5463995, 56.061317499999973 ], [ 14.220109499999978, 55.830457500000023 ], [ 14.360844, 55.554259498000022 ], [ 14.194909, 55.384035000999972 ], [ 12.80983950000001, 55.37825650000002 ], [ 13.063593, 55.670109497 ], [ 12.445960500000012, 56.302680001 ], [ 12.783795, 56.219567998 ], [ 12.619629499999974, 56.42242299899999 ], [ 12.899313, 56.4490045 ], [ 13.462636499999974, 56.428188501000022 ], [ 14.514669500000025, 56.460036998000021 ], [ 15.363503499999979, 56.48237599700002 ], [ 15.586373499999979, 56.48294 ], [ 16.0498715, 56.321888500999989 ] ] ] } }, -{ "type": "Feature", "id": 1706, "properties": { "NUTS_ID": "SE23", "STAT_LEVL_": 2, "SHAPE_AREA": 5.0815391104099996, "SHAPE_LEN": 13.2988074497 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 14.295995, 59.012779501000011 ], [ 14.778936499, 58.645992501000023 ], [ 14.41671, 58.187240497 ], [ 13.772147, 58.048560996999981 ], [ 13.688058, 57.558208501000024 ], [ 13.100760499999978, 57.145515499 ], [ 13.681201, 56.972114501000021 ], [ 13.298661, 56.823604500999977 ], [ 13.462636499999974, 56.428188501000022 ], [ 12.899313, 56.4490045 ], [ 12.936727500000018, 56.587077 ], [ 11.913888, 57.40103749799999 ], [ 11.922900500000026, 57.562223 ], [ 11.990241500000025, 57.721453500999985 ], [ 11.6737205, 57.84875499899999 ], [ 11.844677282000021, 58.160147672999983 ], [ 11.406957, 58.143874 ], [ 11.702689, 58.433648 ], [ 11.220071499000028, 58.40892949800002 ], [ 11.3094795, 58.479590496000014 ], [ 11.256905, 58.677688000999979 ], [ 11.174135001000025, 58.718292497999983 ], [ 11.23903150000001, 58.838971500000014 ], [ 11.113543499, 58.998263497999972 ], [ 11.460827, 58.988658499 ], [ 11.632557, 58.908306501000027 ], [ 11.8261965, 59.237849998 ], [ 12.228614499, 59.256698498999981 ], [ 13.254575499999987, 58.725619998000013 ], [ 13.589992, 59.059444499999984 ], [ 14.295995, 59.012779501000011 ] ] ] } }, -{ "type": "Feature", "id": 1710, "properties": { "NUTS_ID": "SE31", "STAT_LEVL_": 2, "SHAPE_AREA": 11.651712396400001, "SHAPE_LEN": 19.773688617299999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 17.489299500000016, 62.136950499000022 ], [ 17.3074195, 61.85283999699999 ], [ 17.402429499999982, 61.7223975 ], [ 17.037339499999973, 61.574806497 ], [ 17.070646, 60.89967199900002 ], [ 17.370218, 60.654461500000025 ], [ 17.192478, 60.300712499999975 ], [ 16.703831, 60.195720498000014 ], [ 15.801567, 60.179103499 ], [ 15.422092500000019, 59.854747499999974 ], [ 14.437155500000017, 60.026160996999977 ], [ 14.295995, 59.012779501000011 ], [ 13.589992, 59.059444499999984 ], [ 13.254575499999987, 58.725619998000013 ], [ 12.228614499, 59.256698498999981 ], [ 11.8261965, 59.237849998 ], [ 11.691129, 59.589547499999981 ], [ 11.93987850000002, 59.69458099799999 ], [ 11.926970499999982, 59.790475999000023 ], [ 11.839729, 59.840767 ], [ 12.499544999000022, 60.09765699799999 ], [ 12.606881499999986, 60.512742496999977 ], [ 12.22399, 61.013078001 ], [ 12.670176500000025, 61.055976498 ], [ 12.870847500000025, 61.356494998000016 ], [ 12.137665, 61.723816998000018 ], [ 12.29937, 62.267494 ], [ 12.8061755, 62.21990599899999 ], [ 13.558676, 61.643413 ], [ 14.4475615, 61.594948000999977 ], [ 14.685895, 61.901668497 ], [ 15.091695, 61.817428499000016 ], [ 15.4304505, 62.145972498999981 ], [ 15.3273395, 62.272083501 ], [ 17.489299500000016, 62.136950499000022 ] ] ] } }, -{ "type": "Feature", "id": 1714, "properties": { "NUTS_ID": "SE32", "STAT_LEVL_": 2, "SHAPE_AREA": 13.8087167223, "SHAPE_LEN": 19.956419689699999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 19.286468, 63.4697195 ], [ 18.331517, 63.053526501000022 ], [ 18.55759150099999, 62.962596500000018 ], [ 18.0637, 62.610071 ], [ 17.4012075, 62.549360498999988 ], [ 17.392239500000017, 62.323179001000028 ], [ 17.6594715, 62.2330035 ], [ 17.489299500000016, 62.136950499000022 ], [ 15.3273395, 62.272083501 ], [ 15.4304505, 62.145972498999981 ], [ 15.091695, 61.817428499000016 ], [ 14.685895, 61.901668497 ], [ 14.4475615, 61.594948000999977 ], [ 13.558676, 61.643413 ], [ 12.8061755, 62.21990599899999 ], [ 12.29937, 62.267494 ], [ 12.2546595, 62.331024496999987 ], [ 12.056142, 62.611918499000012 ], [ 12.218231, 63.000332500000013 ], [ 12.0524555, 63.1834445 ], [ 11.974581, 63.269228 ], [ 12.149767, 63.593946999000025 ], [ 12.683565, 63.9742235 ], [ 13.967524500000025, 64.00797 ], [ 14.157109, 64.195054497 ], [ 14.113869500000021, 64.462484501 ], [ 13.654257500000028, 64.580340498999988 ], [ 14.325985, 65.118916001 ], [ 16.718954, 64.027877999 ], [ 17.261841, 63.91410049699999 ], [ 18.405653, 63.9956625 ], [ 19.286468, 63.4697195 ] ] ] } }, -{ "type": "Feature", "id": 1717, "properties": { "NUTS_ID": "SE33", "STAT_LEVL_": 2, "SHAPE_AREA": 32.748586380100001, "SHAPE_LEN": 28.077039168799999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 24.155129, 65.816027 ], [ 22.34076600100002, 65.868960499000025 ], [ 22.402720499, 65.537355497000021 ], [ 22.0356215, 65.4648855 ], [ 21.524723359, 65.231805586 ], [ 21.543604500000015, 65.063058997999974 ], [ 21.156021, 64.815484500000025 ], [ 21.605362500000012, 64.433961 ], [ 20.31427, 63.674042500999974 ], [ 19.8976955, 63.617022999000028 ], [ 19.683038999000019, 63.434309000999974 ], [ 19.286468, 63.4697195 ], [ 18.405653, 63.9956625 ], [ 17.261841, 63.91410049699999 ], [ 16.718954, 64.027877999 ], [ 14.325985, 65.118916001 ], [ 14.6254765, 65.811808499999984 ], [ 14.516289, 66.132579 ], [ 15.453994500000022, 66.345233501 ], [ 15.3772265, 66.484303996999984 ], [ 16.387759, 67.045462499999985 ], [ 16.158001500000012, 67.51915900099999 ], [ 17.281524, 68.118815 ], [ 17.899761500000011, 67.969372 ], [ 18.151354, 68.19879 ], [ 18.125925, 68.536515999000017 ], [ 19.921397, 68.356013001 ], [ 20.3358725, 68.802312500000028 ], [ 20.0600475, 69.045759001000022 ], [ 20.548636499999986, 69.059968501000014 ], [ 21.888943000999973, 68.5843835 ], [ 23.652348999000026, 67.958793001 ], [ 23.3940235, 67.485820999 ], [ 23.995160500999987, 66.819708999 ], [ 23.6455995, 66.3014085 ], [ 24.155129, 65.816027 ] ] ] } }, -{ "type": "Feature", "id": 1722, "properties": { "NUTS_ID": "SI03", "STAT_LEVL_": 2, "SHAPE_AREA": 1.4007612975799999, "SHAPE_LEN": 8.1701120752499996 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 16.596805, 46.475902498999972 ], [ 16.242148499999985, 46.490075497000021 ], [ 16.301549, 46.378287996999973 ], [ 15.8768685, 46.280055499000014 ], [ 15.7914755, 46.259327497000015 ], [ 15.627262, 46.085953499000027 ], [ 15.706404500000019, 45.97534299900002 ], [ 15.404425, 45.792716997000014 ], [ 15.331290500000023, 45.762854999000012 ], [ 15.277050499999973, 45.604461499000024 ], [ 15.385532, 45.486580499000013 ], [ 15.226437499999975, 45.42708799799999 ], [ 14.570012500000018, 45.672944497 ], [ 14.11819650000001, 45.48123899699999 ], [ 14.0423715, 45.761358998999981 ], [ 14.129577499999982, 45.869498998999973 ], [ 14.564807499999972, 45.791461998999978 ], [ 14.948575, 45.978610496999977 ], [ 14.711757499999976, 46.07792999899999 ], [ 14.908764500000018, 46.207565998 ], [ 14.565212, 46.367696998999975 ], [ 14.5651755, 46.372453496999981 ], [ 14.6745805, 46.450687500000015 ], [ 15.065120499999978, 46.652112497000019 ], [ 15.40197949899999, 46.65354849900001 ], [ 15.649988, 46.705757 ], [ 15.786422, 46.7074695 ], [ 16.038086, 46.656145497000011 ], [ 15.996236, 46.8353985 ], [ 16.113849, 46.869067998999981 ], [ 16.3707935, 46.722243499 ], [ 16.596805, 46.475902498999972 ] ] ] } }, -{ "type": "Feature", "id": 1735, "properties": { "NUTS_ID": "UKM2", "STAT_LEVL_": 2, "SHAPE_AREA": 2.61844155576, "SHAPE_LEN": 11.665539645400001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.851041001, 56.97269799899999 ], [ -2.425346, 56.755187997 ], [ -3.051892501, 56.458499997999979 ], [ -3.27144769, 56.353184073000023 ], [ -3.2769755, 56.350532500999975 ], [ -3.264612652999972, 56.352858137 ], [ -3.243498734000013, 56.356829979999986 ], [ -2.803087, 56.439677997999979 ], [ -2.620387, 56.2611885 ], [ -3.391451500000016, 56.00593199799999 ], [ -3.866839500000026, 56.1206625 ], [ -3.820153, 56.099117501000023 ], [ -3.515724, 56.002258500999972 ], [ -3.425330499999973, 55.994030001 ], [ -3.077645500000017, 55.94689549899999 ], [ -2.3666235, 55.946113498999978 ], [ -2.034329, 55.811165 ], [ -2.335961, 55.63214499899999 ], [ -2.165465499999982, 55.468467501000021 ], [ -2.689751, 55.18906399799999 ], [ -2.858508, 55.108424999000022 ], [ -3.507365, 55.41234949699998 ], [ -3.471619, 55.771068497999977 ], [ -3.7440075, 55.782108498000014 ], [ -3.822552, 55.89659500099998 ], [ -4.020121, 56.028145000999984 ], [ -4.1523815, 56.008144500000014 ], [ -4.47081, 56.002395501000024 ], [ -4.598209, 56.084338999000011 ], [ -4.854503500000021, 56.370532998999977 ], [ -4.53214250000002, 56.795907999 ], [ -3.8016275, 56.936012498000025 ], [ -3.372107500000027, 56.874744497999984 ], [ -2.851041001, 56.97269799899999 ] ] ] } }, -{ "type": "Feature", "id": 1736, "properties": { "NUTS_ID": "UKM3", "STAT_LEVL_": 2, "SHAPE_AREA": 1.8240910934800001, "SHAPE_LEN": 7.5101901327 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.598209, 56.084338999000011 ], [ -4.47081, 56.002395501000024 ], [ -4.1523815, 56.008144500000014 ], [ -4.020121, 56.028145000999984 ], [ -3.822552, 55.89659500099998 ], [ -3.7440075, 55.782108498000014 ], [ -3.471619, 55.771068497999977 ], [ -3.507365, 55.41234949699998 ], [ -2.858508, 55.108424999000022 ], [ -3.091623992999985, 54.97554629199999 ], [ -4.4054395, 54.677509500999975 ], [ -5.183450000999983, 54.912364998999976 ], [ -5.040228500000012, 54.997726500999988 ], [ -4.65827250000001, 55.570289499000012 ], [ -4.888966499999981, 55.87478999699999 ], [ -4.7651305, 55.957771499999978 ], [ -4.392671741000015, 55.889815842000019 ], [ -4.609648, 55.94667449799999 ], [ -4.828885, 56.079009998 ], [ -4.78744838099999, 56.169451165999988 ], [ -4.786687023000013, 56.294805003000022 ], [ -4.598209, 56.084338999000011 ] ] ] } }, -{ "type": "Feature", "id": 1737, "properties": { "NUTS_ID": "UKM5", "STAT_LEVL_": 2, "SHAPE_AREA": 0.837955502282, "SHAPE_LEN": 4.9746472989 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.425346, 56.755187997 ], [ -2.851041001, 56.97269799899999 ], [ -3.372107500000027, 56.874744497999984 ], [ -3.8016275, 56.936012498000025 ], [ -2.649769, 57.52970099800001 ], [ -2.801509, 57.6952475 ], [ -1.78944, 57.503555498000026 ], [ -2.425346, 56.755187997 ] ] ] } }, -{ "type": "Feature", "id": 1738, "properties": { "NUTS_ID": "UKM6", "STAT_LEVL_": 2, "SHAPE_AREA": 5.48541557262, "SHAPE_LEN": 31.440485688399999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.771491500000025, 57.867034999 ], [ -4.4320525, 57.494354000999977 ], [ -2.801509, 57.6952475 ], [ -2.649769, 57.52970099800001 ], [ -3.8016275, 56.936012498000025 ], [ -4.53214250000002, 56.795907999 ], [ -4.854503500000021, 56.370532998999977 ], [ -4.786687023000013, 56.294805003000022 ], [ -4.78744838099999, 56.169451165999988 ], [ -4.828885, 56.079009998 ], [ -5.419614, 55.896728498000016 ], [ -5.520004500000027, 55.361922998000011 ], [ -5.799178, 55.299698001000024 ], [ -5.436028, 55.857562998999981 ], [ -5.666273499999988, 55.800583001 ], [ -5.487101000999985, 56.256931501 ], [ -5.654321, 56.297649497 ], [ -5.38434560799999, 56.531742240000028 ], [ -5.122688000999972, 56.827274499 ], [ -5.684919, 56.4972955 ], [ -6.226232, 56.710991001000025 ], [ -5.75170300100001, 56.782165497999983 ], [ -5.924258, 56.891563497999982 ], [ -5.72895, 57.101478498 ], [ -5.5094375, 57.097774499000025 ], [ -5.681389, 57.1505305 ], [ -5.670602562999989, 57.208438753999985 ], [ -6.017994, 57.017947999 ], [ -6.7897145, 57.42120749899999 ], [ -6.296708, 57.707561498000018 ], [ -6.146597000999975, 57.574474497999972 ], [ -6.130341, 57.316936499 ], [ -5.885413500000027, 57.238167001000022 ], [ -5.6476125, 57.255294998000011 ], [ -5.664395153999976, 57.219288447 ], [ -5.415392, 57.230156 ], [ -5.82202, 57.363647496999988 ], [ -5.8141635, 57.858711 ], [ -5.071033000999989, 57.81991949799999 ], [ -5.458675, 58.074409495999987 ], [ -5.0071175, 58.625992000999986 ], [ -3.024449, 58.64426400100001 ], [ -3.116977500000019, 58.36858 ], [ -4.400494, 57.918987497999979 ], [ -3.771491500000025, 57.867034999 ] ] ], [ [ [ -6.180591, 58.467010500000015 ], [ -6.344816, 58.234204497 ], [ -6.135358, 58.259441498 ], [ -6.967598, 57.727894000999981 ], [ -7.1331955, 57.836654501 ], [ -6.8160135, 57.900836998999978 ], [ -7.079999499999985, 57.967232001000013 ], [ -6.907952, 58.049675001000026 ], [ -7.10329500099999, 58.073547500000018 ], [ -7.027442, 58.244353997000019 ], [ -6.180591, 58.467010500000015 ] ] ], [ [ [ -1.155833500000028, 60.338035499999989 ], [ -1.277545, 59.852599998000017 ], [ -1.702932, 60.255359499 ], [ -1.339904500999978, 60.359771497999986 ], [ -1.632932, 60.483162 ], [ -1.499491319000015, 60.543659871999978 ], [ -1.304159, 60.623996499999976 ], [ -1.155833500000028, 60.338035499999989 ] ] ], [ [ [ -5.646332, 56.440559501 ], [ -6.385666501, 56.288787997999975 ], [ -6.323570501, 56.606162998 ], [ -5.646332, 56.440559501 ] ] ], [ [ [ -2.9119245, 59.006061499 ], [ -2.704751499999986, 58.961914001000025 ], [ -3.368161499999985, 58.998829 ], [ -2.9119245, 59.006061499 ] ] ] ] } }, -{ "type": "Feature", "id": 1739, "properties": { "NUTS_ID": "UKC2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.76454701825899996, "SHAPE_LEN": 4.1705192524200001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.3473725, 54.860690998999985 ], [ -1.559341501, 54.882102998999983 ], [ -1.820951, 54.905727500000012 ], [ -2.312043001, 54.791080500000021 ], [ -2.567809, 54.8236425 ], [ -2.4862965, 55.083118499000022 ], [ -2.689751, 55.18906399799999 ], [ -2.165465499999982, 55.468467501000021 ], [ -2.335961, 55.63214499899999 ], [ -2.034329, 55.811165 ], [ -1.838949500000012, 55.642334 ], [ -1.639348, 55.578319497999985 ], [ -1.461693, 55.0743905 ], [ -1.3639015, 54.9441835 ], [ -1.3473725, 54.860690998999985 ] ] ] } }, -{ "type": "Feature", "id": 1744, "properties": { "NUTS_ID": "UKD1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.92977088113799999, "SHAPE_LEN": 4.0522667392500002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.312043001, 54.791080500000021 ], [ -2.1701665, 54.458256 ], [ -2.4608275, 54.226764498000023 ], [ -2.86947, 54.17673849900001 ], [ -3.149062, 54.093601 ], [ -3.174973, 54.114906499000028 ], [ -3.2049515, 54.215130000999977 ], [ -3.223693609, 54.249058382999976 ], [ -3.613598, 54.525096999000027 ], [ -3.3986365, 54.869125499 ], [ -3.11915, 54.927886999 ], [ -3.091623992999985, 54.97554629199999 ], [ -2.858508, 55.108424999000022 ], [ -2.689751, 55.18906399799999 ], [ -2.4862965, 55.083118499000022 ], [ -2.567809, 54.8236425 ], [ -2.312043001, 54.791080500000021 ] ] ] } }, -{ "type": "Feature", "id": 1747, "properties": { "NUTS_ID": "UKD3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.167065694131, "SHAPE_LEN": 1.8864801182199999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.909583, 53.53842149899998 ], [ -1.9633505, 53.50985349699999 ], [ -2.0310235, 53.370289001 ], [ -2.240760500000022, 53.359599999000011 ], [ -2.313970499999982, 53.357452500000022 ], [ -2.426563499999986, 53.387489497999979 ], [ -2.489705500000014, 53.460170498000025 ], [ -2.576719, 53.446087001000024 ], [ -2.730499501, 53.520629998 ], [ -2.511298, 53.627029500999981 ], [ -2.379104, 53.630901500999983 ], [ -2.371208, 53.667114501000015 ], [ -2.146293001, 53.682266 ], [ -1.909583, 53.53842149899998 ] ] ] } }, -{ "type": "Feature", "id": 1753, "properties": { "NUTS_ID": "UKD4", "STAT_LEVL_": 2, "SHAPE_AREA": 0.45083488441300001, "SHAPE_LEN": 3.20406197402 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.046089, 53.850178 ], [ -2.06121, 53.825671999 ], [ -2.146293001, 53.682266 ], [ -2.371208, 53.667114501000015 ], [ -2.379104, 53.630901500999983 ], [ -2.511298, 53.627029500999981 ], [ -2.730499501, 53.520629998 ], [ -2.887978, 53.503860499999973 ], [ -3.046686500000021, 53.542991498999982 ], [ -2.956203, 53.697529001000021 ], [ -2.833743, 53.722129999 ], [ -3.057371499999988, 53.776481499 ], [ -3.047940499999982, 53.875774498999988 ], [ -2.86947, 54.17673849900001 ], [ -2.4608275, 54.226764498000023 ], [ -2.469517, 54.04625699799999 ], [ -2.1844825, 53.952304998999978 ], [ -2.046089, 53.850178 ] ] ] } }, -{ "type": "Feature", "id": 1760, "properties": { "NUTS_ID": "UKD6", "STAT_LEVL_": 2, "SHAPE_AREA": 0.30950076280900002, "SHAPE_LEN": 2.6508197127400002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.426563499999986, 53.387489497999979 ], [ -2.313970499999982, 53.357452500000022 ], [ -2.240760500000022, 53.359599999000011 ], [ -2.0310235, 53.370289001 ], [ -1.987376, 53.213608 ], [ -2.380768, 52.998428499999989 ], [ -2.69927450099999, 52.995460501000025 ], [ -2.726823500000023, 52.9832955 ], [ -3.084193, 53.256122498000025 ], [ -3.110706, 53.296317999 ], [ -2.928556500000013, 53.308277 ], [ -2.7524115, 53.3147545 ], [ -2.675166499999989, 53.354484500000012 ], [ -2.693358, 53.361835498 ], [ -2.576719, 53.446087001000024 ], [ -2.489705500000014, 53.460170498000025 ], [ -2.426563499999986, 53.387489497999979 ] ] ] } }, -{ "type": "Feature", "id": 1764, "properties": { "NUTS_ID": "UKD7", "STAT_LEVL_": 2, "SHAPE_AREA": 0.072684468425499998, "SHAPE_LEN": 2.1146134083499999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -3.046686500000021, 53.542991498999982 ], [ -2.887978, 53.503860499999973 ], [ -2.730499501, 53.520629998 ], [ -2.576719, 53.446087001000024 ], [ -2.693358, 53.361835498 ], [ -2.826677, 53.331672501000014 ], [ -3.008742, 53.438411498999983 ], [ -3.1054585, 53.551548001000015 ], [ -2.956203, 53.697529001000021 ], [ -3.046686500000021, 53.542991498999982 ] ] ], [ [ [ -2.928556500000013, 53.308277 ], [ -3.110706, 53.296317999 ], [ -3.200367501000017, 53.387527499999976 ], [ -2.928556500000013, 53.308277 ] ] ] ] } }, -{ "type": "Feature", "id": 1770, "properties": { "NUTS_ID": "UKE1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.47198883345999998, "SHAPE_LEN": 5.0628428461099997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.017378, 53.525367501 ], [ -0.738485500000024, 53.519866998999987 ], [ -0.741809832, 53.516955832 ], [ -0.7974175, 53.455085998000015 ], [ -0.935518, 53.502521499000011 ], [ -0.8652705, 53.637733500000024 ], [ -1.0486, 53.65608199899998 ], [ -0.905781499999989, 53.725761501000022 ], [ -0.911604, 53.7284125 ], [ -0.9234475, 53.880794501000025 ], [ -0.925222, 53.991550501 ], [ -0.2124495, 54.15762700099998 ], [ 0.141740261999985, 53.61067700699999 ], [ -0.250096, 53.733318500999985 ], [ -0.419136501000025, 53.719619997 ], [ -0.698366, 53.684653998999977 ], [ -0.722945813000024, 53.611722574 ], [ -0.7450505, 53.571201498999983 ], [ -0.739235033, 53.52388799 ], [ -0.720730575, 53.611187982999979 ], [ -0.295713499999977, 53.713866999 ], [ 0.017378, 53.525367501 ] ] ] } }, -{ "type": "Feature", "id": 1774, "properties": { "NUTS_ID": "UKE2", "STAT_LEVL_": 2, "SHAPE_AREA": 1.1763775913300001, "SHAPE_LEN": 5.5535624985599998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.2124495, 54.15762700099998 ], [ -0.925222, 53.991550501 ], [ -0.9234475, 53.880794501000025 ], [ -0.911604, 53.7284125 ], [ -0.905781499999989, 53.725761501000022 ], [ -1.0486, 53.65608199899998 ], [ -1.232786499999975, 53.621139500000027 ], [ -1.3019855, 53.7417565 ], [ -1.294119, 53.9270975 ], [ -1.72716650000001, 53.910236499 ], [ -2.046089, 53.850178 ], [ -2.1844825, 53.952304998999978 ], [ -2.469517, 54.04625699799999 ], [ -2.4608275, 54.226764498000023 ], [ -2.1701665, 54.458256 ], [ -1.696865, 54.536060501 ], [ -1.434778, 54.487514498999985 ], [ -1.234791, 54.51036849799999 ], [ -0.7909065, 54.5594825 ], [ -0.2124495, 54.15762700099998 ] ] ] } }, -{ "type": "Feature", "id": 1777, "properties": { "NUTS_ID": "UKE3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.22042160874700001, "SHAPE_LEN": 2.1653459640600001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.935518, 53.502521499000011 ], [ -1.199686499999984, 53.311454997 ], [ -1.324675, 53.328853498 ], [ -1.599034500000016, 53.311401498 ], [ -1.801430499999981, 53.481018001 ], [ -1.822188499999982, 53.521117998000022 ], [ -1.586403500000017, 53.607204497999987 ], [ -1.232786499999975, 53.621139500000027 ], [ -1.0486, 53.65608199899998 ], [ -0.8652705, 53.637733500000024 ], [ -0.935518, 53.502521499000011 ] ] ] } }, -{ "type": "Feature", "id": 1780, "properties": { "NUTS_ID": "UKE4", "STAT_LEVL_": 2, "SHAPE_AREA": 0.25498020173699998, "SHAPE_LEN": 2.2489915633500002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.232786499999975, 53.621139500000027 ], [ -1.586403500000017, 53.607204497999987 ], [ -1.822188499999982, 53.521117998000022 ], [ -1.909583, 53.53842149899998 ], [ -2.146293001, 53.682266 ], [ -2.06121, 53.825671999 ], [ -2.046089, 53.850178 ], [ -1.72716650000001, 53.910236499 ], [ -1.294119, 53.9270975 ], [ -1.3019855, 53.7417565 ], [ -1.232786499999975, 53.621139500000027 ] ] ] } }, -{ "type": "Feature", "id": 1786, "properties": { "NUTS_ID": "UKF1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.61325828931699999, "SHAPE_LEN": 3.64653206853 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.822188499999982, 53.521117998000022 ], [ -1.801430499999981, 53.481018001 ], [ -1.599034500000016, 53.311401498 ], [ -1.324675, 53.328853498 ], [ -1.199686499999984, 53.311454997 ], [ -0.935518, 53.502521499000011 ], [ -0.7974175, 53.455085998000015 ], [ -0.778224500000022, 52.976932498999986 ], [ -0.819968500000016, 52.96047199899999 ], [ -1.267846, 52.873378998000021 ], [ -1.597507, 52.700431998999989 ], [ -1.987376, 53.213608 ], [ -2.0310235, 53.370289001 ], [ -1.9633505, 53.50985349699999 ], [ -1.909583, 53.53842149899998 ], [ -1.822188499999982, 53.521117998000022 ] ] ] } }, -{ "type": "Feature", "id": 1793, "properties": { "NUTS_ID": "UKF2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.69335831533000003, "SHAPE_LEN": 3.5134657969799998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.871292499999981, 52.0402525 ], [ -1.118058, 52.015426498000011 ], [ -1.331868499999985, 52.168487500000026 ], [ -1.20158, 52.396735998999986 ], [ -1.589611, 52.68727099900002 ], [ -1.597507, 52.700431998999989 ], [ -1.267846, 52.873378998000021 ], [ -0.819968500000016, 52.96047199899999 ], [ -0.778224500000022, 52.976932498999986 ], [ -0.4948475, 52.64027975099998 ], [ -0.41533, 52.578746997 ], [ -0.341543, 52.466945499000019 ], [ -0.465321500000016, 52.322956001000023 ], [ -0.668097, 52.195033998999975 ], [ -0.70541750000001, 52.191570497999976 ], [ -0.871292499999981, 52.0402525 ] ] ] } }, -{ "type": "Feature", "id": 1798, "properties": { "NUTS_ID": "UKF3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.79254781253600004, "SHAPE_LEN": 3.7025781612199999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.26596, 52.810116000999983 ], [ 0.171689, 52.738036998999974 ], [ -0.031214, 52.66153699900002 ], [ -0.4948475, 52.64027975099998 ], [ -0.778224500000022, 52.976932498999986 ], [ -0.7974175, 53.455085998000015 ], [ -0.741809832, 53.516955832 ], [ -0.738485500000024, 53.519866998999987 ], [ 0.017378, 53.525367501 ], [ 0.355712, 53.192062498999974 ], [ 0.043715500000019, 52.903881 ], [ 0.26596, 52.810116000999983 ] ] ] } }, -{ "type": "Feature", "id": 1801, "properties": { "NUTS_ID": "UKG1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.75177494433799996, "SHAPE_LEN": 5.39719405619 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.331868499999985, 52.168487500000026 ], [ -1.6657325, 51.987491498 ], [ -1.76762700099999, 52.112594499000011 ], [ -2.351362, 52.021365999000011 ], [ -2.6502135, 51.826152998999987 ], [ -3.067357500000014, 51.983150501000011 ], [ -3.1419115, 52.127876499000024 ], [ -2.954719, 52.349258500000019 ], [ -2.618022, 52.306964998000012 ], [ -2.287363, 52.455325999000024 ], [ -2.164830000999984, 52.430213998 ], [ -2.016967500000021, 52.43268949899999 ], [ -1.8687215, 52.404742999 ], [ -1.87201, 52.36760349799999 ], [ -1.601023, 52.38932399700002 ], [ -1.4241525, 52.434074499000019 ], [ -1.5954575, 52.455924998 ], [ -1.753495, 52.512973999 ], [ -1.788053, 52.587871499000016 ], [ -1.589611, 52.68727099900002 ], [ -1.20158, 52.396735998999986 ], [ -1.331868499999985, 52.168487500000026 ] ] ] } }, -{ "type": "Feature", "id": 1805, "properties": { "NUTS_ID": "UKG2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.86177429685200002, "SHAPE_LEN": 4.1887368149800004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.597507, 52.700431998999989 ], [ -1.589611, 52.68727099900002 ], [ -1.788053, 52.587871499000016 ], [ -1.872537500000021, 52.584953498 ], [ -2.050694001000011, 52.620533001000013 ], [ -2.1334655, 52.554076999000017 ], [ -2.164830000999984, 52.430213998 ], [ -2.287363, 52.455325999000024 ], [ -2.618022, 52.306964998000012 ], [ -2.954719, 52.349258500000019 ], [ -3.235562, 52.44255049899999 ], [ -3.14748, 52.890155998000012 ], [ -2.726823500000023, 52.9832955 ], [ -2.69927450099999, 52.995460501000025 ], [ -2.380768, 52.998428499999989 ], [ -1.987376, 53.213608 ], [ -1.597507, 52.700431998999989 ] ] ] } }, -{ "type": "Feature", "id": 1810, "properties": { "NUTS_ID": "UKG3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.092811966854999997, "SHAPE_LEN": 1.7136533458900001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.788053, 52.587871499000016 ], [ -1.753495, 52.512973999 ], [ -1.5954575, 52.455924998 ], [ -1.4241525, 52.434074499000019 ], [ -1.601023, 52.38932399700002 ], [ -1.87201, 52.36760349799999 ], [ -1.8687215, 52.404742999 ], [ -2.016967500000021, 52.43268949899999 ], [ -2.164830000999984, 52.430213998 ], [ -2.1334655, 52.554076999000017 ], [ -2.050694001000011, 52.620533001000013 ], [ -1.872537500000021, 52.584953498 ], [ -1.788053, 52.587871499000016 ] ] ] } }, -{ "type": "Feature", "id": 1819, "properties": { "NUTS_ID": "UKH1", "STAT_LEVL_": 2, "SHAPE_AREA": 1.5818293911800001, "SHAPE_LEN": 5.5812724533600004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.756430500000022, 52.471725498000012 ], [ 1.391530358000011, 51.98931597 ], [ 1.05638, 51.95149249799999 ], [ 0.705025499999977, 52.06266800100002 ], [ 0.404686500000025, 52.065498499 ], [ 0.389743, 52.036464501000012 ], [ 0.068169, 52.005786999 ], [ -0.157241000999989, 52.080547497999987 ], [ -0.249742, 52.184372000999986 ], [ -0.465321500000016, 52.322956001000023 ], [ -0.341543, 52.466945499000019 ], [ -0.41533, 52.578746997 ], [ -0.4948475, 52.64027975099998 ], [ -0.031214, 52.66153699900002 ], [ 0.171689, 52.738036998999974 ], [ 0.26596, 52.810116000999983 ], [ 0.695918, 52.98762899799999 ], [ 1.675478, 52.74269099899999 ], [ 1.7405435, 52.532100500000013 ], [ 1.756430500000022, 52.471725498000012 ] ] ] } }, -{ "type": "Feature", "id": 1826, "properties": { "NUTS_ID": "UKH2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.352041967362, "SHAPE_LEN": 2.6828826653500002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068169, 52.005786999 ], [ -0.011878500000023, 51.6808775 ], [ -0.18204750000001, 51.668601997 ], [ -0.304423, 51.636348499 ], [ -0.5005615, 51.599689497999975 ], [ -0.745649501, 51.842094498999984 ], [ -0.553598, 51.8267095 ], [ -0.652946499999985, 51.969230501000027 ], [ -0.5917725, 52.110691 ], [ -0.668097, 52.195033998999975 ], [ -0.465321500000016, 52.322956001000023 ], [ -0.249742, 52.184372000999986 ], [ -0.157241000999989, 52.080547497999987 ], [ 0.068169, 52.005786999 ] ] ] } }, -{ "type": "Feature", "id": 1831, "properties": { "NUTS_ID": "UKH3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.45675606534899998, "SHAPE_LEN": 4.1557810329100002 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 1.05638, 51.95149249799999 ], [ 1.2919645, 51.870651 ], [ 0.844628, 51.781318499 ], [ 0.71307, 51.715091500000028 ], [ 0.756304, 51.691742 ], [ 0.9458965, 51.716212998 ], [ 0.776491998999973, 51.636024498999973 ], [ 0.76434071599999, 51.63674747499999 ], [ 0.85409737399999, 51.601599641 ], [ 0.958179500000028, 51.61969 ], [ 0.821244, 51.540714498 ], [ 0.626791, 51.532172999000011 ], [ 0.51370350000002, 51.531184998000015 ], [ 0.40186059199999, 51.456630585000028 ], [ 0.379662895000024, 51.457289678999985 ], [ 0.217437, 51.480072 ], [ 0.210514, 51.490035998999986 ], [ 0.313079500000015, 51.565814999 ], [ 0.200354, 51.624931499000013 ], [ 0.138225499999976, 51.623543 ], [ -0.012219500000015, 51.646228998000026 ], [ -0.011878500000023, 51.6808775 ], [ 0.068169, 52.005786999 ], [ 0.389743, 52.036464501000012 ], [ 0.404686500000025, 52.065498499 ], [ 0.705025499999977, 52.06266800100002 ], [ 1.05638, 51.95149249799999 ] ] ] } }, -{ "type": "Feature", "id": 1839, "properties": { "NUTS_ID": "UKI3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.015338348282600001, "SHAPE_LEN": 0.62348309678199998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.079542452999988, 51.507740223999974 ], [ -0.079878638000025, 51.500596307000023 ], [ -0.108863, 51.50844949899999 ], [ -0.128365499999973, 51.48505799899999 ], [ -0.140344, 51.419246497000017 ], [ -0.253975500000024, 51.437237 ], [ -0.222829, 51.471816997000019 ], [ -0.244502, 51.488700998000013 ], [ -0.253024, 51.5014 ], [ -0.246334499999989, 51.532798999000022 ], [ -0.215968, 51.527927498999986 ], [ -0.191422, 51.536288999000021 ], [ -0.213401001000022, 51.555148998999982 ], [ -0.171223, 51.572429500999988 ], [ -0.085154, 51.520332499 ], [ -0.078408, 51.521507500999974 ], [ -0.079542452999988, 51.507740223999974 ] ] ] } }, -{ "type": "Feature", "id": 1844, "properties": { "NUTS_ID": "UKI4", "STAT_LEVL_": 2, "SHAPE_AREA": 0.026769330792500001, "SHAPE_LEN": 0.9811022674 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.068394, 51.544414501 ], [ 0.09699949899999, 51.515670999 ], [ 0.073823467000011, 51.50462927699999 ], [ 0.048330898000017, 51.498521840000024 ], [ -0.024711500000024, 51.485649001000013 ], [ 0.028960499999982, 51.441623499 ], [ -0.078261, 51.4205055 ], [ -0.078611501000012, 51.41982249900002 ], [ -0.127744, 51.412315498999988 ], [ -0.140344, 51.419246497000017 ], [ -0.128365499999973, 51.48505799899999 ], [ -0.108863, 51.50844949899999 ], [ -0.079878638000025, 51.500596307000023 ], [ -0.079542452999988, 51.507740223999974 ], [ -0.078408, 51.521507500999974 ], [ -0.085154, 51.520332499 ], [ -0.171223, 51.572429500999988 ], [ -0.138722499999972, 51.610191498 ], [ -0.0413825, 51.605636499000013 ], [ -0.061119, 51.577785499000015 ], [ 0.068394, 51.544414501 ] ] ] } }, -{ "type": "Feature", "id": 1850, "properties": { "NUTS_ID": "UKI5", "STAT_LEVL_": 2, "SHAPE_AREA": 0.056562738212499998, "SHAPE_LEN": 1.48524701046 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.210514, 51.490035998999986 ], [ 0.217437, 51.480072 ], [ 0.152974, 51.408702999000013 ], [ 0.148871, 51.4085045 ], [ 0.028960499999982, 51.441623499 ], [ -0.024711500000024, 51.485649001000013 ], [ 0.048330898000017, 51.498521840000024 ], [ 0.073823467000011, 51.50462927699999 ], [ 0.09699949899999, 51.515670999 ], [ 0.068394, 51.544414501 ], [ -0.061119, 51.577785499000015 ], [ -0.0413825, 51.605636499000013 ], [ -0.138722499999972, 51.610191498 ], [ -0.18204750000001, 51.668601997 ], [ -0.011878500000023, 51.6808775 ], [ -0.012219500000015, 51.646228998000026 ], [ 0.138225499999976, 51.623543 ], [ 0.200354, 51.624931499000013 ], [ 0.313079500000015, 51.565814999 ], [ 0.210514, 51.490035998999986 ] ] ] } }, -{ "type": "Feature", "id": 1855, "properties": { "NUTS_ID": "UKI6", "STAT_LEVL_": 2, "SHAPE_AREA": 0.044732538271800001, "SHAPE_LEN": 1.1015014692 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.148871, 51.4085045 ], [ 0.042433500000016, 51.292667498000014 ], [ 0.002330500000028, 51.329132 ], [ -0.156508, 51.3215065 ], [ -0.330622, 51.329006000999982 ], [ -0.317662, 51.393665499 ], [ -0.253975500000024, 51.437237 ], [ -0.140344, 51.419246497000017 ], [ -0.127744, 51.412315498999988 ], [ -0.078611501000012, 51.41982249900002 ], [ -0.078261, 51.4205055 ], [ 0.028960499999982, 51.441623499 ], [ 0.148871, 51.4085045 ] ] ] } }, -{ "type": "Feature", "id": 1859, "properties": { "NUTS_ID": "UKI7", "STAT_LEVL_": 2, "SHAPE_AREA": 0.059320145935100002, "SHAPE_LEN": 1.1230751784399999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.138722499999972, 51.610191498 ], [ -0.171223, 51.572429500999988 ], [ -0.213401001000022, 51.555148998999982 ], [ -0.191422, 51.536288999000021 ], [ -0.215968, 51.527927498999986 ], [ -0.246334499999989, 51.532798999000022 ], [ -0.253024, 51.5014 ], [ -0.244502, 51.488700998000013 ], [ -0.222829, 51.471816997000019 ], [ -0.253975500000024, 51.437237 ], [ -0.317662, 51.393665499 ], [ -0.458605499999976, 51.456314 ], [ -0.509666501000027, 51.469173500000011 ], [ -0.489989499999979, 51.494747 ], [ -0.5005615, 51.599689497999975 ], [ -0.304423, 51.636348499 ], [ -0.18204750000001, 51.668601997 ], [ -0.138722499999972, 51.610191498 ] ] ] } }, -{ "type": "Feature", "id": 1866, "properties": { "NUTS_ID": "UKJ1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.77467063615099996, "SHAPE_LEN": 4.0123671060600001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.5005615, 51.599689497999975 ], [ -0.489989499999979, 51.494747 ], [ -0.509666501000027, 51.469173500000011 ], [ -0.775435500000015, 51.331954997000025 ], [ -1.429674499999976, 51.336532499999976 ], [ -1.49828, 51.329376 ], [ -1.584689500000025, 51.524913998999978 ], [ -1.602793500000018, 51.518295498999976 ], [ -1.6830405, 51.690112997000028 ], [ -1.6657325, 51.987491498 ], [ -1.331868499999985, 52.168487500000026 ], [ -1.118058, 52.015426498000011 ], [ -0.871292499999981, 52.0402525 ], [ -0.70541750000001, 52.191570497999976 ], [ -0.668097, 52.195033998999975 ], [ -0.5917725, 52.110691 ], [ -0.652946499999985, 51.969230501000027 ], [ -0.553598, 51.8267095 ], [ -0.745649501, 51.842094498999984 ], [ -0.5005615, 51.599689497999975 ] ] ] } }, -{ "type": "Feature", "id": 1871, "properties": { "NUTS_ID": "UKJ2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.62517291620500004, "SHAPE_LEN": 4.3656818092999998 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -0.317662, 51.393665499 ], [ -0.330622, 51.329006000999982 ], [ -0.156508, 51.3215065 ], [ 0.002330500000028, 51.329132 ], [ 0.042433500000016, 51.292667498000014 ], [ 0.0500535, 51.142643 ], [ 0.605435, 51.012058500000023 ], [ 0.779000999, 50.989479 ], [ 0.854784, 50.923709998999982 ], [ -0.03817650000002, 50.799503499000025 ], [ -0.216009, 50.827563997000027 ], [ -0.932831, 50.843151 ], [ -0.938582, 50.873718499 ], [ -0.753453499999978, 51.086452499000018 ], [ -0.8488835, 51.2107125 ], [ -0.775435500000015, 51.331954997000025 ], [ -0.509666501000027, 51.469173500000011 ], [ -0.458605499999976, 51.456314 ], [ -0.317662, 51.393665499 ] ] ] } }, -{ "type": "Feature", "id": 1878, "properties": { "NUTS_ID": "UKJ3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.46882759320599998, "SHAPE_LEN": 4.6775915611899999 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -0.753453499999978, 51.086452499000018 ], [ -0.938582, 50.873718499 ], [ -0.932831, 50.843151 ], [ -1.021779507000019, 50.835727013 ], [ -1.116579, 50.842498998 ], [ -1.3651595, 50.880069497000022 ], [ -1.4770375, 50.923957997 ], [ -1.306856, 50.819854498999973 ], [ -1.6920495, 50.736625498000024 ], [ -1.956807, 50.98982999899999 ], [ -1.6233815, 50.954635500999984 ], [ -1.49828, 51.329376 ], [ -1.429674499999976, 51.336532499999976 ], [ -0.775435500000015, 51.331954997000025 ], [ -0.8488835, 51.2107125 ], [ -0.753453499999978, 51.086452499000018 ] ] ], [ [ [ -1.069896, 50.683647001 ], [ -1.303737500000011, 50.576045997999984 ], [ -1.586375, 50.663165997000021 ], [ -1.292164500000013, 50.75799949899999 ], [ -1.069896, 50.683647001 ] ] ] ] } }, -{ "type": "Feature", "id": 1885, "properties": { "NUTS_ID": "UKJ4", "STAT_LEVL_": 2, "SHAPE_AREA": 0.4797968086, "SHAPE_LEN": 3.7061579840099999 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 0.379662895000024, 51.457289678999985 ], [ 0.40186059199999, 51.456630585000028 ], [ 0.458900500000027, 51.454936998999983 ], [ 0.720437, 51.45972799899999 ], [ 0.539261022, 51.407019827 ], [ 0.6268945, 51.37521 ], [ 0.951056, 51.373244999 ], [ 0.950297499999976, 51.345749 ], [ 1.4497465, 51.377177997999979 ], [ 1.3796385, 51.1421585 ], [ 0.854784, 50.923709998999982 ], [ 0.779000999, 50.989479 ], [ 0.605435, 51.012058500000023 ], [ 0.0500535, 51.142643 ], [ 0.042433500000016, 51.292667498000014 ], [ 0.148871, 51.4085045 ], [ 0.152974, 51.408702999000013 ], [ 0.217437, 51.480072 ], [ 0.379662895000024, 51.457289678999985 ] ] ] } }, -{ "type": "Feature", "id": 1892, "properties": { "NUTS_ID": "UKK1", "STAT_LEVL_": 2, "SHAPE_AREA": 0.98390192297300005, "SHAPE_LEN": 4.8348146520500004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.6657325, 51.987491498 ], [ -1.6830405, 51.690112997000028 ], [ -1.602793500000018, 51.518295498999976 ], [ -1.584689500000025, 51.524913998999978 ], [ -1.49828, 51.329376 ], [ -1.6233815, 50.954635500999984 ], [ -1.956807, 50.98982999899999 ], [ -2.325841500000024, 51.0796775 ], [ -2.289077, 51.325275501000021 ], [ -2.992948, 51.32031999899999 ], [ -2.679612, 51.480212999 ], [ -2.674005500000021, 51.544273498999985 ], [ -2.534737, 51.677245998999979 ], [ -2.66065692, 51.627663196000015 ], [ -2.6502135, 51.826152998999987 ], [ -2.351362, 52.021365999000011 ], [ -1.76762700099999, 52.112594499000011 ], [ -1.6657325, 51.987491498 ] ] ] } }, -{ "type": "Feature", "id": 1898, "properties": { "NUTS_ID": "UKK2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.845971591882, "SHAPE_LEN": 5.1234239214999997 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.956807, 50.98982999899999 ], [ -1.6920495, 50.736625498000024 ], [ -1.7407255, 50.7215385 ], [ -2.0406, 50.719962999000018 ], [ -1.953566001000013, 50.594131499000014 ], [ -2.947815000999981, 50.718307501000027 ], [ -2.954316, 50.82117449899999 ], [ -3.834736, 51.141384 ], [ -3.7207785, 51.233093499 ], [ -2.992948, 51.32031999899999 ], [ -2.289077, 51.325275501000021 ], [ -2.325841500000024, 51.0796775 ], [ -1.956807, 50.98982999899999 ] ] ] } }, -{ "type": "Feature", "id": 1902, "properties": { "NUTS_ID": "UKK3", "STAT_LEVL_": 2, "SHAPE_AREA": 0.45526803761000001, "SHAPE_LEN": 3.3859502886700001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.235094221, 50.460252785000023 ], [ -4.20370002300001, 50.398256189999984 ], [ -4.177532638, 50.364021469000022 ], [ -4.76328, 50.326236498000014 ], [ -5.185075499999982, 49.963165496999977 ], [ -5.479827, 50.126014499 ], [ -4.545959499999981, 50.928352499000027 ], [ -4.235094221, 50.460252785000023 ] ] ] } }, -{ "type": "Feature", "id": 1904, "properties": { "NUTS_ID": "UKK4", "STAT_LEVL_": 2, "SHAPE_AREA": 0.87891528861900003, "SHAPE_LEN": 4.4070154726000004 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.947815000999981, 50.718307501000027 ], [ -3.5090305, 50.516514001000019 ], [ -3.507436, 50.378989999 ], [ -3.723704, 50.201519 ], [ -4.1231325, 50.346740497999974 ], [ -4.177532638, 50.364021469000022 ], [ -4.20370002300001, 50.398256189999984 ], [ -4.235094221, 50.460252785000023 ], [ -4.545959499999981, 50.928352499000027 ], [ -4.139783841, 51.077219300000024 ], [ -4.200037001, 51.200939 ], [ -3.7207785, 51.233093499 ], [ -3.834736, 51.141384 ], [ -2.954316, 50.82117449899999 ], [ -2.947815000999981, 50.718307501000027 ] ] ] } }, -{ "type": "Feature", "id": 1909, "properties": { "NUTS_ID": "UKL1", "STAT_LEVL_": 2, "SHAPE_AREA": 1.68557125007, "SHAPE_LEN": 12.0259665728 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.6378555, 51.469840998 ], [ -3.88623, 51.617385997999975 ], [ -4.307776, 51.610301999 ], [ -4.05255, 51.703281498000024 ], [ -4.929975500000012, 51.59847650099999 ], [ -5.3202485, 51.861602999000013 ], [ -4.207504501000017, 52.263820497999973 ], [ -3.9310135, 52.553612 ], [ -4.128679, 52.612781499999983 ], [ -4.058637499999975, 52.920723001 ], [ -4.767578500000013, 52.79496 ], [ -4.216110416999982, 53.19851737099998 ], [ -4.69663, 53.30674349899999 ], [ -4.040188, 53.310653499000011 ], [ -4.196792116999973, 53.210816994000027 ], [ -4.007376, 53.246928998999977 ], [ -3.363392499999975, 53.352028 ], [ -3.0902865, 52.971641498999986 ], [ -3.375009499999976, 52.892474998000012 ], [ -3.48307, 52.865539499000022 ], [ -3.926611, 52.560783499000024 ], [ -3.658389, 52.347758997000028 ], [ -3.647133, 52.038799497000014 ], [ -3.80665, 51.787929498999972 ], [ -3.591288500000019, 51.754619498000011 ], [ -3.334463, 51.790408999000022 ], [ -3.157343500000025, 51.816058999 ], [ -2.958938, 51.628749998999979 ], [ -3.118871500000012, 51.545707499 ], [ -3.237515, 51.552627498999982 ], [ -3.497506499999986, 51.51264549699999 ], [ -3.6378555, 51.469840998 ] ] ] } }, -{ "type": "Feature", "id": 1918, "properties": { "NUTS_ID": "UKL2", "STAT_LEVL_": 2, "SHAPE_AREA": 0.92108711622299999, "SHAPE_LEN": 8.0216146948299993 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.084193, 53.256122498000025 ], [ -2.726823500000023, 52.9832955 ], [ -3.14748, 52.890155998000012 ], [ -3.235562, 52.44255049899999 ], [ -2.954719, 52.349258500000019 ], [ -3.1419115, 52.127876499000024 ], [ -3.067357500000014, 51.983150501000011 ], [ -2.6502135, 51.826152998999987 ], [ -2.66065692, 51.627663196000015 ], [ -3.082688, 51.501907499000026 ], [ -3.6378555, 51.469840998 ], [ -3.497506499999986, 51.51264549699999 ], [ -3.237515, 51.552627498999982 ], [ -3.118871500000012, 51.545707499 ], [ -2.958938, 51.628749998999979 ], [ -3.157343500000025, 51.816058999 ], [ -3.334463, 51.790408999000022 ], [ -3.591288500000019, 51.754619498000011 ], [ -3.80665, 51.787929498999972 ], [ -3.647133, 52.038799497000014 ], [ -3.658389, 52.347758997000028 ], [ -3.926611, 52.560783499000024 ], [ -3.48307, 52.865539499000022 ], [ -3.375009499999976, 52.892474998000012 ], [ -3.0902865, 52.971641498999986 ], [ -3.363392499999975, 53.352028 ], [ -3.084193, 53.256122498000025 ] ] ] } }, -{ "type": "Feature", "id": 1944, "properties": { "NUTS_ID": "UKN0", "STAT_LEVL_": 2, "SHAPE_AREA": 1.88082099117, "SHAPE_LEN": 7.4104194730500001 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -6.2680155, 54.102337 ], [ -6.623778500000014, 54.036548497000013 ], [ -7.0286355, 54.421306497999979 ], [ -7.565956, 54.126514499 ], [ -8.177718, 54.464973500999974 ], [ -7.703411501, 54.608287999000027 ], [ -7.921372, 54.696544499000026 ], [ -7.534506, 54.74713900099999 ], [ -7.256068500000026, 55.067034998 ], [ -7.099074804999987, 55.100807920000022 ], [ -6.455277, 55.2393035 ], [ -5.976527499999975, 55.056598501 ], [ -5.992633500000011, 54.989261999 ], [ -5.721779, 54.772852496999974 ], [ -5.720909001, 54.772636498999987 ], [ -5.691673, 54.809592999000017 ], [ -5.690664001000016, 54.769462497 ], [ -5.912931500000013, 54.648036998 ], [ -5.855336, 54.63377 ], [ -5.575003, 54.670196501000021 ], [ -5.432802, 54.48764399800001 ], [ -5.499689499999988, 54.338054499 ], [ -5.874409, 54.184848500999976 ], [ -6.2680155, 54.102337 ] ] ] } } -] -} diff --git a/examples/geo_schelling_points/geo_schelling_points/agents.py b/examples/geo_schelling_points/geo_schelling_points/agents.py deleted file mode 100644 index dac03036..00000000 --- a/examples/geo_schelling_points/geo_schelling_points/agents.py +++ /dev/null @@ -1,75 +0,0 @@ -import random - -from shapely.geometry import Point - -import mesa_geo as mg - - -class PersonAgent(mg.GeoAgent): - SIMILARITY_THRESHOLD = 0.3 - - def __init__(self, unique_id, model, geometry, crs, is_red, region_id): - super().__init__(unique_id, model, geometry, crs) - self.is_red = is_red - self.region_id = region_id - - @property - def is_unhappy(self): - if self.is_red: - return ( - self.model.space.get_region_by_id(self.region_id).red_pct - < self.SIMILARITY_THRESHOLD - ) - else: - return ( - 1 - self.model.space.get_region_by_id(self.region_id).red_pct - ) < self.SIMILARITY_THRESHOLD - - def step(self): - if self.is_unhappy: - random_region_id = self.model.space.get_random_region_id() - self.model.space.remove_person_from_region(self) - self.model.space.add_person_to_region(self, region_id=random_region_id) - - -class RegionAgent(mg.GeoAgent): - init_num_people: int - red_cnt: int - blue_cnt: int - - def __init__(self, unique_id, model, geometry, crs, init_num_people=5): - super().__init__(unique_id, model, geometry, crs) - self.init_num_people = init_num_people - self.red_cnt = 0 - self.blue_cnt = 0 - - @property - def red_pct(self): - if self.red_cnt == 0: - return 0 - elif self.blue_cnt == 0: - return 1 - else: - return self.red_cnt / (self.red_cnt + self.blue_cnt) - - def random_point(self): - min_x, min_y, max_x, max_y = self.geometry.bounds - while not self.geometry.contains( - random_point := Point( - random.uniform(min_x, max_x), random.uniform(min_y, max_y) - ) - ): - continue - return random_point - - def add_person(self, person): - if person.is_red: - self.red_cnt += 1 - else: - self.blue_cnt += 1 - - def remove_person(self, person): - if person.is_red: - self.red_cnt -= 1 - else: - self.blue_cnt -= 1 diff --git a/examples/geo_schelling_points/geo_schelling_points/model.py b/examples/geo_schelling_points/geo_schelling_points/model.py deleted file mode 100644 index b9c83d1b..00000000 --- a/examples/geo_schelling_points/geo_schelling_points/model.py +++ /dev/null @@ -1,65 +0,0 @@ -import random -import uuid - -import mesa - -import mesa_geo as mg - -from .agents import PersonAgent, RegionAgent -from .space import Nuts2Eu - - -class GeoSchellingPoints(mesa.Model): - def __init__(self, red_percentage=0.5, similarity_threshold=0.5): - super().__init__() - - self.red_percentage = red_percentage - PersonAgent.SIMILARITY_THRESHOLD = similarity_threshold - - self.schedule = mesa.time.RandomActivation(self) - self.space = Nuts2Eu() - - self.datacollector = mesa.DataCollector( - {"unhappy": "unhappy", "happy": "happy"} - ) - - # Set up the grid with patches for every NUTS region - ac = mg.AgentCreator(RegionAgent, model=self) - regions = ac.from_file( - "data/nuts_rg_60M_2013_lvl_2.geojson", unique_id="NUTS_ID" - ) - self.space.add_regions(regions) - - for region in regions: - for _ in range(region.init_num_people): - person = PersonAgent( - unique_id=uuid.uuid4().int, - model=self, - crs=self.space.crs, - geometry=region.random_point(), - is_red=random.random() < self.red_percentage, - region_id=region.unique_id, - ) - self.space.add_person_to_region(person, region_id=region.unique_id) - self.schedule.add(person) - - self.datacollector.collect(self) - - @property - def unhappy(self): - num_unhappy = 0 - for agent in self.space.agents: - if isinstance(agent, PersonAgent) and agent.is_unhappy: - num_unhappy += 1 - return num_unhappy - - @property - def happy(self): - return self.space.num_people - self.unhappy - - def step(self): - self.schedule.step() - self.datacollector.collect(self) - - if not self.unhappy: - self.running = False diff --git a/examples/geo_schelling_points/geo_schelling_points/server.py b/examples/geo_schelling_points/geo_schelling_points/server.py deleted file mode 100644 index 44b2c9ee..00000000 --- a/examples/geo_schelling_points/geo_schelling_points/server.py +++ /dev/null @@ -1,60 +0,0 @@ -import mesa - -import mesa_geo as mg - -from .agents import PersonAgent, RegionAgent -from .model import GeoSchellingPoints - - -class HappyElement(mesa.visualization.TextElement): - def render(self, model): - return f"Happy agents: {model.happy}" - - -class UnhappyElement(mesa.visualization.TextElement): - def render(self, model): - return f"Unhappy agents: {model.unhappy}" - - -model_params = { - "red_percentage": mesa.visualization.Slider("% red", 0.5, 0.00, 1.0, 0.05), - "similarity_threshold": mesa.visualization.Slider( - "% similar wanted", 0.5, 0.00, 1.0, 0.05 - ), -} - - -def schelling_draw(agent): - portrayal = {} - if isinstance(agent, RegionAgent): - if agent.red_cnt > agent.blue_cnt: - portrayal["color"] = "Red" - elif agent.red_cnt < agent.blue_cnt: - portrayal["color"] = "Blue" - else: - portrayal["color"] = "Grey" - elif isinstance(agent, PersonAgent): - portrayal["radius"] = 1 - portrayal["shape"] = "circle" - portrayal["color"] = "Red" if agent.is_red else "Blue" - return portrayal - - -happy_element = HappyElement() -unhappy_element = UnhappyElement() -map_element = mg.visualization.MapModule(schelling_draw, [52, 12], 4) -happy_chart = mesa.visualization.ChartModule( - [ - {"Label": "unhappy", "Color": "Orange"}, - { - "Label": "happy", - "Color": "Green", - }, - ] -) -server = mesa.visualization.ModularServer( - GeoSchellingPoints, - [map_element, happy_element, unhappy_element, happy_chart], - "Schelling", - model_params, -) diff --git a/examples/geo_schelling_points/geo_schelling_points/space.py b/examples/geo_schelling_points/geo_schelling_points/space.py deleted file mode 100644 index 4a7f9228..00000000 --- a/examples/geo_schelling_points/geo_schelling_points/space.py +++ /dev/null @@ -1,44 +0,0 @@ -import random -from typing import Dict - -import mesa_geo as mg - -from .agents import RegionAgent - - -class Nuts2Eu(mg.GeoSpace): - _id_region_map: Dict[str, RegionAgent] - num_people: int - - def __init__(self): - super().__init__(warn_crs_conversion=False) - self._id_region_map = {} - self.num_people = 0 - - def add_regions(self, agents): - super().add_agents(agents) - total_area = 0 - for agent in agents: - self._id_region_map[agent.unique_id] = agent - total_area += agent.SHAPE_AREA - for _, agent in self._id_region_map.items(): - agent.SHAPE_AREA = agent.SHAPE_AREA / total_area * 100.0 - - def add_person_to_region(self, person, region_id): - person.region_id = region_id - person.geometry = self._id_region_map[region_id].random_point() - self._id_region_map[region_id].add_person(person) - super().add_agents(person) - self.num_people += 1 - - def remove_person_from_region(self, person): - self._id_region_map[person.region_id].remove_person(person) - person.region_id = None - super().remove_agent(person) - self.num_people -= 1 - - def get_random_region_id(self) -> str: - return random.choice(list(self._id_region_map.keys())) - - def get_region_by_id(self, region_id) -> RegionAgent: - return self._id_region_map.get(region_id) diff --git a/examples/geo_schelling_points/run.py b/examples/geo_schelling_points/run.py deleted file mode 100644 index 637abd36..00000000 --- a/examples/geo_schelling_points/run.py +++ /dev/null @@ -1,3 +0,0 @@ -from geo_schelling_points.server import server - -server.launch() diff --git a/examples/geo_sir/README.md b/examples/geo_sir/README.md deleted file mode 100644 index 0cd2ca73..00000000 --- a/examples/geo_sir/README.md +++ /dev/null @@ -1,26 +0,0 @@ -# GeoSIR Epidemics Model - -[![](https://img.youtube.com/vi/oZShtptaIg4/0.jpg)](https://www.youtube.com/watch?v=oZShtptaIg4) - -## Summary - -This is a geoversion of a simple agent-based pandemic SIR model, as an example to show the capabilities of mesa-geo. - -It uses geographical data of Toronto's regions on top of a an Leaflet map to show the location of agents (in a continuous space). - -Person agents are initially located in random positions in the city, then start moving around unless they die. -A fraction of agents start with an infection and may recover or die in each step. -Susceptible agents (those who have never been infected) who come in proximity with an infected agent may become infected. - -Neighbourhood agents represent neighbourhoods in the Toronto, and become hot-spots (colored red) if there are infected agents inside them. -Data obtained from [this link](http://adamw523.com/toronto-geojson/). - -## How to run - -To run the model interactively, run `mesa runserver` in this directory. e.g. - -```bash -mesa runserver -``` - -Then open your browser to [http://127.0.0.1:8521/](http://127.0.0.1:8521/) and press `Start`. diff --git a/examples/geo_sir/agents.py b/examples/geo_sir/agents.py deleted file mode 100644 index 60f5f3eb..00000000 --- a/examples/geo_sir/agents.py +++ /dev/null @@ -1,122 +0,0 @@ -from shapely.geometry import Point - -import mesa_geo as mg - - -class PersonAgent(mg.GeoAgent): - """Person Agent.""" - - def __init__( - self, - unique_id, - model, - geometry, - crs, - agent_type="susceptible", - mobility_range=100, - recovery_rate=0.2, - death_risk=0.1, - init_infected=0.1, - ): - """ - Create a new person agent. - :param unique_id: Unique identifier for the agent - :param model: Model in which the agent runs - :param geometry: Shape object for the agent - :param agent_type: Indicator if agent is infected ("infected", "susceptible", "recovered" or "dead") - :param mobility_range: Range of distance to move in one step - """ - super().__init__(unique_id, model, geometry, crs) - # Agent parameters - self.atype = agent_type - self.mobility_range = mobility_range - self.recovery_rate = recovery_rate - self.death_risk = death_risk - - # Random choose if infected - if self.random.random() < init_infected: - self.atype = "infected" - self.model.counts["infected"] += 1 # Adjust initial counts - self.model.counts["susceptible"] -= 1 - - def move_point(self, dx, dy): - """ - Move a point by creating a new one - :param dx: Distance to move in x-axis - :param dy: Distance to move in y-axis - """ - return Point(self.geometry.x + dx, self.geometry.y + dy) - - def step(self): - """Advance one step.""" - # If susceptible, check if exposed - if self.atype == "susceptible": - neighbors = self.model.space.get_neighbors_within_distance( - self, self.model.exposure_distance - ) - for neighbor in neighbors: - if ( - neighbor.atype == "infected" - and self.random.random() < self.model.infection_risk - ): - self.atype = "infected" - break - - # If infected, check if it recovers or if it dies - elif self.atype == "infected": - if self.random.random() < self.recovery_rate: - self.atype = "recovered" - elif self.random.random() < self.death_risk: - self.atype = "dead" - - # If not dead, move - if self.atype != "dead": - move_x = self.random.randint(-self.mobility_range, self.mobility_range) - move_y = self.random.randint(-self.mobility_range, self.mobility_range) - self.geometry = self.move_point(move_x, move_y) # Reassign geometry - - self.model.counts[self.atype] += 1 # Count agent type - - def __repr__(self): - return "Person " + str(self.unique_id) - - -class NeighbourhoodAgent(mg.GeoAgent): - """Neighbourhood agent. Changes color according to number of infected inside it.""" - - def __init__( - self, unique_id, model, geometry, crs, agent_type="safe", hotspot_threshold=1 - ): - """ - Create a new Neighbourhood agent. - :param unique_id: Unique identifier for the agent - :param model: Model in which the agent runs - :param geometry: Shape object for the agent - :param agent_type: Indicator if agent is infected ("infected", "susceptible", "recovered" or "dead") - :param hotspot_threshold: Number of infected agents in region to be considered a hot-spot - """ - super().__init__(unique_id, model, geometry, crs) - self.atype = agent_type - self.hotspot_threshold = ( - hotspot_threshold # When a neighborhood is considered a hot-spot - ) - self.color_hotspot() - - def step(self): - """Advance agent one step.""" - self.color_hotspot() - self.model.counts[self.atype] += 1 # Count agent type - - def color_hotspot(self): - # Decide if this region agent is a hot-spot (if more than threshold person agents are infected) - neighbors = self.model.space.get_intersecting_agents(self) - infected_neighbors = [ - neighbor for neighbor in neighbors if neighbor.atype == "infected" - ] - if len(infected_neighbors) >= self.hotspot_threshold: - self.atype = "hotspot" - else: - self.atype = "safe" - - def __repr__(self): - return "Neighborhood " + str(self.unique_id) diff --git a/examples/geo_sir/data/TorontoNeighbourhoods-original.geojson b/examples/geo_sir/data/TorontoNeighbourhoods-original.geojson deleted file mode 100644 index 8b47f836..00000000 --- a/examples/geo_sir/data/TorontoNeighbourhoods-original.geojson +++ /dev/null @@ -1,287 +0,0 @@ -{ -"type": "FeatureCollection", -"name": "Toronto", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, -"features": [ -{ "type": "Feature", "properties": { "DAUID": "35200879", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 81, "HOOD": "Trinity-Bellwoods", "FULLHOOD": "Trinity-Bellwoods (81)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.404282800449266, 43.647979616068149 ], [ -79.403956753621998, 43.647182710744943 ], [ -79.422367865782221, 43.643467621011894 ], [ -79.426405439465128, 43.653607643265183 ], [ -79.418687921131777, 43.655217309937044 ], [ -79.417698785211911, 43.65524323486715 ], [ -79.415147366859514, 43.654963225171983 ], [ -79.40767889826175, 43.656464424471459 ], [ -79.404282800449266, 43.647979616068149 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201763", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 1, "HOOD": "West Humber-Clairville", "FULLHOOD": "West Humber-Clairville (1)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.566675749803977, 43.711786210194681 ], [ -79.556729178154654, 43.714081349663701 ], [ -79.554906889365952, 43.714701520248788 ], [ -79.553987542384618, 43.712542671424949 ], [ -79.552366680773119, 43.709585196937951 ], [ -79.554256497309936, 43.708756085297885 ], [ -79.556442266110153, 43.706902389351747 ], [ -79.560241917344939, 43.702039204230651 ], [ -79.567997378891491, 43.693757048646752 ], [ -79.570283180471819, 43.690320442055764 ], [ -79.57400671856297, 43.683959076027563 ], [ -79.577853936451092, 43.676627266536556 ], [ -79.579779637734561, 43.674085817376117 ], [ -79.582024627313203, 43.672418155461806 ], [ -79.584869686619314, 43.670956550193814 ], [ -79.591217950980351, 43.668739699763407 ], [ -79.594990954103423, 43.674855525814806 ], [ -79.600088047532921, 43.683810726062994 ], [ -79.600798127819104, 43.685306541207744 ], [ -79.600816318611095, 43.686144486331123 ], [ -79.602127767775698, 43.68808082367562 ], [ -79.604933761905585, 43.693402839246353 ], [ -79.613689668028073, 43.707443880995854 ], [ -79.620936874544228, 43.719775208076257 ], [ -79.625998652313129, 43.729036361590296 ], [ -79.630707543845475, 43.736655699256751 ], [ -79.630622764157408, 43.736938693581642 ], [ -79.630130499444874, 43.736984738163201 ], [ -79.630004623180909, 43.737363469845945 ], [ -79.630260859240835, 43.737555579219659 ], [ -79.630113015709114, 43.738058003822886 ], [ -79.631154155524541, 43.738691782419792 ], [ -79.631913884099262, 43.7396822602811 ], [ -79.632625424187466, 43.741698641380069 ], [ -79.633271251880359, 43.742246655494917 ], [ -79.633977689016135, 43.742309108408726 ], [ -79.633918319822541, 43.742731577555013 ], [ -79.634265194048865, 43.742771728661545 ], [ -79.634672185593217, 43.743068880087158 ], [ -79.6381511940385, 43.748865357363016 ], [ -79.639220428302991, 43.749898809155617 ], [ -79.637166581923537, 43.750809732362463 ], [ -79.635764775525175, 43.751149399860758 ], [ -79.63279122383652, 43.751318406157175 ], [ -79.630930486365301, 43.751641273576986 ], [ -79.603374428544484, 43.757911862949825 ], [ -79.600273855037472, 43.754482681591981 ], [ -79.591620839680942, 43.73681576080623 ], [ -79.587534009666626, 43.727970143429054 ], [ -79.586520851383654, 43.728739438163487 ], [ -79.585570866853232, 43.729006839518306 ], [ -79.58331629641269, 43.728789798358839 ], [ -79.581602541525143, 43.728273358271103 ], [ -79.580373335374404, 43.728276107435363 ], [ -79.5793331336194, 43.728686367088777 ], [ -79.579085508527584, 43.729178484320236 ], [ -79.580430756422558, 43.73162624430212 ], [ -79.580388039037942, 43.732381962640758 ], [ -79.579761732970184, 43.733139525539301 ], [ -79.577385292957217, 43.733766220695443 ], [ -79.566675749803977, 43.711786210194681 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201852", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 2, "HOOD": "Mount Olive-Silverstone-Jamestown", "FULLHOOD": "Mount Olive-Silverstone-Jamestown (2)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.578252690709149, 43.735515813387487 ], [ -79.577385292957217, 43.733766220695443 ], [ -79.579761732970184, 43.733139525539301 ], [ -79.580388039037942, 43.732381962640758 ], [ -79.580430756422558, 43.73162624430212 ], [ -79.579085508527584, 43.729178484320236 ], [ -79.5793331336194, 43.728686367088777 ], [ -79.580373335374404, 43.728276107435363 ], [ -79.581602541525143, 43.728273358271103 ], [ -79.58331629641269, 43.728789798358839 ], [ -79.585570866853232, 43.729006839518306 ], [ -79.586520851383654, 43.728739438163487 ], [ -79.587534009666626, 43.727970143429054 ], [ -79.591620839680942, 43.73681576080623 ], [ -79.600273855037472, 43.754482681591981 ], [ -79.603374428544484, 43.757911862949825 ], [ -79.580714490008646, 43.762972725159443 ], [ -79.579082045221071, 43.762265969785545 ], [ -79.578263050911303, 43.762419982443163 ], [ -79.577603975483655, 43.762365965913766 ], [ -79.577529003752502, 43.762096958508337 ], [ -79.57835904738684, 43.761675013751749 ], [ -79.579262967298135, 43.760913981444524 ], [ -79.580582048963848, 43.760422030471624 ], [ -79.580837991721495, 43.759968994210155 ], [ -79.580613948122163, 43.759193044994284 ], [ -79.580987022445683, 43.75885497553476 ], [ -79.581996985414222, 43.758562972961577 ], [ -79.5826569901174, 43.758562964594262 ], [ -79.583465000365564, 43.758793973072358 ], [ -79.583933036052258, 43.758555010436801 ], [ -79.583762980412914, 43.757533985420295 ], [ -79.584156991538933, 43.757279971994123 ], [ -79.584943972767348, 43.757141994041845 ], [ -79.58517795641248, 43.756457958650756 ], [ -79.58496500551405, 43.755965982994681 ], [ -79.58422102246719, 43.755636037394574 ], [ -79.584210024344429, 43.754468001308908 ], [ -79.583157008342212, 43.753861015599313 ], [ -79.583337974789103, 43.753092969487454 ], [ -79.583103964209144, 43.752709021472278 ], [ -79.580071981599744, 43.751686966392462 ], [ -79.579348004194273, 43.75103398076692 ], [ -79.578411976631372, 43.750564962730806 ], [ -79.577561015085294, 43.750289004868719 ], [ -79.575370006722267, 43.750050003099787 ], [ -79.574613970820138, 43.750104043751293 ], [ -79.573847952540874, 43.750349964445412 ], [ -79.573178002107724, 43.750242045710031 ], [ -79.572954976432371, 43.749980999142657 ], [ -79.572934001179704, 43.748867027031707 ], [ -79.572316969243275, 43.748744010367233 ], [ -79.571551005546539, 43.749112972019816 ], [ -79.571113956810677, 43.749005970108698 ], [ -79.571773984152941, 43.74802203116149 ], [ -79.573305976326552, 43.747845006517956 ], [ -79.573380004980834, 43.747491976893464 ], [ -79.573136043154591, 43.747177018101404 ], [ -79.572571977395569, 43.746846990724421 ], [ -79.571337954708198, 43.746807993531441 ], [ -79.568507964983993, 43.746239957709655 ], [ -79.582646619826065, 43.744547125730683 ], [ -79.578252690709149, 43.735515813387487 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201872", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 21, "HOOD": "Humber Summit", "FULLHOOD": "Humber Summit (21)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.557618276560433, 43.748807893154563 ], [ -79.564385567818078, 43.747326468089732 ], [ -79.568507964983993, 43.746239957709655 ], [ -79.571337954708198, 43.746807993531441 ], [ -79.572571977395569, 43.746846990724421 ], [ -79.573306040177883, 43.747346033969009 ], [ -79.573305976326552, 43.747845006517956 ], [ -79.571773984152941, 43.74802203116149 ], [ -79.571113956810677, 43.749005970108698 ], [ -79.571551005546539, 43.749112972019816 ], [ -79.572316969243275, 43.748744010367233 ], [ -79.572934001179704, 43.748867027031707 ], [ -79.572954976432371, 43.749980999142657 ], [ -79.573178002107724, 43.750242045710031 ], [ -79.573847952540874, 43.750349964445412 ], [ -79.574613970820138, 43.750104043751293 ], [ -79.575370006722267, 43.750050003099787 ], [ -79.577752995640623, 43.750334962010655 ], [ -79.579348004194273, 43.75103398076692 ], [ -79.580071981599744, 43.751686966392462 ], [ -79.583103964209144, 43.752709021472278 ], [ -79.583337974789103, 43.753092969487454 ], [ -79.583157008342212, 43.753861015599313 ], [ -79.584210024344429, 43.754468001308908 ], [ -79.584113952140953, 43.75535898495685 ], [ -79.58422102246719, 43.755636037394574 ], [ -79.58496500551405, 43.755965982994681 ], [ -79.585166964494235, 43.756219993830925 ], [ -79.585092953443933, 43.756988015761372 ], [ -79.584943972767348, 43.757141994041845 ], [ -79.583858959623271, 43.757395015471921 ], [ -79.583773995657026, 43.757748995901309 ], [ -79.583975974879834, 43.758362992775666 ], [ -79.583795024258634, 43.758717044640115 ], [ -79.583465000365564, 43.758793973072358 ], [ -79.5826569901174, 43.758562964594262 ], [ -79.581996985414222, 43.758562972961577 ], [ -79.580987022445683, 43.75885497553476 ], [ -79.580613948122163, 43.759193044994284 ], [ -79.580837991721495, 43.759968994210155 ], [ -79.580582048963848, 43.760422030471624 ], [ -79.580178041735266, 43.760638009518686 ], [ -79.579592994189781, 43.7606989770144 ], [ -79.57835904738684, 43.761675013751749 ], [ -79.577529003752502, 43.762096958508337 ], [ -79.577603975483655, 43.762365965913766 ], [ -79.577826962460122, 43.762427971803021 ], [ -79.579390999587176, 43.762335972352005 ], [ -79.580571951857351, 43.76299598084217 ], [ -79.564757624939176, 43.766572220052943 ], [ -79.534934859297479, 43.772662134856489 ], [ -79.530612584223107, 43.754447461481327 ], [ -79.545482137493082, 43.751448956283504 ], [ -79.557618276560433, 43.748807893154563 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201857", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 3, "HOOD": "Thistletown-Beaumond Heights", "FULLHOOD": "Thistletown-Beaumond Heights (3)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.553900326666792, 43.729598281023229 ], [ -79.55504720207108, 43.729192211870348 ], [ -79.555567941056424, 43.728190309633526 ], [ -79.556072671414654, 43.727854612741453 ], [ -79.557094151518086, 43.727714385493265 ], [ -79.558007824425587, 43.727924043388064 ], [ -79.560173404118615, 43.729265879778765 ], [ -79.563126375451375, 43.730392525196024 ], [ -79.565691466290318, 43.731649257536652 ], [ -79.56629754970966, 43.731746877569194 ], [ -79.566984105582023, 43.732115649585317 ], [ -79.567523511823211, 43.73292375648419 ], [ -79.567763010921226, 43.73381812334474 ], [ -79.569016341193844, 43.735418507204884 ], [ -79.570654916977148, 43.735961201470147 ], [ -79.572441294410481, 43.736037619794409 ], [ -79.573638520010221, 43.735818422017182 ], [ -79.575218042675118, 43.734667690131566 ], [ -79.577385292957217, 43.733766220695443 ], [ -79.582646619826065, 43.744547125730683 ], [ -79.568507964983993, 43.746239957709655 ], [ -79.566220992007658, 43.7459399864847 ], [ -79.564232046436686, 43.745418035435549 ], [ -79.56339097781877, 43.744840983511828 ], [ -79.562199956830284, 43.744341982404578 ], [ -79.562147027189127, 43.74397296037403 ], [ -79.562508035232369, 43.743158959651041 ], [ -79.56190200768188, 43.742759037504761 ], [ -79.563351486697712, 43.741749155344976 ], [ -79.563505823826304, 43.741525957627509 ], [ -79.563457975461191, 43.740931142874807 ], [ -79.562780163674702, 43.740193293198914 ], [ -79.561584536566485, 43.739818093280221 ], [ -79.560668196553465, 43.739707541278591 ], [ -79.559139024567401, 43.739778300284605 ], [ -79.55882506099536, 43.739927375274782 ], [ -79.558452493940777, 43.740444877384704 ], [ -79.558417905612643, 43.740849615592033 ], [ -79.559751483517843, 43.741622128576999 ], [ -79.560025690179458, 43.742179827418397 ], [ -79.560062017709029, 43.74242900659543 ], [ -79.559763951189282, 43.742521032394542 ], [ -79.559455008851742, 43.742990008707935 ], [ -79.559029990005357, 43.742982042625123 ], [ -79.558231981250998, 43.742666999539424 ], [ -79.558062025909436, 43.7422679639091 ], [ -79.558327980130457, 43.741384003146493 ], [ -79.558094016333285, 43.741092002827557 ], [ -79.55773200988537, 43.741014972015648 ], [ -79.556805960562272, 43.741445008998078 ], [ -79.556934033219406, 43.742474999143482 ], [ -79.556413029709034, 43.743073978153546 ], [ -79.556039961807343, 43.743197003896462 ], [ -79.554295953346468, 43.743181987390827 ], [ -79.553805953595699, 43.743389045027058 ], [ -79.552827999304768, 43.743505038002901 ], [ -79.552050967506744, 43.744003986092096 ], [ -79.551454999120111, 43.744187997100312 ], [ -79.550497964771452, 43.744110965060017 ], [ -79.549859996059581, 43.743496959926446 ], [ -79.549869962905561, 43.743104964990415 ], [ -79.55042401622822, 43.742752005871516 ], [ -79.550369996297221, 43.742443997207666 ], [ -79.549189970054471, 43.742628961794225 ], [ -79.549518995363542, 43.741975999802051 ], [ -79.547498033525144, 43.741714045300981 ], [ -79.546210967186681, 43.740854032549016 ], [ -79.546179020981342, 43.740154991145857 ], [ -79.546551013170983, 43.739763007938059 ], [ -79.547572963674156, 43.739248034330444 ], [ -79.54816799982062, 43.739118042790892 ], [ -79.54852997965375, 43.738333984309357 ], [ -79.548965960396472, 43.738072972486322 ], [ -79.54972098555433, 43.737996043694935 ], [ -79.549901982389002, 43.737858000075903 ], [ -79.549976982821832, 43.737181019950462 ], [ -79.550476957683756, 43.736719981953989 ], [ -79.550275007350521, 43.736075047579511 ], [ -79.54998698749506, 43.735920973992386 ], [ -79.549083035152805, 43.735936962552202 ], [ -79.549284956927565, 43.735568017139407 ], [ -79.550243047913298, 43.73510703038405 ], [ -79.550540961603289, 43.734723006363822 ], [ -79.550370026281684, 43.733500994402561 ], [ -79.550009015540198, 43.733317009336531 ], [ -79.549370002857017, 43.733286039191114 ], [ -79.548828032188013, 43.732887039922232 ], [ -79.549308855665942, 43.731847662623551 ], [ -79.549672012299638, 43.731717151311734 ], [ -79.549639295758325, 43.731014499252339 ], [ -79.549836222797424, 43.730575814585642 ], [ -79.550864483465617, 43.73015667066857 ], [ -79.552857894106637, 43.729875763296285 ], [ -79.553473461422399, 43.729577398291816 ], [ -79.553900326666792, 43.729598281023229 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201868", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 22, "HOOD": "Humbermede", "FULLHOOD": "Humbermede (22)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.533904888654902, 43.734676357908612 ], [ -79.544179009915013, 43.732355972462017 ], [ -79.544594029998279, 43.732410046125509 ], [ -79.545189991509645, 43.732179980725689 ], [ -79.545859996319479, 43.731495988683008 ], [ -79.546753050394656, 43.731618966150563 ], [ -79.547498031799776, 43.731941967975438 ], [ -79.547848974429698, 43.732449000756141 ], [ -79.548615026006274, 43.73270996983323 ], [ -79.549370002857017, 43.733286039191114 ], [ -79.550009015540198, 43.733317009336531 ], [ -79.550370026281684, 43.733500994402561 ], [ -79.550455048530949, 43.734961007168451 ], [ -79.549477005044395, 43.735430024328409 ], [ -79.549072984481072, 43.735806037720103 ], [ -79.549136037828788, 43.735998037723014 ], [ -79.54998698749506, 43.735920973992386 ], [ -79.550275007350521, 43.736075047579511 ], [ -79.550476957683756, 43.736719981953989 ], [ -79.549976982821832, 43.737181019950462 ], [ -79.549901982389002, 43.737858000075903 ], [ -79.54972098555433, 43.737996043694935 ], [ -79.548965960396472, 43.738072972486322 ], [ -79.548423968945926, 43.738441021084704 ], [ -79.54816799982062, 43.739118042790892 ], [ -79.547572963674156, 43.739248034330444 ], [ -79.546317028502017, 43.739931969095196 ], [ -79.546147036720484, 43.740762030721626 ], [ -79.5477209739052, 43.741798974256923 ], [ -79.549050960389664, 43.741837013806936 ], [ -79.549518995363542, 43.741975999802051 ], [ -79.549189970054471, 43.742628961794225 ], [ -79.550369996297221, 43.742443997207666 ], [ -79.55042401622822, 43.742752005871516 ], [ -79.549869962905561, 43.743104964990415 ], [ -79.549859996059581, 43.743496959926446 ], [ -79.550380996775559, 43.744035036729635 ], [ -79.550764020155754, 43.744187972874883 ], [ -79.551454999120111, 43.744187997100312 ], [ -79.552050967506744, 43.744003986092096 ], [ -79.552827999304768, 43.743505038002901 ], [ -79.553805953595699, 43.743389045027058 ], [ -79.554295953346468, 43.743181987390827 ], [ -79.556039961807343, 43.743197003896462 ], [ -79.556413029709034, 43.743073978153546 ], [ -79.556934033219406, 43.742474999143482 ], [ -79.556805960562272, 43.741445008998078 ], [ -79.55773200988537, 43.741014972015648 ], [ -79.558094016333285, 43.741092002827557 ], [ -79.558327980130457, 43.741384003146493 ], [ -79.558062025909436, 43.7422679639091 ], [ -79.558231981250998, 43.742666999539424 ], [ -79.559029990005357, 43.742982042625123 ], [ -79.559455008851742, 43.742990008707935 ], [ -79.559763951189282, 43.742521032394542 ], [ -79.560062017709029, 43.74242900659543 ], [ -79.560025690179458, 43.742179827418397 ], [ -79.559751483517843, 43.741622128576999 ], [ -79.558417905612643, 43.740849615592033 ], [ -79.558633230664299, 43.74015909595429 ], [ -79.55882506099536, 43.739927375274782 ], [ -79.559438545750083, 43.739719061210884 ], [ -79.561584536566485, 43.739818093280221 ], [ -79.562780163674702, 43.740193293198914 ], [ -79.563513780863829, 43.741192898298962 ], [ -79.563351486697712, 43.741749155344976 ], [ -79.56190200768188, 43.742759037504761 ], [ -79.562508035232369, 43.743158959651041 ], [ -79.562147027189127, 43.74397296037403 ], [ -79.562199956830284, 43.744341982404578 ], [ -79.56339097781877, 43.744840983511828 ], [ -79.564232046436686, 43.745418035435549 ], [ -79.566220992007658, 43.7459399864847 ], [ -79.567911948959377, 43.74610898864433 ], [ -79.568526083850401, 43.74633065330034 ], [ -79.545482137493082, 43.751448956283504 ], [ -79.530612584223107, 43.754447461481327 ], [ -79.526307673225205, 43.736368803710377 ], [ -79.533904888654902, 43.734676357908612 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201827", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 4, "HOOD": "Rexdale-Kipling", "FULLHOOD": "Rexdale-Kipling (4)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.554906889365952, 43.714701520248788 ], [ -79.556729178154654, 43.714081349663701 ], [ -79.566675749803977, 43.711786210194681 ], [ -79.577385292957217, 43.733766220695443 ], [ -79.575218042675118, 43.734667690131566 ], [ -79.573638520010221, 43.735818422017182 ], [ -79.572441294410481, 43.736037619794409 ], [ -79.570654916977148, 43.735961201470147 ], [ -79.569016341193844, 43.735418507204884 ], [ -79.567763010921226, 43.73381812334474 ], [ -79.567523511823211, 43.73292375648419 ], [ -79.566984105582023, 43.732115649585317 ], [ -79.562072405574057, 43.730014519051913 ], [ -79.554906889365952, 43.714701520248788 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201818", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 5, "HOOD": "Elms-Old Rexdale", "FULLHOOD": "Elms-Old Rexdale (5)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.543082977673365, 43.719818039583984 ], [ -79.544094010608802, 43.718196982129371 ], [ -79.543998044933744, 43.717505044021479 ], [ -79.542956015594825, 43.716906016303646 ], [ -79.541456006633211, 43.716937032606502 ], [ -79.541051037676567, 43.716798007755507 ], [ -79.540870979028625, 43.716628994846019 ], [ -79.540848956754886, 43.715514997906979 ], [ -79.540487962584905, 43.715108005291462 ], [ -79.5381470221879, 43.714677965608431 ], [ -79.537944996071104, 43.714469958979606 ], [ -79.537849000796442, 43.712964962434604 ], [ -79.552366680773119, 43.709585196937951 ], [ -79.553987542384618, 43.712542671424949 ], [ -79.562072405574057, 43.730014519051913 ], [ -79.559891061013815, 43.729127295711933 ], [ -79.558007824425587, 43.727924043388064 ], [ -79.556634890107645, 43.727708589013936 ], [ -79.556072671414654, 43.727854612741453 ], [ -79.555567941056424, 43.728190309633526 ], [ -79.555161684892823, 43.729076543978287 ], [ -79.554594260131324, 43.72943853993128 ], [ -79.553473461422399, 43.729577398291816 ], [ -79.552857894106637, 43.729875763296285 ], [ -79.550864483465617, 43.73015667066857 ], [ -79.549912372928887, 43.730504765270737 ], [ -79.549639295758325, 43.731014499252339 ], [ -79.549672012299638, 43.731717151311734 ], [ -79.549308855665942, 43.731847662623551 ], [ -79.548828032188013, 43.732887039922232 ], [ -79.547848974429698, 43.732449000756141 ], [ -79.547498031799776, 43.731941967975438 ], [ -79.546221995124526, 43.731511034086338 ], [ -79.54566797083497, 43.731557009684799 ], [ -79.545189991509645, 43.732179980725689 ], [ -79.544860020400094, 43.732318011592476 ], [ -79.544179009915013, 43.732355972462017 ], [ -79.543849019207883, 43.731911038201751 ], [ -79.544083034039645, 43.731595981657804 ], [ -79.5449339639638, 43.731073001840535 ], [ -79.544956036945862, 43.730897025824561 ], [ -79.543465994107351, 43.729982006714344 ], [ -79.541030018876754, 43.729544964678063 ], [ -79.540371004272998, 43.729567970368365 ], [ -79.539370985439987, 43.730858042906846 ], [ -79.539402949597132, 43.732117994766284 ], [ -79.538721967095256, 43.732040969420559 ], [ -79.53845603886603, 43.731734027011058 ], [ -79.538604949237069, 43.729752005041938 ], [ -79.538838992774657, 43.729230006140796 ], [ -79.538231956150327, 43.727484972765744 ], [ -79.53826404842664, 43.726947970226597 ], [ -79.538636983936797, 43.72661696675921 ], [ -79.539232020292957, 43.726394031855961 ], [ -79.540870952790698, 43.726141030954835 ], [ -79.541200015729814, 43.725802977814169 ], [ -79.541339015868758, 43.724980987929442 ], [ -79.540754007905321, 43.72386701053761 ], [ -79.540637024607321, 43.722514963032367 ], [ -79.541327983003299, 43.72154698389631 ], [ -79.542615001289235, 43.72064799226051 ], [ -79.543082977673365, 43.719818039583984 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201913", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 23, "HOOD": "Pelmo Park-Humberlea", "FULLHOOD": "Pelmo Park-Humberlea (23)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.508875120029543, 43.709501958160992 ], [ -79.52017724920438, 43.706823540480158 ], [ -79.520809712799092, 43.707975327651511 ], [ -79.522197619050701, 43.707694950547804 ], [ -79.522295536629358, 43.707875534211155 ], [ -79.523156273923121, 43.707697524547797 ], [ -79.523693173838495, 43.707569429179685 ], [ -79.522777970711502, 43.705988124599202 ], [ -79.525192818937526, 43.70582287550662 ], [ -79.527580178673972, 43.706467124084298 ], [ -79.529004287346865, 43.707106676353391 ], [ -79.530417783670771, 43.708450474449165 ], [ -79.530807688590173, 43.70928726208507 ], [ -79.531533798829614, 43.709160750755274 ], [ -79.530740679231656, 43.710787110175374 ], [ -79.53190687946433, 43.710591624854253 ], [ -79.532335110911717, 43.710067899814042 ], [ -79.532278489400113, 43.708977311140679 ], [ -79.5356899838158, 43.708078010142387 ], [ -79.535998014510383, 43.708324016052153 ], [ -79.537444971137916, 43.708332001011897 ], [ -79.538763989940534, 43.708985030495171 ], [ -79.539339037673855, 43.70968399511078 ], [ -79.539519997458711, 43.710666975293321 ], [ -79.539274956192173, 43.711227995110612 ], [ -79.538243014228527, 43.711888960628329 ], [ -79.537902996856445, 43.712334978983023 ], [ -79.537944996071104, 43.714469958979606 ], [ -79.5381470221879, 43.714677965608431 ], [ -79.538839028917081, 43.714861987930696 ], [ -79.540487962584905, 43.715108005291462 ], [ -79.540848956754886, 43.715514997906979 ], [ -79.540870979028625, 43.716628994846019 ], [ -79.541051037676567, 43.716798007755507 ], [ -79.541456006633211, 43.716937032606502 ], [ -79.542412960810296, 43.716868038345282 ], [ -79.543179039150345, 43.716975022060652 ], [ -79.543998044933744, 43.717505044021479 ], [ -79.544146951097602, 43.717988992065081 ], [ -79.542816991089722, 43.720394012469818 ], [ -79.542371013162338, 43.720886043042555 ], [ -79.541327983003299, 43.72154698389631 ], [ -79.540637024607321, 43.722514963032367 ], [ -79.540754007905321, 43.72386701053761 ], [ -79.541339015868758, 43.724980987929442 ], [ -79.541200015729814, 43.725802977814169 ], [ -79.540870952790698, 43.726141030954835 ], [ -79.539232020292957, 43.726394031855961 ], [ -79.538636983936797, 43.72661696675921 ], [ -79.53826404842664, 43.726947970226597 ], [ -79.538231956150327, 43.727484972765744 ], [ -79.538838992774657, 43.729230006140796 ], [ -79.538604949237069, 43.729752005041938 ], [ -79.53845603886603, 43.731734027011058 ], [ -79.538902988488331, 43.732134021740904 ], [ -79.539402949597132, 43.732117994766284 ], [ -79.539370985439987, 43.730858042906846 ], [ -79.540371004272998, 43.729567970368365 ], [ -79.541030018876754, 43.729544964678063 ], [ -79.543465994107351, 43.729982006714344 ], [ -79.544956036945862, 43.730897025824561 ], [ -79.5449339639638, 43.731073001840535 ], [ -79.544083034039645, 43.731595981657804 ], [ -79.543849019207883, 43.731911038201751 ], [ -79.544179009915013, 43.732355972462017 ], [ -79.532245119003363, 43.735042324384978 ], [ -79.528491468916229, 43.719948592111265 ], [ -79.528656984642652, 43.718258004765367 ], [ -79.529645371944383, 43.714830191316977 ], [ -79.525213222253512, 43.715784474690544 ], [ -79.507764588319461, 43.717704589349246 ], [ -79.505766626298637, 43.710207545968387 ], [ -79.508875120029543, 43.709501958160992 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201958", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 26, "HOOD": "Downsview-Roding-CFB", "FULLHOOD": "Downsview-Roding-CFB (26)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.458845577209985, 43.732095021725506 ], [ -79.457855386026324, 43.727908492126879 ], [ -79.472454086049879, 43.724798348544589 ], [ -79.492438297673544, 43.71994026042568 ], [ -79.502214598879362, 43.718351363393317 ], [ -79.525213222253512, 43.715784474690544 ], [ -79.529645371944383, 43.714830191316977 ], [ -79.528656984642652, 43.718258004765367 ], [ -79.528491468916229, 43.719948592111265 ], [ -79.532245119003363, 43.735042324384978 ], [ -79.51312548770079, 43.739395963110184 ], [ -79.51145457220484, 43.732850744882668 ], [ -79.510962581878601, 43.732966134041867 ], [ -79.51035715631663, 43.733345328539002 ], [ -79.508871724253098, 43.733659125317992 ], [ -79.505952562799067, 43.734701422637968 ], [ -79.503771629605296, 43.734519871494392 ], [ -79.50330531857422, 43.734297633323273 ], [ -79.503099789281151, 43.73457409079991 ], [ -79.502431430983435, 43.734484321788806 ], [ -79.502345357439054, 43.734951381781769 ], [ -79.501650206343456, 43.734942274101151 ], [ -79.501110276952616, 43.734683054723227 ], [ -79.501191201268981, 43.734422971236377 ], [ -79.500713185782345, 43.734173653457113 ], [ -79.499289717851639, 43.734488137967567 ], [ -79.498698714791416, 43.734786442863424 ], [ -79.498221278805232, 43.734510116614082 ], [ -79.497882996581964, 43.734631699023318 ], [ -79.49781331970388, 43.73493693726585 ], [ -79.497372699355523, 43.734679004900784 ], [ -79.496113557744565, 43.734878494826312 ], [ -79.495567799831036, 43.735348504165053 ], [ -79.494922517902395, 43.735331009758568 ], [ -79.495421787718485, 43.735724751404632 ], [ -79.494578809183437, 43.736163838685997 ], [ -79.494698921318047, 43.736327543784462 ], [ -79.494366471730928, 43.736710336727832 ], [ -79.494480718808319, 43.737603206120141 ], [ -79.49405517357242, 43.737732629882551 ], [ -79.494038504906243, 43.737903445802374 ], [ -79.494274136073372, 43.737915551060027 ], [ -79.494065172138107, 43.738326974791214 ], [ -79.494295159653589, 43.73905933495994 ], [ -79.494723534143716, 43.739308115942947 ], [ -79.494828564844028, 43.739579554625593 ], [ -79.495363003754903, 43.739559583503301 ], [ -79.495440682212532, 43.739929772179849 ], [ -79.495687582944157, 43.739987032146409 ], [ -79.495976806277014, 43.740341999846422 ], [ -79.496073634100952, 43.740937576539615 ], [ -79.497117876558306, 43.741392488812004 ], [ -79.496841602835474, 43.742010075418072 ], [ -79.496918795146229, 43.742518975232002 ], [ -79.486940690860663, 43.744748820075749 ], [ -79.484512957841019, 43.745147584854138 ], [ -79.483403297059041, 43.745789015925887 ], [ -79.482877468281629, 43.746520551679012 ], [ -79.482667366370706, 43.747256725538008 ], [ -79.482847020258234, 43.75187786591777 ], [ -79.482683442460527, 43.752843572481829 ], [ -79.482042504623976, 43.753595719607667 ], [ -79.481583776202925, 43.75387345600867 ], [ -79.480198574382129, 43.754341239868651 ], [ -79.474758347574209, 43.755514106464148 ], [ -79.4726859739053, 43.755311355254022 ], [ -79.469610732709967, 43.754037791862885 ], [ -79.46898281544911, 43.753632674356652 ], [ -79.465402943486566, 43.750378946921863 ], [ -79.464425106987449, 43.750134470597906 ], [ -79.463846505086252, 43.75014308125396 ], [ -79.459463697728125, 43.751083312871259 ], [ -79.458213472133153, 43.748014205854787 ], [ -79.454842022783552, 43.748715933912322 ], [ -79.45290287371472, 43.743953748226019 ], [ -79.454910531878255, 43.742759616589382 ], [ -79.457767579352762, 43.74228031496795 ], [ -79.45707116807921, 43.740417886918074 ], [ -79.455282797242376, 43.739929602665335 ], [ -79.456111223137029, 43.737789348201375 ], [ -79.452874585791861, 43.733961663075007 ], [ -79.451829884454384, 43.733590327494568 ], [ -79.458845577209985, 43.732095021725506 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201789", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 6, "HOOD": "Kingsview Village-The Westway", "FULLHOOD": "Kingsview Village-The Westway (6)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.5343462305229, 43.700287362577122 ], [ -79.5326970199839, 43.696160429782381 ], [ -79.533997949936349, 43.695736021557174 ], [ -79.534783994795973, 43.6950527675587 ], [ -79.534800278311124, 43.693920802457626 ], [ -79.536193754519061, 43.691172173298852 ], [ -79.536748543329566, 43.690810104482125 ], [ -79.54139303112072, 43.688946899216681 ], [ -79.544678813456699, 43.688192183483359 ], [ -79.548025032773126, 43.687838637285708 ], [ -79.550438156099005, 43.687222913758561 ], [ -79.553591997459009, 43.685946315703475 ], [ -79.55467841973514, 43.685653986599583 ], [ -79.558627106762557, 43.694329496142785 ], [ -79.569172474121402, 43.691944813795573 ], [ -79.567997378891491, 43.693757048646752 ], [ -79.560241917344939, 43.702039204230651 ], [ -79.556442266110153, 43.706902389351747 ], [ -79.554256497309936, 43.708756085297885 ], [ -79.552366680773119, 43.709585196937951 ], [ -79.550920852768655, 43.710009417290017 ], [ -79.549421859179546, 43.710196734539636 ], [ -79.537849000796442, 43.712964962434604 ], [ -79.537902996856445, 43.712334978983023 ], [ -79.538243014228527, 43.711888960628329 ], [ -79.538880990838436, 43.711581957818403 ], [ -79.539413032449986, 43.711012992868049 ], [ -79.539476998325142, 43.710021978957244 ], [ -79.539050952376599, 43.709269017056315 ], [ -79.538338967112054, 43.708746988595706 ], [ -79.537444971137916, 43.708332001011897 ], [ -79.535998014510383, 43.708324016052153 ], [ -79.5356899838158, 43.708078010142387 ], [ -79.535424051119179, 43.707447980662181 ], [ -79.535445009697682, 43.706780036639302 ], [ -79.535913004636626, 43.704682010883872 ], [ -79.535040992082045, 43.70453599318018 ], [ -79.533210953885686, 43.705035993869622 ], [ -79.531850044677086, 43.704981980182659 ], [ -79.531610084158402, 43.704216616055 ], [ -79.531867947790332, 43.703181825393159 ], [ -79.5343462305229, 43.700287362577122 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201229", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 113, "HOOD": "Weston", "FULLHOOD": "Weston (113)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.502854801782547, 43.699546023188375 ], [ -79.502797357659517, 43.699374504491466 ], [ -79.508405516277648, 43.698183840406045 ], [ -79.505677430240681, 43.696845910719489 ], [ -79.50233250994917, 43.697594407006243 ], [ -79.502042523870699, 43.696425038559234 ], [ -79.50421491414177, 43.696128508120665 ], [ -79.50293218188763, 43.695499319215642 ], [ -79.506387185438456, 43.694730188273432 ], [ -79.505609353887408, 43.694071705808916 ], [ -79.508649709731259, 43.693331833623873 ], [ -79.509105219146662, 43.693275840537261 ], [ -79.509432274159764, 43.69403158605158 ], [ -79.511132528886421, 43.693618314321803 ], [ -79.512090940467814, 43.693551212778424 ], [ -79.512860963154324, 43.693964967093585 ], [ -79.512744004440734, 43.695178977080403 ], [ -79.511828961312645, 43.696339033016422 ], [ -79.511902963475478, 43.696769028184391 ], [ -79.512180030695831, 43.697007043999356 ], [ -79.512647955414778, 43.697191009828146 ], [ -79.513680031935721, 43.697275995670992 ], [ -79.516712046969502, 43.696815040871627 ], [ -79.518861003967373, 43.697161025900087 ], [ -79.519648027924944, 43.697552989830392 ], [ -79.520180035617059, 43.698036978636445 ], [ -79.520817990143783, 43.698820029369202 ], [ -79.520891973653832, 43.699465974635842 ], [ -79.521265027437238, 43.699827006068247 ], [ -79.528625981499232, 43.702585004653166 ], [ -79.529157988197369, 43.703522018192373 ], [ -79.531040975569283, 43.704790020154242 ], [ -79.531850044677086, 43.704981980182659 ], [ -79.533210953885686, 43.705035993869622 ], [ -79.535040992082045, 43.70453599318018 ], [ -79.535913004636626, 43.704682010883872 ], [ -79.535445009697682, 43.706780036639302 ], [ -79.535424051119179, 43.707447980662181 ], [ -79.5356899838158, 43.708078010142387 ], [ -79.532278489400113, 43.708977311140679 ], [ -79.532335110911717, 43.710067899814042 ], [ -79.53190687946433, 43.710591624854253 ], [ -79.530740679231656, 43.710787110175374 ], [ -79.531533798829614, 43.709160750755274 ], [ -79.530807688590173, 43.70928726208507 ], [ -79.530417783670771, 43.708450474449165 ], [ -79.529004287346865, 43.707106676353391 ], [ -79.527580178673972, 43.706467124084298 ], [ -79.525192818937526, 43.70582287550662 ], [ -79.522777970711502, 43.705988124599202 ], [ -79.523693173838495, 43.707569429179685 ], [ -79.522295536629358, 43.707875534211155 ], [ -79.522197619050701, 43.707694950547804 ], [ -79.520809712799092, 43.707975327651511 ], [ -79.52017724920438, 43.706823540480158 ], [ -79.505766626298637, 43.710207545968387 ], [ -79.502854801782547, 43.699546023188375 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201944", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 28, "HOOD": "Rustic", "FULLHOOD": "Rustic (28)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.487604611382935, 43.706377261589758 ], [ -79.501957543533521, 43.703180860081453 ], [ -79.503751781918936, 43.702898198047826 ], [ -79.507764588319461, 43.717704589349246 ], [ -79.502214598879362, 43.718351363393317 ], [ -79.492438297673544, 43.71994026042568 ], [ -79.491277250027053, 43.71690895077699 ], [ -79.489464609526152, 43.709904312570096 ], [ -79.488226244336118, 43.707817056469921 ], [ -79.487604611382935, 43.706377261589758 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202965", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 8, "HOOD": "Humber Heights-Westmount", "FULLHOOD": "Humber Heights-Westmount (8)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.512422177719415, 43.685525880423469 ], [ -79.519757083291793, 43.683856327533341 ], [ -79.520750506355114, 43.683373265995932 ], [ -79.523712996147609, 43.68295056258264 ], [ -79.526546143600029, 43.682305477720412 ], [ -79.5326970199839, 43.696160429782381 ], [ -79.5343462305229, 43.700287362577122 ], [ -79.531867947790332, 43.703181825393159 ], [ -79.531610084158402, 43.704216616055 ], [ -79.531850044677086, 43.704981980182659 ], [ -79.531040975569283, 43.704790020154242 ], [ -79.52942396567947, 43.703753007907338 ], [ -79.528753955828662, 43.702691973893209 ], [ -79.528328050362774, 43.702439030052652 ], [ -79.526838959888693, 43.702009006796274 ], [ -79.521265027437238, 43.699827006068247 ], [ -79.520891973653832, 43.699465974635842 ], [ -79.520817990143783, 43.698820029369202 ], [ -79.520180035617059, 43.698036978636445 ], [ -79.519200999379663, 43.697283984969793 ], [ -79.518467012062473, 43.697045017841369 ], [ -79.516712046969502, 43.696815040871627 ], [ -79.513063027175505, 43.697261042150714 ], [ -79.512180030695831, 43.697007043999356 ], [ -79.511902963475478, 43.696769028184391 ], [ -79.511913970908921, 43.696099967847815 ], [ -79.512744004440734, 43.695178977080403 ], [ -79.512860963154324, 43.693964967093585 ], [ -79.513360959945075, 43.692712008032089 ], [ -79.513318045952488, 43.69169801188341 ], [ -79.512860962316509, 43.690169029773251 ], [ -79.512721979326628, 43.68889398741095 ], [ -79.511913971658643, 43.688048994536729 ], [ -79.510168982535291, 43.683708037599224 ], [ -79.509467038438714, 43.682794013438851 ], [ -79.508647967102092, 43.682463044039608 ], [ -79.505967022335895, 43.682362961744701 ], [ -79.505668951520946, 43.682001959288456 ], [ -79.505446016875283, 43.680995957993503 ], [ -79.505595024492067, 43.680404046624311 ], [ -79.506925018345584, 43.679651033751028 ], [ -79.507349989252887, 43.678890965721237 ], [ -79.512012938584292, 43.684788067070983 ], [ -79.512422177719415, 43.685525880423469 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201218", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 30, "HOOD": "Brookhaven-Amesbury", "FULLHOOD": "Brookhaven-Amesbury (30)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.475536590276391, 43.697717296005422 ], [ -79.49757388094983, 43.692849893835607 ], [ -79.50421491414177, 43.696128508120665 ], [ -79.502042523870699, 43.696425038559234 ], [ -79.50233250994917, 43.697594407006243 ], [ -79.505677430240681, 43.696845910719489 ], [ -79.508405516277648, 43.698183840406045 ], [ -79.502797357659517, 43.699374504491466 ], [ -79.503751781918936, 43.702898198047826 ], [ -79.501957543533521, 43.703180860081453 ], [ -79.480447147354809, 43.707935923904351 ], [ -79.479065912194628, 43.708280605848017 ], [ -79.476844352519095, 43.709191461989583 ], [ -79.469779463926301, 43.710768421379342 ], [ -79.46869043296924, 43.7053599886558 ], [ -79.467099093391155, 43.699702926174652 ], [ -79.475536590276391, 43.697717296005422 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201228", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 115, "HOOD": "Mount Dennis", "FULLHOOD": "Mount Dennis (115)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.489083309609839, 43.683085862936068 ], [ -79.494573781680188, 43.681825723543916 ], [ -79.495838108376475, 43.681283881528252 ], [ -79.497681542396762, 43.681083247979409 ], [ -79.498813062882121, 43.684465558451315 ], [ -79.500485741713405, 43.68411221533276 ], [ -79.501908317031223, 43.68401140650829 ], [ -79.506281697946022, 43.684682914541419 ], [ -79.510222025862262, 43.684152974938584 ], [ -79.511563019478402, 43.686927015225876 ], [ -79.511913971658643, 43.688048994536729 ], [ -79.512721979326628, 43.68889398741095 ], [ -79.513382050848193, 43.692097990009948 ], [ -79.513360959945075, 43.692712008032089 ], [ -79.512860963154324, 43.693964967093585 ], [ -79.512090940467814, 43.693551212778424 ], [ -79.511132528886421, 43.693618314321803 ], [ -79.509432274159764, 43.69403158605158 ], [ -79.509105219146662, 43.693275840537261 ], [ -79.508649709731259, 43.693331833623873 ], [ -79.505609353887408, 43.694071705808916 ], [ -79.506387185438456, 43.694730188273432 ], [ -79.50293218188763, 43.695499319215642 ], [ -79.482946427450273, 43.685588613523564 ], [ -79.483849791614873, 43.684318538740435 ], [ -79.489083309609839, 43.683085862936068 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201715", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 7, "HOOD": "Willowridge-Martingrove-Richview", "FULLHOOD": "Willowridge-Martingrove-Richview (7)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.528121374582383, 43.685873254782813 ], [ -79.526546143600029, 43.682305477720412 ], [ -79.53897506926468, 43.679853852757041 ], [ -79.562344679536778, 43.674598276378639 ], [ -79.569355354212959, 43.673903121514812 ], [ -79.573662641325001, 43.673249284168072 ], [ -79.577587949709923, 43.67711321533897 ], [ -79.57400671856297, 43.683959076027563 ], [ -79.569172474121402, 43.691944813795573 ], [ -79.558627106762557, 43.694329496142785 ], [ -79.55467841973514, 43.685653986599583 ], [ -79.553591997459009, 43.685946315703475 ], [ -79.550438156099005, 43.687222913758561 ], [ -79.548025032773126, 43.687838637285708 ], [ -79.544678813456699, 43.688192183483359 ], [ -79.54139303112072, 43.688946899216681 ], [ -79.536748543329566, 43.690810104482125 ], [ -79.535946662838882, 43.69147876669814 ], [ -79.535321917748632, 43.692684767709565 ], [ -79.534800278311124, 43.693920802457626 ], [ -79.534783994795973, 43.6950527675587 ], [ -79.533997949936349, 43.695736021557174 ], [ -79.5326970199839, 43.696160429782381 ], [ -79.528121374582383, 43.685873254782813 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201691", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 10, "HOOD": "Princess-Rosethorn", "FULLHOOD": "Princess-Rosethorn (10)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.528757031377424, 43.656816859187039 ], [ -79.526346958846077, 43.651410462615758 ], [ -79.526687701769958, 43.65102830740566 ], [ -79.527160471922201, 43.651105873620082 ], [ -79.527957552543199, 43.65096310331041 ], [ -79.529266468040589, 43.651186991731919 ], [ -79.530575844983957, 43.650888664938385 ], [ -79.530839609413277, 43.650748022024082 ], [ -79.530951800487131, 43.650218255176213 ], [ -79.531178133620585, 43.650086132580981 ], [ -79.531933705344059, 43.650122841375172 ], [ -79.532299672295963, 43.65037059330065 ], [ -79.53228017872128, 43.651171701411954 ], [ -79.532665301500572, 43.652158132195716 ], [ -79.534103728377673, 43.652158576982309 ], [ -79.535569312191171, 43.652573533525157 ], [ -79.5369708605445, 43.652564467928627 ], [ -79.537424423423644, 43.652777316066519 ], [ -79.537514298965263, 43.653165641616738 ], [ -79.537179678130869, 43.654178857492049 ], [ -79.538099556105081, 43.655109005174644 ], [ -79.539089541027892, 43.655193673276251 ], [ -79.540050482301496, 43.654944798051773 ], [ -79.540210555208759, 43.654478647706931 ], [ -79.539727604888114, 43.653941273390352 ], [ -79.539721454212511, 43.653680046831454 ], [ -79.539935514551061, 43.653547750228498 ], [ -79.540445063873491, 43.653552184736917 ], [ -79.543180124721488, 43.659882877956946 ], [ -79.555227016057557, 43.657109532292218 ], [ -79.563161058134597, 43.674488091017281 ], [ -79.53897506926468, 43.679853852757041 ], [ -79.528757031377424, 43.656816859187039 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201621", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 11, "HOOD": "Eringate-Centennial-West Deane", "FULLHOOD": "Eringate-Centennial-West Deane (11)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.557634005582472, 43.656545696295666 ], [ -79.579469264897824, 43.651434838791289 ], [ -79.578085034536315, 43.648086170478315 ], [ -79.577390919582058, 43.647259974494105 ], [ -79.576924839538691, 43.646303472370782 ], [ -79.575536329322489, 43.645749394366057 ], [ -79.573668614533346, 43.64525629838478 ], [ -79.572431757629516, 43.643333606583511 ], [ -79.575729369541961, 43.642604962678476 ], [ -79.576176166675111, 43.643128863041085 ], [ -79.578301566242089, 43.644377871055291 ], [ -79.578963436183088, 43.644380066411564 ], [ -79.582195918862737, 43.641270561610234 ], [ -79.581991422441533, 43.640688475602261 ], [ -79.583584890191787, 43.639956554289562 ], [ -79.585655890059684, 43.637918921927877 ], [ -79.586829144819092, 43.639523815271602 ], [ -79.58726870771639, 43.640870818618495 ], [ -79.588152909803483, 43.641764207140604 ], [ -79.588161007145914, 43.642475557117621 ], [ -79.589695328001682, 43.643665022816919 ], [ -79.591753643194636, 43.644725891427086 ], [ -79.592632766745623, 43.644772722237782 ], [ -79.59338193633144, 43.644547797188352 ], [ -79.595868979179272, 43.643173866007459 ], [ -79.59812521681134, 43.643183453129843 ], [ -79.599154329895896, 43.643718271717567 ], [ -79.60196988711418, 43.644202918474825 ], [ -79.602369353391865, 43.644622074485866 ], [ -79.602998216792273, 43.644773790938906 ], [ -79.60476491179314, 43.644516296907319 ], [ -79.605660771938446, 43.644914310613167 ], [ -79.606891814485692, 43.644758275550771 ], [ -79.607726057735832, 43.645146610417385 ], [ -79.608269951711691, 43.646287755904574 ], [ -79.608610773966561, 43.646569975700714 ], [ -79.588578541323812, 43.664823514765885 ], [ -79.590254158633229, 43.666844336333526 ], [ -79.590279055344595, 43.667209943935049 ], [ -79.591217950980351, 43.668739699763407 ], [ -79.586092265122048, 43.670462521353521 ], [ -79.582024627313203, 43.672418155461806 ], [ -79.579779637734561, 43.674085817376117 ], [ -79.578534431991685, 43.675559901961108 ], [ -79.577587949709923, 43.67711321533897 ], [ -79.573662641325001, 43.673249284168072 ], [ -79.569355354212959, 43.673903121514812 ], [ -79.563161058134597, 43.674488091017281 ], [ -79.555227016057557, 43.657109532292218 ], [ -79.557634005582472, 43.656545696295666 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201692", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 9, "HOOD": "Edenbridge-Humber Valley", "FULLHOOD": "Edenbridge-Humber Valley (9)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.507509270216758, 43.679031494959958 ], [ -79.507349989252887, 43.678890965721237 ], [ -79.508690983711659, 43.676508991020498 ], [ -79.509424950549942, 43.675910028631755 ], [ -79.511977950407669, 43.674472989797749 ], [ -79.512424980474094, 43.673788985737296 ], [ -79.512445991369574, 43.672858995896569 ], [ -79.511828992042055, 43.671346018522698 ], [ -79.511679987744699, 43.669662961247631 ], [ -79.511285955217289, 43.668111022918566 ], [ -79.512956045463582, 43.66675896282262 ], [ -79.513115975971402, 43.665644977470627 ], [ -79.512455979423081, 43.662970997289584 ], [ -79.51160494949373, 43.662242014974112 ], [ -79.510095024870182, 43.661988029493237 ], [ -79.50683998302901, 43.663033010285723 ], [ -79.506095009088142, 43.66302499021463 ], [ -79.505626968081017, 43.662786983412083 ], [ -79.507425547744035, 43.661800182146237 ], [ -79.522109645814623, 43.656162392954791 ], [ -79.526346958846077, 43.651410462615758 ], [ -79.53897506926468, 43.679853852757041 ], [ -79.523712996147609, 43.68295056258264 ], [ -79.520750506355114, 43.683373265995932 ], [ -79.519757083291793, 43.683856327533341 ], [ -79.512422177719415, 43.685525880423469 ], [ -79.512012938584292, 43.684788067070983 ], [ -79.507509270216758, 43.679031494959958 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201240", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 111, "HOOD": "Rockcliffe-Smythe", "FULLHOOD": "Rockcliffe-Smythe (111)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.478856210427963, 43.673742166733952 ], [ -79.478624932094817, 43.673190870357288 ], [ -79.480679284690936, 43.672658263839601 ], [ -79.479988486356376, 43.670858592451509 ], [ -79.481107777749685, 43.670393571419915 ], [ -79.483885731562481, 43.669834778767324 ], [ -79.482766456651746, 43.66677735721305 ], [ -79.506992864027296, 43.665313497407496 ], [ -79.507914871442225, 43.665145402675591 ], [ -79.509366507864229, 43.664624126891106 ], [ -79.510485819989569, 43.663999482337516 ], [ -79.512200963805427, 43.662632985813673 ], [ -79.512349961593912, 43.662786967841534 ], [ -79.513063002630219, 43.66523001760212 ], [ -79.513063032871671, 43.666505958266306 ], [ -79.512318032214822, 43.667351005599194 ], [ -79.511425001256342, 43.667927032384249 ], [ -79.511276051030848, 43.668333962876474 ], [ -79.511679987744699, 43.669662961247631 ], [ -79.511828992042055, 43.671346018522698 ], [ -79.512445991369574, 43.672858995896569 ], [ -79.512424980474094, 43.673788985737296 ], [ -79.511977950407669, 43.674472989797749 ], [ -79.509424950549942, 43.675910028631755 ], [ -79.508690983711659, 43.676508991020498 ], [ -79.506925018345584, 43.679651033751028 ], [ -79.505595024492067, 43.680404046624311 ], [ -79.505446016875283, 43.680995957993503 ], [ -79.505668951520946, 43.682001959288456 ], [ -79.505967022335895, 43.682362961744701 ], [ -79.508296971352323, 43.682424978311303 ], [ -79.509276003870923, 43.682670986911901 ], [ -79.510094979402396, 43.683576995176793 ], [ -79.510222025862262, 43.684152974938584 ], [ -79.506281697946022, 43.684682914541419 ], [ -79.501908317031223, 43.68401140650829 ], [ -79.500485741713405, 43.68411221533276 ], [ -79.498813062882121, 43.684465558451315 ], [ -79.497681542396762, 43.681083247979409 ], [ -79.497046423893707, 43.681112259682088 ], [ -79.495838108376475, 43.681283881528252 ], [ -79.494573781680188, 43.681825723543916 ], [ -79.484266823083928, 43.684179766572129 ], [ -79.483849791614873, 43.684318538740435 ], [ -79.482946427450273, 43.685588613523564 ], [ -79.476583141395267, 43.682361611053224 ], [ -79.472049260644496, 43.679369449953263 ], [ -79.473573012435907, 43.679104529955339 ], [ -79.473981461221825, 43.679388952344276 ], [ -79.476152493908799, 43.678839891335805 ], [ -79.476001819585534, 43.678455030171286 ], [ -79.473812077484936, 43.676637315316235 ], [ -79.474146935159283, 43.675868246367678 ], [ -79.473632712374283, 43.675188936986146 ], [ -79.478253156945499, 43.674193332440275 ], [ -79.478276969416072, 43.673971390981912 ], [ -79.478856210427963, 43.673742166733952 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201607", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 12, "HOOD": "Markland Woods", "FULLHOOD": "Markland Woods (12)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.56234789871489, 43.627378285527527 ], [ -79.563521085670374, 43.62709164010986 ], [ -79.5637394406818, 43.627765034985671 ], [ -79.56440870935316, 43.628286555181198 ], [ -79.566800893255561, 43.628289644873071 ], [ -79.567639265794128, 43.627957981301861 ], [ -79.567888253993971, 43.627393880956554 ], [ -79.568421058557576, 43.626878253548412 ], [ -79.569792705132343, 43.627057543230016 ], [ -79.570401481679937, 43.626993138968082 ], [ -79.572850808598801, 43.62615935593557 ], [ -79.573921252267667, 43.625965662775705 ], [ -79.574338898859111, 43.625601696282857 ], [ -79.574786510981752, 43.625544171331441 ], [ -79.575415952675513, 43.625660038815241 ], [ -79.577281964551005, 43.626421617081448 ], [ -79.579550945380518, 43.626927111542919 ], [ -79.580769919173406, 43.627797710576303 ], [ -79.581632301474841, 43.628015456984485 ], [ -79.58254899436082, 43.62804482712248 ], [ -79.585048464757648, 43.62876011609336 ], [ -79.58573113132708, 43.629254761171914 ], [ -79.58586673945122, 43.629814744923628 ], [ -79.585260425676054, 43.630824656503968 ], [ -79.584997977838981, 43.631964848605882 ], [ -79.585166244250104, 43.632723281887195 ], [ -79.585655789690179, 43.633521696963371 ], [ -79.585434121661194, 43.634509359288984 ], [ -79.585875485880067, 43.63525316499161 ], [ -79.585800053623501, 43.635828542433053 ], [ -79.585214188712001, 43.63701874621929 ], [ -79.585252572634602, 43.637496418805497 ], [ -79.585655890059684, 43.637918921927877 ], [ -79.583584890191787, 43.639956554289562 ], [ -79.581991422441533, 43.640688475602261 ], [ -79.582195918862737, 43.641270561610234 ], [ -79.578963436183088, 43.644380066411564 ], [ -79.578301566242089, 43.644377871055291 ], [ -79.576176166675111, 43.643128863041085 ], [ -79.575729369541961, 43.642604962678476 ], [ -79.575588796469617, 43.642084965319363 ], [ -79.574298896415101, 43.641736626235485 ], [ -79.573818574181601, 43.640793886232665 ], [ -79.571574291805547, 43.641324089970787 ], [ -79.570204678732821, 43.638434697296255 ], [ -79.569110700100509, 43.637459597232429 ], [ -79.568720369285714, 43.636602310274291 ], [ -79.568120198040418, 43.636127501470156 ], [ -79.567599770366741, 43.63606634148713 ], [ -79.565232848152078, 43.636600196156827 ], [ -79.564703718815608, 43.636599677508521 ], [ -79.564039491607787, 43.636227566646724 ], [ -79.56365769785333, 43.635354255867512 ], [ -79.559663007048215, 43.636268308490656 ], [ -79.556863930980569, 43.628544380903527 ], [ -79.56234789871489, 43.627378285527527 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201628", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 13, "HOOD": "Etobicoke West Mall", "FULLHOOD": "Etobicoke West Mall (13)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.562249355960418, 43.635669722982747 ], [ -79.56365769785333, 43.635354255867512 ], [ -79.564039491607787, 43.636227566646724 ], [ -79.564703718815608, 43.636599677508521 ], [ -79.565232848152078, 43.636600196156827 ], [ -79.567599770366741, 43.63606634148713 ], [ -79.568314549072625, 43.636213113612413 ], [ -79.568720369285714, 43.636602310274291 ], [ -79.569110700100509, 43.637459597232429 ], [ -79.570204678732821, 43.638434697296255 ], [ -79.571574291805547, 43.641324089970787 ], [ -79.573818574181601, 43.640793886232665 ], [ -79.574298896415101, 43.641736626235485 ], [ -79.575588796469617, 43.642084965319363 ], [ -79.575729369541961, 43.642604962678476 ], [ -79.572431757629516, 43.643333606583511 ], [ -79.573668614533346, 43.64525629838478 ], [ -79.575536329322489, 43.645749394366057 ], [ -79.576924839538691, 43.646303472370782 ], [ -79.577390919582058, 43.647259974494105 ], [ -79.578085034536315, 43.648086170478315 ], [ -79.579469264897824, 43.651434838791289 ], [ -79.567477241743688, 43.65424465056492 ], [ -79.563218485522057, 43.645398867701111 ], [ -79.559663007048215, 43.636268308490656 ], [ -79.562249355960418, 43.635669722982747 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201519", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 14, "HOOD": "Islington-City Centre West", "FULLHOOD": "Islington-City Centre West (14)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.514766598984025, 43.623672595901873 ], [ -79.513670689156555, 43.621299371628069 ], [ -79.513086607487196, 43.620427312072003 ], [ -79.539113643790884, 43.615375403449036 ], [ -79.547221867538383, 43.614259638772431 ], [ -79.549314928462493, 43.613584589066818 ], [ -79.551384997239666, 43.612434620860384 ], [ -79.552211592212274, 43.611808372728035 ], [ -79.559598509641532, 43.605120303893955 ], [ -79.561480302450249, 43.606064002561503 ], [ -79.56278575156027, 43.606917789317301 ], [ -79.564720943567252, 43.607347276971851 ], [ -79.564521445011252, 43.607920995655633 ], [ -79.564611548094518, 43.608300303691095 ], [ -79.565480595966434, 43.608752489919155 ], [ -79.56661721679535, 43.608892771078999 ], [ -79.566910414923655, 43.609076487102655 ], [ -79.567184946497804, 43.610034326599063 ], [ -79.567122486650462, 43.610573848224497 ], [ -79.566844486808179, 43.610804418423839 ], [ -79.565801253173689, 43.610908366610644 ], [ -79.564835198361891, 43.611922752729924 ], [ -79.564060015805381, 43.612210089953813 ], [ -79.563823621842957, 43.612774431600378 ], [ -79.564378702905017, 43.613402633789754 ], [ -79.566580836352969, 43.613556376537012 ], [ -79.568273420619377, 43.614297924849225 ], [ -79.56752624636168, 43.61706174308695 ], [ -79.566849784162272, 43.617368429627305 ], [ -79.56635275746433, 43.617938421466633 ], [ -79.566309156600937, 43.618208026605359 ], [ -79.566678893583472, 43.618815889222567 ], [ -79.566770637371846, 43.620698918725225 ], [ -79.566690913202493, 43.620923060881211 ], [ -79.565827696876767, 43.621263318448314 ], [ -79.565435611821741, 43.621591566522085 ], [ -79.565782306173105, 43.622649335222057 ], [ -79.565458312115794, 43.62428400443774 ], [ -79.565068659970677, 43.624513259057309 ], [ -79.564003895219486, 43.624463795326072 ], [ -79.563652081739008, 43.624657512052849 ], [ -79.563278501868439, 43.626813760240012 ], [ -79.563521085670374, 43.62709164010986 ], [ -79.556863930980569, 43.628544380903527 ], [ -79.561679115848335, 43.641739369724355 ], [ -79.56542531922662, 43.650223836698011 ], [ -79.567477241743688, 43.65424465056492 ], [ -79.543180124721488, 43.659882877956946 ], [ -79.540445063873491, 43.653552184736917 ], [ -79.539935514551061, 43.653547750228498 ], [ -79.539721454212511, 43.653680046831454 ], [ -79.539727604888114, 43.653941273390352 ], [ -79.540210555208759, 43.654478647706931 ], [ -79.540050482301496, 43.654944798051773 ], [ -79.539524813804235, 43.655145221411267 ], [ -79.538382275129393, 43.655211641204055 ], [ -79.537892251844042, 43.654962232733972 ], [ -79.537179678130869, 43.654178857492049 ], [ -79.537514298965263, 43.653165641616738 ], [ -79.537424423423644, 43.652777316066519 ], [ -79.5369708605445, 43.652564467928627 ], [ -79.535569312191171, 43.652573533525157 ], [ -79.534103728377673, 43.652158576982309 ], [ -79.532665301500572, 43.652158132195716 ], [ -79.53228017872128, 43.651171701411954 ], [ -79.532299672295963, 43.65037059330065 ], [ -79.53210574322253, 43.650188063953713 ], [ -79.531028745044637, 43.650111219606302 ], [ -79.530839609413277, 43.650748022024082 ], [ -79.529751954625368, 43.651112216864412 ], [ -79.529068156474807, 43.651184440935843 ], [ -79.527957552543199, 43.65096310331041 ], [ -79.526826455775691, 43.651074564954236 ], [ -79.525439028571981, 43.650507380068277 ], [ -79.522394999020932, 43.648226137179805 ], [ -79.520338589729832, 43.647641241792371 ], [ -79.51991096742357, 43.647383651484063 ], [ -79.518833477272082, 43.647333691855167 ], [ -79.51840333242022, 43.647174995274135 ], [ -79.516966630997956, 43.646111058279992 ], [ -79.523424163777733, 43.64468282783784 ], [ -79.514766598984025, 43.623672595901873 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201583", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 20, "HOOD": "Alderwood", "FULLHOOD": "Alderwood (20)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.525540303983007, 43.606185453888017 ], [ -79.525088408621542, 43.605032942853541 ], [ -79.52506232996673, 43.603564908790339 ], [ -79.525674627108828, 43.602339340272827 ], [ -79.52632348553594, 43.601645361832105 ], [ -79.527406457484801, 43.600929964345056 ], [ -79.54852900271716, 43.590331608858243 ], [ -79.549217692821671, 43.590413084638037 ], [ -79.549476006440244, 43.591001677602776 ], [ -79.549247386029393, 43.591755133603222 ], [ -79.549465034540006, 43.591973944706581 ], [ -79.549432759418337, 43.59228869862843 ], [ -79.548833583259636, 43.592992352336992 ], [ -79.548543820636553, 43.593709022418089 ], [ -79.548481671032121, 43.594752746149652 ], [ -79.54869533516451, 43.595133545653454 ], [ -79.549085311806209, 43.595408736781529 ], [ -79.552995548239906, 43.5956024036931 ], [ -79.553376121463799, 43.595742159801226 ], [ -79.553785137779869, 43.596251630035027 ], [ -79.553474381432096, 43.59836355018124 ], [ -79.554013316657134, 43.599135723103643 ], [ -79.555548031364708, 43.59972242941928 ], [ -79.556172068849023, 43.602638522209652 ], [ -79.556900844578891, 43.603251040294374 ], [ -79.558309102333709, 43.603953140443416 ], [ -79.559598509641532, 43.605120303893955 ], [ -79.552211592212274, 43.611808372728035 ], [ -79.551384997239666, 43.612434620860384 ], [ -79.549314928462493, 43.613584589066818 ], [ -79.547221867538383, 43.614259638772431 ], [ -79.539113643790884, 43.615375403449036 ], [ -79.530211865695833, 43.617108918838547 ], [ -79.525540303983007, 43.606185453888017 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201563", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 19, "HOOD": "Long Branch", "FULLHOOD": "Long Branch (19)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.519218494670085, 43.591261951144766 ], [ -79.518962010748083, 43.590619031228279 ], [ -79.51906403708324, 43.590449042724003 ], [ -79.519680015297851, 43.590231965686506 ], [ -79.523475002295442, 43.590019966510695 ], [ -79.524763954660344, 43.589738992184465 ], [ -79.524949027988441, 43.589832030571337 ], [ -79.527676998992447, 43.589519973877486 ], [ -79.528515988938523, 43.589099031994479 ], [ -79.529700996824829, 43.587898990690043 ], [ -79.530723012854779, 43.587885029699379 ], [ -79.530866967318985, 43.588157032040925 ], [ -79.53052397686136, 43.588341039128032 ], [ -79.530565957293348, 43.588526031500862 ], [ -79.530824005342083, 43.588583989661871 ], [ -79.533473014421133, 43.588100010182288 ], [ -79.533990009958075, 43.587783013473867 ], [ -79.533943015753152, 43.587538994308538 ], [ -79.53424504533784, 43.587961013275063 ], [ -79.535996048034235, 43.588167985573087 ], [ -79.537097001277246, 43.588020036633061 ], [ -79.53987897749505, 43.586146964938791 ], [ -79.541092034622196, 43.584631999054579 ], [ -79.54220398973581, 43.58365603748026 ], [ -79.543393032859186, 43.580988020301291 ], [ -79.54388024523027, 43.581389867525949 ], [ -79.544678179921107, 43.58528758404907 ], [ -79.548238587198341, 43.587018210898357 ], [ -79.546370157181073, 43.589047855559876 ], [ -79.547105303430882, 43.58964800527032 ], [ -79.54852900271716, 43.590331608858243 ], [ -79.526194761830823, 43.601523435214624 ], [ -79.526358267807936, 43.601182743270364 ], [ -79.526204927605733, 43.600712929258563 ], [ -79.524139562903457, 43.601190589193337 ], [ -79.522472263926105, 43.597003617457553 ], [ -79.521699942907844, 43.59717367788906 ], [ -79.519218494670085, 43.591261951144766 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201546", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 18, "HOOD": "New Toronto", "FULLHOOD": "New Toronto (18)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.497930994895, 43.602419303554441 ], [ -79.49732296988816, 43.602456325829507 ], [ -79.496878011772836, 43.601211973240517 ], [ -79.498144977333439, 43.599774964919881 ], [ -79.497852041878716, 43.598505965864945 ], [ -79.498351975529928, 43.598048024642907 ], [ -79.498309980980466, 43.597818010271439 ], [ -79.498740957148115, 43.597922961796527 ], [ -79.499551012735282, 43.59752399876421 ], [ -79.500295011461304, 43.596241960044168 ], [ -79.500471010588029, 43.595753024549936 ], [ -79.500376992230073, 43.595391978527921 ], [ -79.500905961589211, 43.594988959253001 ], [ -79.502496966528611, 43.594425029409344 ], [ -79.503903023922575, 43.594200016837718 ], [ -79.504952962368463, 43.59421401814685 ], [ -79.505051949738856, 43.593953981748484 ], [ -79.505904969682916, 43.593428965708306 ], [ -79.506259011400019, 43.593546026818267 ], [ -79.50640001970956, 43.594111038953066 ], [ -79.506738974290286, 43.594164976954382 ], [ -79.508617030111708, 43.59373496980011 ], [ -79.509004973264823, 43.593915029007199 ], [ -79.510711016273063, 43.593644962109614 ], [ -79.510834998036515, 43.593376964230053 ], [ -79.510685972354736, 43.593032044059235 ], [ -79.50974800330755, 43.592682966660455 ], [ -79.510665988550187, 43.592591041672222 ], [ -79.50982104970727, 43.592517019868239 ], [ -79.509669032770049, 43.592389009639113 ], [ -79.510247993241833, 43.592387011112557 ], [ -79.510575040214334, 43.592098973383564 ], [ -79.510925034907004, 43.591405959517623 ], [ -79.510859985987523, 43.591036026858596 ], [ -79.510089019165818, 43.590750971076211 ], [ -79.508834967140729, 43.590537029881247 ], [ -79.50867504313193, 43.590381998944601 ], [ -79.508776014459343, 43.590197962636758 ], [ -79.50952704854609, 43.590077043323298 ], [ -79.510407044615292, 43.589008978584722 ], [ -79.510491976123802, 43.588406044469906 ], [ -79.510298958430042, 43.587935961555893 ], [ -79.50917897825002, 43.58745703850304 ], [ -79.509600002808369, 43.587196964618158 ], [ -79.511215016559561, 43.587375988035234 ], [ -79.513237965438478, 43.587095964848977 ], [ -79.514012951221332, 43.587128993084214 ], [ -79.515915028278684, 43.587977024669577 ], [ -79.517244997192805, 43.58836804353961 ], [ -79.517298030781916, 43.588513034714943 ], [ -79.516075954011839, 43.588254036917988 ], [ -79.514615956141441, 43.587617988982366 ], [ -79.513520963174813, 43.587991031107904 ], [ -79.513131024828539, 43.587702035809464 ], [ -79.512276017200918, 43.58790696617271 ], [ -79.512246011172365, 43.588267019625782 ], [ -79.511295045223349, 43.588610046585544 ], [ -79.511074021669572, 43.588891005063886 ], [ -79.511487983423422, 43.590324035641999 ], [ -79.511753957802085, 43.590516001089412 ], [ -79.513003992594363, 43.590847965433888 ], [ -79.514645955602759, 43.590446025854121 ], [ -79.515125998390275, 43.590793979288939 ], [ -79.515292994744982, 43.590562003162688 ], [ -79.514959017908481, 43.590305968214068 ], [ -79.515088951906336, 43.590014997481667 ], [ -79.515409016986624, 43.590122046901051 ], [ -79.515474025317857, 43.590790035732915 ], [ -79.515644030135007, 43.590814027565187 ], [ -79.515894964315621, 43.590524986529296 ], [ -79.515669040734366, 43.589441983446484 ], [ -79.515049049971992, 43.589398016139945 ], [ -79.51490303939633, 43.588963029431909 ], [ -79.515364042058764, 43.588887996419722 ], [ -79.516214980555702, 43.589106988758665 ], [ -79.51643203703378, 43.588866028166237 ], [ -79.516222988442692, 43.589533971870175 ], [ -79.516804000305513, 43.590333963022545 ], [ -79.517223011837459, 43.590551035883024 ], [ -79.518191010450181, 43.590383991230929 ], [ -79.518553959643256, 43.590713038940429 ], [ -79.518962010748083, 43.590619031228279 ], [ -79.521699942907844, 43.59717367788906 ], [ -79.522472263926105, 43.597003617457553 ], [ -79.524139562903457, 43.601190589193337 ], [ -79.526204927605733, 43.600712929258563 ], [ -79.526358267807936, 43.601182743270364 ], [ -79.526194761830823, 43.601523435214624 ], [ -79.502389730670203, 43.613309783771726 ], [ -79.497930994895, 43.602419303554441 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201527", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 17, "HOOD": "Mimico", "FULLHOOD": "Mimico (17)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.471547029363833, 43.624326996142166 ], [ -79.471968000270152, 43.624957993360709 ], [ -79.472013986730133, 43.625345965233635 ], [ -79.471340028845304, 43.625099033915603 ], [ -79.47065698225461, 43.625324043540189 ], [ -79.470443039225231, 43.625239983703501 ], [ -79.469898990048208, 43.623711001793254 ], [ -79.469115971008804, 43.622764040174467 ], [ -79.469191025553968, 43.622553047060848 ], [ -79.469603978094142, 43.62236998190199 ], [ -79.470456027978244, 43.622557011736532 ], [ -79.472523047022506, 43.622391007602744 ], [ -79.473227000482325, 43.622053020199623 ], [ -79.47480999279405, 43.620170033947247 ], [ -79.474307024145574, 43.619046981460521 ], [ -79.47462804330344, 43.618727010605859 ], [ -79.475297046499961, 43.618921014671713 ], [ -79.475758965873283, 43.619764002372875 ], [ -79.476362999892388, 43.619843978525836 ], [ -79.477207972950026, 43.620234039789111 ], [ -79.477046951713831, 43.620929013238076 ], [ -79.477531968712441, 43.62157497651193 ], [ -79.478546955232659, 43.621493964131133 ], [ -79.481063970715084, 43.621919014180783 ], [ -79.48047804533924, 43.621691039955898 ], [ -79.480821993824321, 43.621637006631616 ], [ -79.48156498549983, 43.621809001697635 ], [ -79.481420018593127, 43.621388031781393 ], [ -79.481614981594547, 43.620836995351127 ], [ -79.481444048272223, 43.620713017964526 ], [ -79.480982981525074, 43.620697982174214 ], [ -79.480318983940592, 43.62106697541433 ], [ -79.479435980383613, 43.620461012688523 ], [ -79.479452037576849, 43.620281995605872 ], [ -79.479214032750022, 43.620345985782585 ], [ -79.478065951639678, 43.619767993927297 ], [ -79.4771189533502, 43.619601991380698 ], [ -79.476624034491053, 43.619243959552776 ], [ -79.476521994840141, 43.618706978728149 ], [ -79.477260021146463, 43.618308026199138 ], [ -79.477665987271507, 43.618408042906204 ], [ -79.478313045414424, 43.619100000155541 ], [ -79.478830024099224, 43.618598983307287 ], [ -79.478326019309776, 43.617911993318543 ], [ -79.477257043915927, 43.617344047843922 ], [ -79.476719984309611, 43.617454011506901 ], [ -79.475937007693133, 43.618131964952951 ], [ -79.475138026167244, 43.617978000921781 ], [ -79.474961040807557, 43.617791008826536 ], [ -79.475721993944703, 43.617503997261537 ], [ -79.477143008678141, 43.615685973044528 ], [ -79.477495970943323, 43.614957006227215 ], [ -79.476913021479518, 43.614439997444215 ], [ -79.476995986201644, 43.614314983757261 ], [ -79.477273980089677, 43.614184015256996 ], [ -79.478268007018997, 43.614431030684464 ], [ -79.478729964626297, 43.614068003217767 ], [ -79.479266954780741, 43.613026046911408 ], [ -79.478895036179992, 43.612386995863318 ], [ -79.478918991627836, 43.612085025636794 ], [ -79.47942601085235, 43.611911997742823 ], [ -79.479945979842554, 43.612284033914058 ], [ -79.480564994778646, 43.613353962448649 ], [ -79.481276979468333, 43.613422023917195 ], [ -79.482251028379579, 43.613227999027686 ], [ -79.482609003096286, 43.613052978746659 ], [ -79.482687026327014, 43.612513980999445 ], [ -79.482911019606391, 43.61232295866585 ], [ -79.483416042337836, 43.612810997242271 ], [ -79.484166977706423, 43.613203991186822 ], [ -79.483233026074316, 43.614772006920987 ], [ -79.483043973715027, 43.614242969363623 ], [ -79.482689986605806, 43.613953988253371 ], [ -79.480412966776214, 43.614100012595905 ], [ -79.480094030217657, 43.615382976710521 ], [ -79.480519006731754, 43.615596031625131 ], [ -79.480416017156628, 43.616184027030876 ], [ -79.479950048356386, 43.616223024256342 ], [ -79.478863995969576, 43.617149026092058 ], [ -79.480549972267198, 43.618374023871716 ], [ -79.481301018050274, 43.617825964296017 ], [ -79.481635999879316, 43.618086970902922 ], [ -79.481189986519723, 43.618485959741562 ], [ -79.481636019432699, 43.618708022072681 ], [ -79.483144949852971, 43.618372016920169 ], [ -79.484616990787814, 43.617684963360325 ], [ -79.485256996510117, 43.61668503378241 ], [ -79.485404027777008, 43.615691985107944 ], [ -79.486247006463515, 43.613951978700818 ], [ -79.486508003852805, 43.613743975212969 ], [ -79.487143982413471, 43.613734026609222 ], [ -79.487671015197179, 43.612994007681074 ], [ -79.487186985195578, 43.612563968759027 ], [ -79.487378981582637, 43.611973003243172 ], [ -79.486910014951675, 43.61161103782387 ], [ -79.486894970320776, 43.611146962918163 ], [ -79.486525020757156, 43.610866964424737 ], [ -79.486795988293451, 43.610758024693027 ], [ -79.486653991980717, 43.610324046965069 ], [ -79.486407004865455, 43.61031204609435 ], [ -79.486524951877414, 43.609683013174738 ], [ -79.48696299256649, 43.609328997616956 ], [ -79.48719295388716, 43.60845803027145 ], [ -79.487740968525742, 43.607979977750567 ], [ -79.48840802628014, 43.606795034026376 ], [ -79.488908027287764, 43.606626011985227 ], [ -79.489452965063222, 43.605521996993609 ], [ -79.492487994456624, 43.602653029845364 ], [ -79.492510974183219, 43.602202959300264 ], [ -79.492720976553002, 43.60205800351644 ], [ -79.494923027796588, 43.602195031634011 ], [ -79.496123015563597, 43.60185901796816 ], [ -79.496878011772836, 43.601211973240517 ], [ -79.49732296988816, 43.602456325829507 ], [ -79.497930994895, 43.602419303554441 ], [ -79.502389730670203, 43.613309783771726 ], [ -79.527406457484801, 43.600929964345056 ], [ -79.52632348553594, 43.601645361832105 ], [ -79.525288324440936, 43.602937588250128 ], [ -79.525012622857986, 43.604077565819814 ], [ -79.525088408621542, 43.605032942853541 ], [ -79.530211865695833, 43.617108918838547 ], [ -79.500966317341451, 43.622799185111013 ], [ -79.482381599370711, 43.627383188992845 ], [ -79.474266047976712, 43.63341502399782 ], [ -79.470793957709446, 43.631912027102487 ], [ -79.470776017269145, 43.630736033193926 ], [ -79.470983006242051, 43.6305950388371 ], [ -79.472043972730631, 43.630613991678374 ], [ -79.472745039374303, 43.62957399145256 ], [ -79.473297961355783, 43.629770957590729 ], [ -79.473726957682786, 43.62972699322998 ], [ -79.474557988999265, 43.629274027986803 ], [ -79.475122994423259, 43.629182991680572 ], [ -79.4755039991513, 43.628719966495048 ], [ -79.476052018084459, 43.628758958431909 ], [ -79.476772992123145, 43.628417035504235 ], [ -79.476995980327999, 43.627560041989277 ], [ -79.475963007740106, 43.627235979465738 ], [ -79.475981953957941, 43.626943035908951 ], [ -79.476377031980292, 43.626120023968163 ], [ -79.477193993401215, 43.625747960017534 ], [ -79.476737994637134, 43.625405030565396 ], [ -79.476988970762264, 43.62516000750054 ], [ -79.477391981782446, 43.625148000495486 ], [ -79.477513026778624, 43.625005039549592 ], [ -79.476982034343166, 43.62433703935767 ], [ -79.477076026111433, 43.623897011519354 ], [ -79.477943947760622, 43.623363043964169 ], [ -79.478847015185877, 43.622115045692851 ], [ -79.47850095696306, 43.621989004261934 ], [ -79.477641028474423, 43.622288039461829 ], [ -79.476845948277116, 43.623002025572411 ], [ -79.475717984211045, 43.623459962375399 ], [ -79.474505977799708, 43.622539005554444 ], [ -79.47398700942, 43.622473027732511 ], [ -79.473145040248838, 43.623358031041306 ], [ -79.473778981348403, 43.624213045110274 ], [ -79.472810015575419, 43.623398027204367 ], [ -79.472386975520465, 43.623483027045587 ], [ -79.471547029363833, 43.624326996142166 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201507", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 16, "HOOD": "Stonegate-Queensway", "FULLHOOD": "Stonegate-Queensway (16)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.474635127149128, 43.633210831050583 ], [ -79.482381599370711, 43.627383188992845 ], [ -79.500966317341451, 43.622799185111013 ], [ -79.513086607487196, 43.620427312072003 ], [ -79.513670689156555, 43.621299371628069 ], [ -79.514766598984025, 43.623672595901873 ], [ -79.523424163777733, 43.64468282783784 ], [ -79.500000031113871, 43.649997727413592 ], [ -79.498380497809364, 43.650074052804605 ], [ -79.496278087984322, 43.649848290578632 ], [ -79.491978009299729, 43.648480970788412 ], [ -79.492617001088732, 43.647559039306813 ], [ -79.492626953636176, 43.645699986928129 ], [ -79.49159495647946, 43.644855043061732 ], [ -79.491052990067359, 43.644109998136521 ], [ -79.489829002182475, 43.64155896443247 ], [ -79.489243983203551, 43.641289998431105 ], [ -79.488893038934137, 43.641312997442697 ], [ -79.486743997718165, 43.642104030697702 ], [ -79.485436028575535, 43.642158009792347 ], [ -79.48513799026928, 43.642020021932993 ], [ -79.48490399437911, 43.641628035008615 ], [ -79.485169993269366, 43.640382980424071 ], [ -79.485137993988033, 43.639369020072195 ], [ -79.484626978588764, 43.638455026306751 ], [ -79.484158994423652, 43.638132042678478 ], [ -79.482605980989717, 43.637993968649525 ], [ -79.478542018316034, 43.63818599306466 ], [ -79.477234036232176, 43.637802020325552 ], [ -79.475595948181152, 43.634068033293303 ], [ -79.474266047976712, 43.63341502399782 ], [ -79.474635127149128, 43.633210831050583 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201496", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 15, "HOOD": "Kingsway South", "FULLHOOD": "Kingsway South (15)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.498380497809364, 43.650074052804605 ], [ -79.500000031113871, 43.649997727413592 ], [ -79.516966630997956, 43.646111058279992 ], [ -79.517657863819906, 43.646733147687407 ], [ -79.518636405262782, 43.647277036963516 ], [ -79.51991096742357, 43.647383651484063 ], [ -79.520338589729832, 43.647641241792371 ], [ -79.522394999020932, 43.648226137179805 ], [ -79.525085120432053, 43.65027776574513 ], [ -79.525842396943375, 43.650746722946828 ], [ -79.526687701769958, 43.65102830740566 ], [ -79.522109645814623, 43.656162392954791 ], [ -79.507425547744035, 43.661800182146237 ], [ -79.505626968081017, 43.662786983412083 ], [ -79.503478049003505, 43.661572958364175 ], [ -79.502817980259792, 43.660943000904389 ], [ -79.500871987531568, 43.65973698459679 ], [ -79.500073959742522, 43.659483015675669 ], [ -79.499488998780848, 43.658792000337399 ], [ -79.499531024969457, 43.657846983171218 ], [ -79.499850010723478, 43.657394047564757 ], [ -79.501903995525112, 43.655826003467624 ], [ -79.502849964900449, 43.654534994606394 ], [ -79.502892961483539, 43.653597999953654 ], [ -79.502307962127048, 43.652752973768663 ], [ -79.500914022363631, 43.652254001311576 ], [ -79.497222990307549, 43.651954036914859 ], [ -79.495105959732442, 43.652238023978597 ], [ -79.493562997714022, 43.652291973507957 ], [ -79.492318950060465, 43.652160981972479 ], [ -79.491233948522719, 43.651485024344332 ], [ -79.490754990474571, 43.650401974966556 ], [ -79.490936045963693, 43.649679973827475 ], [ -79.491978009299729, 43.648480970788412 ], [ -79.496278087984322, 43.649848290578632 ], [ -79.498380497809364, 43.650074052804605 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201268", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 114, "HOOD": "Lambton Baby Point", "FULLHOOD": "Lambton Baby Point (114)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.484787609597106, 43.650173803878154 ], [ -79.484448687911993, 43.649349950614457 ], [ -79.48751600822456, 43.648628724495907 ], [ -79.488737300290424, 43.648179108685667 ], [ -79.492648042471941, 43.647352042394033 ], [ -79.490765999576951, 43.650055993495869 ], [ -79.491021024188925, 43.651146980390457 ], [ -79.491233948522719, 43.651485024344332 ], [ -79.492020992610378, 43.652053980144331 ], [ -79.493562997714022, 43.652291973507957 ], [ -79.497222990307549, 43.651954036914859 ], [ -79.500914022363631, 43.652254001311576 ], [ -79.502307962127048, 43.652752973768663 ], [ -79.502797043356594, 43.653322003234784 ], [ -79.502849964900449, 43.654534994606394 ], [ -79.50244598390465, 43.655196032022559 ], [ -79.501169006436172, 43.656501963347011 ], [ -79.500041975871923, 43.657155042512528 ], [ -79.499531024969457, 43.657846983171218 ], [ -79.499488998780848, 43.658792000337399 ], [ -79.500073959742522, 43.659483015675669 ], [ -79.500871987531568, 43.65973698459679 ], [ -79.502817980259792, 43.660943000904389 ], [ -79.503478049003505, 43.661572958364175 ], [ -79.506095009088142, 43.66302499021463 ], [ -79.507318041475926, 43.662941040258659 ], [ -79.510095024870182, 43.661988029493237 ], [ -79.511115993181633, 43.662080005160604 ], [ -79.512200963805427, 43.662632985813673 ], [ -79.510485819989569, 43.663999482337516 ], [ -79.509366507864229, 43.664624126891106 ], [ -79.507914871442225, 43.665145402675591 ], [ -79.506172039112869, 43.665401798777772 ], [ -79.498510945682298, 43.665887035200754 ], [ -79.498625325993871, 43.665627029714145 ], [ -79.497680053323464, 43.664929743910569 ], [ -79.496320361825695, 43.664540630113756 ], [ -79.495938616409759, 43.663943999480956 ], [ -79.494592021095343, 43.662622162335843 ], [ -79.494528303520866, 43.661811235302615 ], [ -79.494135851537294, 43.66094853892988 ], [ -79.49439884647434, 43.660454822648759 ], [ -79.495449811626131, 43.659678731936026 ], [ -79.495138367304676, 43.65948757235202 ], [ -79.492597599808676, 43.659667903235537 ], [ -79.488982119111355, 43.660421720260025 ], [ -79.484787609597106, 43.650173803878154 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201312", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 87, "HOOD": "High Park-Swansea", "FULLHOOD": "High Park-Swansea (87)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.44739002408285, 43.641955526621217 ], [ -79.446121969519652, 43.638723866391672 ], [ -79.447176997675868, 43.638553747471008 ], [ -79.448401607108394, 43.638781828248298 ], [ -79.447987773767409, 43.638427834435063 ], [ -79.451717488066762, 43.639042912493707 ], [ -79.45581489033296, 43.63928745116219 ], [ -79.460437232337725, 43.638881585285574 ], [ -79.462793836593264, 43.638355075619039 ], [ -79.466182662897907, 43.637212046940405 ], [ -79.472426256223173, 43.634459450805771 ], [ -79.474266047976712, 43.63341502399782 ], [ -79.475595948181152, 43.634068033293303 ], [ -79.477234036232176, 43.637802020325552 ], [ -79.478542018316034, 43.63818599306466 ], [ -79.483500037608906, 43.638025003466709 ], [ -79.484158994423652, 43.638132042678478 ], [ -79.484626978588764, 43.638455026306751 ], [ -79.485137993988033, 43.639369020072195 ], [ -79.485169993269366, 43.640382980424071 ], [ -79.48490399437911, 43.641628035008615 ], [ -79.48513799026928, 43.642020021932993 ], [ -79.485945970642362, 43.642212023474016 ], [ -79.486743997718165, 43.642104030697702 ], [ -79.488893038934137, 43.641312997442697 ], [ -79.489243983203551, 43.641289998431105 ], [ -79.489829002182475, 43.64155896443247 ], [ -79.491052990067359, 43.644109998136521 ], [ -79.49159495647946, 43.644855043061732 ], [ -79.492626953636176, 43.645699986928129 ], [ -79.492648042471941, 43.647352042394033 ], [ -79.488737300290424, 43.648179108685667 ], [ -79.48751600822456, 43.648628724495907 ], [ -79.485007553028268, 43.649249782559686 ], [ -79.452413975364166, 43.656339859116478 ], [ -79.451790463043636, 43.653576181696877 ], [ -79.451098573116823, 43.651550006542791 ], [ -79.44739002408285, 43.641955526621217 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201272", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 89, "HOOD": "Runnymede-Bloor West Village", "FULLHOOD": "Runnymede-Bloor West Village (89)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.479049724275299, 43.650529722736778 ], [ -79.484448687911993, 43.649349950614457 ], [ -79.488982119111355, 43.660421720260025 ], [ -79.492597599808676, 43.659667903235537 ], [ -79.495138367304676, 43.65948757235202 ], [ -79.495449811626131, 43.659678731936026 ], [ -79.49439884647434, 43.660454822648759 ], [ -79.494135851537294, 43.66094853892988 ], [ -79.494528303520866, 43.661811235302615 ], [ -79.494592021095343, 43.662622162335843 ], [ -79.495938616409759, 43.663943999480956 ], [ -79.496320361825695, 43.664540630113756 ], [ -79.497680053323464, 43.664929743910569 ], [ -79.498625325993871, 43.665627029714145 ], [ -79.498510945682298, 43.665887035200754 ], [ -79.482766456651746, 43.66677735721305 ], [ -79.481945750859126, 43.665165103559602 ], [ -79.482237588372556, 43.664806108127017 ], [ -79.480672734905227, 43.660196118454813 ], [ -79.48002460980355, 43.660059856760995 ], [ -79.476256449713617, 43.651149860105747 ], [ -79.479049724275299, 43.650529722736778 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201281", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 88, "HOOD": "High Park North", "FULLHOOD": "High Park North (88)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.452413975364166, 43.656339859116478 ], [ -79.476256449713617, 43.651149860105747 ], [ -79.48002460980355, 43.660059856760995 ], [ -79.475210308415569, 43.661130188696241 ], [ -79.473573503996775, 43.661924109243998 ], [ -79.470832979257708, 43.662566330990416 ], [ -79.470160857085588, 43.660929153086869 ], [ -79.469328685021296, 43.660268253491729 ], [ -79.4559238961929, 43.663090811862219 ], [ -79.449818078035435, 43.656870919940062 ], [ -79.452413975364166, 43.656339859116478 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201282", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 90, "HOOD": "Junction Area", "FULLHOOD": "Junction Area (90)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.457246937540788, 43.66441296593549 ], [ -79.4559238961929, 43.663090811862219 ], [ -79.469328685021296, 43.660268253491729 ], [ -79.470160857085588, 43.660929153086869 ], [ -79.470832979257708, 43.662566330990416 ], [ -79.473573503996775, 43.661924109243998 ], [ -79.475210308415569, 43.661130188696241 ], [ -79.48002460980355, 43.660059856760995 ], [ -79.480672734905227, 43.660196118454813 ], [ -79.482237588372556, 43.664806108127017 ], [ -79.481945750859126, 43.665165103559602 ], [ -79.482948993611686, 43.667213584104964 ], [ -79.483885731562481, 43.669834778767324 ], [ -79.481107777749685, 43.670393571419915 ], [ -79.479988486356376, 43.670858592451509 ], [ -79.480679284690936, 43.672658263839601 ], [ -79.478624932094817, 43.673190870357288 ], [ -79.478856210427963, 43.673742166733952 ], [ -79.478276969416072, 43.673971390981912 ], [ -79.478253156945499, 43.674193332440275 ], [ -79.473632712374283, 43.675188936986146 ], [ -79.474146935159283, 43.675868246367678 ], [ -79.473812077484936, 43.676637315316235 ], [ -79.476001819585534, 43.678455030171286 ], [ -79.476152493908799, 43.678839891335805 ], [ -79.473981461221825, 43.679388952344276 ], [ -79.473573012435907, 43.679104529955339 ], [ -79.47248319386668, 43.679302151966304 ], [ -79.468509803181121, 43.675888032527794 ], [ -79.457246937540788, 43.66441296593549 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201323", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 86, "HOOD": "Roncesvalles", "FULLHOOD": "Roncesvalles (86)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.432326310988728, 43.641470753076455 ], [ -79.446121969519652, 43.638723866391672 ], [ -79.451098573116823, 43.651550006542791 ], [ -79.451790463043636, 43.653576181696877 ], [ -79.452413975364166, 43.656339859116478 ], [ -79.449818078035435, 43.656870919940062 ], [ -79.444443588028321, 43.651396560763963 ], [ -79.44112909873067, 43.648659197242075 ], [ -79.438293964357158, 43.64705380381664 ], [ -79.428056630430632, 43.642315396065726 ], [ -79.432326310988728, 43.641470753076455 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201329", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 85, "HOOD": "South Parkdale", "FULLHOOD": "South Parkdale (85)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.421251950431994, 43.640156768220159 ], [ -79.419496396333855, 43.635792200810442 ], [ -79.42735936532479, 43.633686120436607 ], [ -79.428878389291043, 43.633451795108861 ], [ -79.427136774908391, 43.629675543034161 ], [ -79.431820956030279, 43.630420971687649 ], [ -79.435049041308304, 43.631347034340898 ], [ -79.435871976391411, 43.631821987848198 ], [ -79.439151975779453, 43.63307802828573 ], [ -79.439308043777928, 43.633169998617106 ], [ -79.439276011284221, 43.633539003985241 ], [ -79.440017043036008, 43.633949975567887 ], [ -79.43996501635516, 43.634187008892312 ], [ -79.44109701671114, 43.634806032062713 ], [ -79.441971013677289, 43.634958015349717 ], [ -79.443096009051359, 43.634685004057509 ], [ -79.44613901523779, 43.636081018621603 ], [ -79.447674960284857, 43.6364760038539 ], [ -79.449097014203019, 43.636179959871875 ], [ -79.449746047634207, 43.636498970231884 ], [ -79.450875042393847, 43.636492036026645 ], [ -79.452383981921386, 43.636701960891152 ], [ -79.453662969054406, 43.637200961591979 ], [ -79.454984952862972, 43.637403012528743 ], [ -79.457687965631919, 43.637133974500834 ], [ -79.458678009647429, 43.636692002214353 ], [ -79.460011980763198, 43.636733020584117 ], [ -79.461546961053273, 43.636307993224861 ], [ -79.462547971315118, 43.635762971758261 ], [ -79.464014982194016, 43.635624971636538 ], [ -79.465982957367586, 43.634579969872753 ], [ -79.467067001257746, 43.634332998972383 ], [ -79.468120975740561, 43.633892971782068 ], [ -79.469313011053544, 43.632643971211309 ], [ -79.470793957709446, 43.631912027102487 ], [ -79.474266047976712, 43.63341502399782 ], [ -79.472049924714199, 43.634634553155195 ], [ -79.464530450804546, 43.637829195642979 ], [ -79.462793836593264, 43.638355075619039 ], [ -79.458794803956195, 43.639111606133952 ], [ -79.45581489033296, 43.63928745116219 ], [ -79.45349871398686, 43.639202137025499 ], [ -79.450457096969828, 43.638881807392934 ], [ -79.447987773767409, 43.638427834435063 ], [ -79.448401607108394, 43.638781828248298 ], [ -79.446798496722067, 43.638582904435943 ], [ -79.428056630430632, 43.642315396065726 ], [ -79.426752877413847, 43.641727278843788 ], [ -79.424576045188019, 43.641049073525174 ], [ -79.422625891270044, 43.640716029890662 ], [ -79.421387330953536, 43.640663919496617 ], [ -79.421251950431994, 43.640156768220159 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200925", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 83, "HOOD": "Dufferin Grove", "FULLHOOD": "Dufferin Grove (83)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.428138574796861, 43.653244396614248 ], [ -79.42996536170925, 43.652869176670855 ], [ -79.431087989233305, 43.652843716911271 ], [ -79.436335472750457, 43.651808173805222 ], [ -79.435603418758888, 43.649916295426145 ], [ -79.440957378053568, 43.65028270517405 ], [ -79.443874083117009, 43.650891181868822 ], [ -79.449818078035435, 43.656870919940062 ], [ -79.4294199317753, 43.661176360467003 ], [ -79.426405439465128, 43.653607643265183 ], [ -79.428138574796861, 43.653244396614248 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200930", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 84, "HOOD": "Little Portugal", "FULLHOOD": "Little Portugal (84)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.422367865782221, 43.643467621011894 ], [ -79.421387330953536, 43.640663919496617 ], [ -79.423824069071671, 43.640885586407364 ], [ -79.42586843953427, 43.64140894862598 ], [ -79.430760160327438, 43.643529181694468 ], [ -79.439248434143039, 43.647544121508147 ], [ -79.44112909873067, 43.648659197242075 ], [ -79.443874083117009, 43.650891181868822 ], [ -79.440957378053568, 43.65028270517405 ], [ -79.435603418758888, 43.649916295426145 ], [ -79.436335472750457, 43.651808173805222 ], [ -79.431087989233305, 43.652843716911271 ], [ -79.42996536170925, 43.652869176670855 ], [ -79.426405439465128, 43.653607643265183 ], [ -79.422367865782221, 43.643467621011894 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200954", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 93, "HOOD": "Dovercourt-Wallace Emerson-Juncti", "FULLHOOD": "Dovercourt-Wallace Emerson-Juncti (93)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.419629218691, 43.666578834381603 ], [ -79.418406235349835, 43.663554548931799 ], [ -79.449818078035435, 43.656870919940062 ], [ -79.459997710293081, 43.66723795667324 ], [ -79.451651480912247, 43.667188165756571 ], [ -79.44905542665856, 43.667333111370631 ], [ -79.449856418636585, 43.66898269057252 ], [ -79.45137159628861, 43.671039375342069 ], [ -79.44205613504127, 43.672748236478611 ], [ -79.437136090538857, 43.674004649576148 ], [ -79.434623204093754, 43.674321890533491 ], [ -79.432986748479706, 43.670327542953828 ], [ -79.421842604613488, 43.672479760726951 ], [ -79.419629218691, 43.666578834381603 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200871", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 82, "HOOD": "Niagara", "FULLHOOD": "Niagara (82)" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -79.398318148943474, 43.635625244585881 ], [ -79.396810409536457, 43.633927761974718 ], [ -79.397351010096401, 43.633656998423248 ], [ -79.39767202026303, 43.633810030335624 ], [ -79.397558045208839, 43.633524960024914 ], [ -79.402306032096774, 43.630989010910213 ], [ -79.402989965291809, 43.631264034454439 ], [ -79.402944035741498, 43.631469989043893 ], [ -79.400283966915993, 43.632895990755046 ], [ -79.401576979300486, 43.634165981957651 ], [ -79.403423050997887, 43.633331992025639 ], [ -79.406629961933902, 43.632796005470276 ], [ -79.40859298570453, 43.633034980217346 ], [ -79.408775999945391, 43.631669042001747 ], [ -79.40956604884849, 43.631212019165702 ], [ -79.409986922998769, 43.631133163466032 ], [ -79.409980280919228, 43.63093520692906 ], [ -79.409448991348299, 43.631007035542794 ], [ -79.409041955227252, 43.629641979257215 ], [ -79.410183028293162, 43.62922998443193 ], [ -79.410018025243161, 43.628322987841429 ], [ -79.410365027543335, 43.627792012525376 ], [ -79.411225027310181, 43.627303993124549 ], [ -79.412797043539655, 43.627344008781108 ], [ -79.413474025164746, 43.626966047031409 ], [ -79.414528037128449, 43.62716097678689 ], [ -79.415363163280915, 43.627073711113965 ], [ -79.415576036197251, 43.626860972643343 ], [ -79.41562100542059, 43.627636039228811 ], [ -79.416084989856827, 43.627848973517288 ], [ -79.416181999626943, 43.628097962701894 ], [ -79.41732197192708, 43.627915972640935 ], [ -79.417820040646689, 43.627331973044448 ], [ -79.417742026507895, 43.626904017900223 ], [ -79.418353937852018, 43.627022488212219 ], [ -79.418622976232555, 43.626744986230399 ], [ -79.418320040400161, 43.626591992947873 ], [ -79.416507948966569, 43.626392003811347 ], [ -79.41496341166922, 43.62659088360062 ], [ -79.414792281340283, 43.626498491128331 ], [ -79.4164900221799, 43.626261046253013 ], [ -79.418209952210006, 43.62648298601583 ], [ -79.419445956153623, 43.626883023258763 ], [ -79.420000953747902, 43.62675098206801 ], [ -79.42044697544199, 43.627221018163233 ], [ -79.421250046651593, 43.62751099129477 ], [ -79.422374049979624, 43.627454038369912 ], [ -79.422531991754667, 43.627726998053888 ], [ -79.422041002749125, 43.628381961779517 ], [ -79.422472022104117, 43.629035964082298 ], [ -79.419615023218, 43.629306992411841 ], [ -79.419321967793877, 43.628983010091147 ], [ -79.419702036052925, 43.628736026937418 ], [ -79.419862028212805, 43.628332967234599 ], [ -79.419345751026967, 43.628695454423259 ], [ -79.419134976863731, 43.628480993243592 ], [ -79.419313029302401, 43.627969979750375 ], [ -79.418763005016771, 43.62789999106927 ], [ -79.418523008928247, 43.628247030480033 ], [ -79.4184240337039, 43.627940043108126 ], [ -79.418682021359658, 43.62751097426559 ], [ -79.420002030209574, 43.627975001224399 ], [ -79.420034954042933, 43.627876974091727 ], [ -79.419735982872581, 43.627580007093641 ], [ -79.419328979292274, 43.627438991238691 ], [ -79.419037013381612, 43.627506970987575 ], [ -79.418694025804271, 43.627201020792434 ], [ -79.418375978346901, 43.627570025690133 ], [ -79.418196988014614, 43.62747302859507 ], [ -79.417869965865592, 43.627572027461284 ], [ -79.417907004183888, 43.627672012211974 ], [ -79.418062951983345, 43.627525006390414 ], [ -79.418317988087296, 43.627586957531385 ], [ -79.418272987725032, 43.627860986577076 ], [ -79.417858989177134, 43.627788013995634 ], [ -79.417527019440627, 43.627985965589566 ], [ -79.415994997807147, 43.62824399563268 ], [ -79.41559801811735, 43.628246957566049 ], [ -79.414893970518719, 43.627724985264969 ], [ -79.414503020858334, 43.627696970034421 ], [ -79.414205951135159, 43.627993967945102 ], [ -79.41444401365662, 43.628628040422811 ], [ -79.413871978673853, 43.628746045123663 ], [ -79.413769966912696, 43.628959958205058 ], [ -79.413944985632554, 43.62927799656854 ], [ -79.414429972213938, 43.629501041038417 ], [ -79.414147110959931, 43.629821010808314 ], [ -79.414311975091124, 43.62963866590885 ], [ -79.414270036937353, 43.630021029931775 ], [ -79.413845045859148, 43.630082020351999 ], [ -79.412291729009596, 43.629320677382701 ], [ -79.412000971556807, 43.629377043288095 ], [ -79.411501003854085, 43.629541046978126 ], [ -79.411259971949974, 43.629812979803908 ], [ -79.410746160242013, 43.629927996915207 ], [ -79.410745999908201, 43.630232982832311 ], [ -79.410371010829039, 43.630394037474503 ], [ -79.410435035742665, 43.630773011978242 ], [ -79.411391014627839, 43.63067899355049 ], [ -79.410329965020495, 43.630857970587606 ], [ -79.410372964452336, 43.631064984464992 ], [ -79.411538015942838, 43.630865036858722 ], [ -79.411747952133268, 43.630594021883525 ], [ -79.414549956984956, 43.630100978498064 ], [ -79.414926004580167, 43.630300005271984 ], [ -79.417390952729335, 43.629888998696032 ], [ -79.417901990997436, 43.629540040996588 ], [ -79.418670951956642, 43.629416007709352 ], [ -79.420099019194552, 43.63008803397372 ], [ -79.426071963752293, 43.629621012376909 ], [ -79.427136774908391, 43.629675543034161 ], [ -79.428878389291043, 43.633451795108861 ], [ -79.42735936532479, 43.633686120436607 ], [ -79.419496396333855, 43.635792200810442 ], [ -79.422367865782221, 43.643467621011894 ], [ -79.403956753621998, 43.647182710744943 ], [ -79.399615014681714, 43.636515427053503 ], [ -79.398318148943474, 43.635625244585881 ] ] ], [ [ [ -79.414893761580004, 43.629643941749094 ], [ -79.413975541557321, 43.629107112084142 ], [ -79.414509009418936, 43.628702488115188 ], [ -79.414571866541195, 43.628072318435663 ], [ -79.416448965537953, 43.628402597539811 ], [ -79.41655115215525, 43.628715392347821 ], [ -79.415935882003566, 43.629499407779988 ], [ -79.414893761580004, 43.629643941749094 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201159", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 91, "HOOD": "Weston-Pellam Park", "FULLHOOD": "Weston-Pellam Park (91)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.451814765379837, 43.667190466758157 ], [ -79.459997710293081, 43.66723795667324 ], [ -79.468509803181121, 43.675888032527794 ], [ -79.47248319386668, 43.679302151966304 ], [ -79.470492941935447, 43.679554606790838 ], [ -79.470384597062747, 43.679244570610805 ], [ -79.466097441355245, 43.680268632294478 ], [ -79.465572693990296, 43.680567117604028 ], [ -79.46568322472767, 43.680782397086283 ], [ -79.464927860562625, 43.68101720146629 ], [ -79.460519845531934, 43.682050052889402 ], [ -79.456095590749968, 43.675270804692531 ], [ -79.455251043224024, 43.674340928617973 ], [ -79.452222075070267, 43.672013020254369 ], [ -79.449856418636585, 43.66898269057252 ], [ -79.44905542665856, 43.667333111370631 ], [ -79.451814765379837, 43.667190466758157 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200910", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 80, "HOOD": "Palmerston-Little Italy", "FULLHOOD": "Palmerston-Little Italy (80)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.408963250032372, 43.656211433951427 ], [ -79.415147366859514, 43.654963225171983 ], [ -79.417698785211911, 43.65524323486715 ], [ -79.418687921131777, 43.655217309937044 ], [ -79.426405439465128, 43.653607643265183 ], [ -79.4294199317753, 43.661176360467003 ], [ -79.411120716855294, 43.665135467121083 ], [ -79.40767889826175, 43.656464424471459 ], [ -79.408963250032372, 43.656211433951427 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200904", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 79, "HOOD": "University", "FULLHOOD": "University (79)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.39410897421682, 43.668681143677162 ], [ -79.393050389991018, 43.666055074319445 ], [ -79.393792062910975, 43.665477667974741 ], [ -79.39404380229908, 43.665015802964653 ], [ -79.392982445928055, 43.662553618244459 ], [ -79.392264735130823, 43.661416843239842 ], [ -79.391935384274746, 43.66097345609348 ], [ -79.390976499261157, 43.660578553137206 ], [ -79.390574941521791, 43.659825558576614 ], [ -79.40767889826175, 43.656464424471459 ], [ -79.411120716855294, 43.665135467121083 ], [ -79.39410897421682, 43.668681143677162 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200857", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 78, "HOOD": "Kensington-Chinatown", "FULLHOOD": "Kensington-Chinatown (78)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.388581602205221, 43.650424451823966 ], [ -79.403956753621998, 43.647182710744943 ], [ -79.40767889826175, 43.656464424471459 ], [ -79.390574941521791, 43.659825558576614 ], [ -79.386772949878349, 43.65082213073233 ], [ -79.388581602205221, 43.650424451823966 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200825", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 77, "HOOD": "Waterfront Communities-The Island", "FULLHOOD": "Waterfront Communities-The Island (77)" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -79.394460331968219, 43.635507898089614 ], [ -79.394944955445865, 43.635297982015416 ], [ -79.39592903264446, 43.63650401630921 ], [ -79.396944965651656, 43.636424012972675 ], [ -79.395468018959164, 43.634687965923021 ], [ -79.396810409536457, 43.633927761974718 ], [ -79.398477886765633, 43.635800230419846 ], [ -79.399615014681714, 43.636515427053503 ], [ -79.403956753621998, 43.647182710744943 ], [ -79.387446686874398, 43.650669598949186 ], [ -79.384975616106402, 43.644782174944154 ], [ -79.378248808432247, 43.646182282379975 ], [ -79.373787211967723, 43.648545037166684 ], [ -79.37026031183072, 43.649877074075007 ], [ -79.361173472300905, 43.651943583626242 ], [ -79.360289589432185, 43.652871977148479 ], [ -79.357961699287515, 43.654220461190626 ], [ -79.352385050621649, 43.655445791739055 ], [ -79.351651958498437, 43.655475014076522 ], [ -79.349389011663035, 43.653401982695016 ], [ -79.349111010575584, 43.652859021383065 ], [ -79.347125980897033, 43.650875025567224 ], [ -79.359414984874505, 43.645579985769388 ], [ -79.360739029400975, 43.647206009046478 ], [ -79.360950958961382, 43.646416963321187 ], [ -79.360190002127268, 43.645294038125733 ], [ -79.367427997717158, 43.642588004862901 ], [ -79.368285973551338, 43.643869981781357 ], [ -79.368739610584399, 43.643715319122627 ], [ -79.369117005295394, 43.643567038847955 ], [ -79.368254015426317, 43.642262041473522 ], [ -79.373519003819567, 43.640320971606265 ], [ -79.374516970226352, 43.641806718139954 ], [ -79.375178957265732, 43.641563981465026 ], [ -79.374643965935334, 43.640755020843251 ], [ -79.374342956552155, 43.640755962747903 ], [ -79.374216958464743, 43.640583043481179 ], [ -79.374445034421811, 43.640500047155967 ], [ -79.374212040966171, 43.640131973914976 ], [ -79.374486959401921, 43.640347969453657 ], [ -79.374718035297207, 43.640275007434646 ], [ -79.37456202511045, 43.639997959009889 ], [ -79.374817027937738, 43.640235995576674 ], [ -79.375400976131388, 43.640027976216388 ], [ -79.37517899949863, 43.639691028290464 ], [ -79.375545969778273, 43.639916971256376 ], [ -79.375390036912179, 43.639617960184758 ], [ -79.377130979027044, 43.638975995563619 ], [ -79.377449041995376, 43.639481020166563 ], [ -79.377523971588417, 43.63925703364886 ], [ -79.377726977287523, 43.639376039758709 ], [ -79.378719931763598, 43.639039135827019 ], [ -79.378361049874599, 43.638512021049095 ], [ -79.378799972048995, 43.638347027286642 ], [ -79.379563989733555, 43.639460961535136 ], [ -79.379836952948153, 43.63965900257142 ], [ -79.380075035538852, 43.639576046746043 ], [ -79.380253043567294, 43.639682001405127 ], [ -79.379563050085721, 43.638060958367213 ], [ -79.383662036796224, 43.637686969524644 ], [ -79.384223974609185, 43.639108044688108 ], [ -79.384982043572293, 43.63899704758613 ], [ -79.384388996425912, 43.637607043526813 ], [ -79.385420952189833, 43.63751404618462 ], [ -79.38501604690326, 43.637615991822813 ], [ -79.385227955544124, 43.638159014322405 ], [ -79.385724949926853, 43.638058008013395 ], [ -79.385546984011057, 43.637488009594641 ], [ -79.386573998922543, 43.637377018094561 ], [ -79.387008045329125, 43.638571045145419 ], [ -79.387535990742535, 43.638471007697362 ], [ -79.387101025925375, 43.637353036531216 ], [ -79.388792950077189, 43.637169034005581 ], [ -79.389172000433291, 43.638061971406884 ], [ -79.389855990464099, 43.637918031214369 ], [ -79.38954099346671, 43.637126010413468 ], [ -79.391016968194393, 43.636988984276513 ], [ -79.391287988662626, 43.637582968563066 ], [ -79.391945963267389, 43.637451972765611 ], [ -79.391524972456295, 43.636317020864269 ], [ -79.391816982193234, 43.63688303294883 ], [ -79.395099963540858, 43.636592034752127 ], [ -79.395226960628349, 43.636418008157342 ], [ -79.394460331968219, 43.635507898089614 ] ] ], [ [ [ -79.394236847223723, 43.635604699959615 ], [ -79.392899007676633, 43.636268016183095 ], [ -79.391823991163264, 43.636294040777038 ], [ -79.392851004066713, 43.636204957625509 ], [ -79.394236847223723, 43.635604699959615 ] ] ], [ [ [ -79.386491815500719, 43.620557496555513 ], [ -79.386342822865103, 43.620373283161541 ], [ -79.386413163379672, 43.619569315043378 ], [ -79.385186519916545, 43.618943912006273 ], [ -79.384841569353426, 43.61833752481504 ], [ -79.384671295842423, 43.618467809350044 ], [ -79.384781007369327, 43.61891279881997 ], [ -79.384301755071263, 43.618421629124249 ], [ -79.384175675631454, 43.618485292258718 ], [ -79.38439024268196, 43.619438127523637 ], [ -79.384061970951606, 43.618563893453015 ], [ -79.383835627588567, 43.618578158441984 ], [ -79.383512909123581, 43.618993270943534 ], [ -79.383931178496212, 43.619196867631928 ], [ -79.384091108845681, 43.619590625787801 ], [ -79.383880657168206, 43.619770842649274 ], [ -79.383326303335423, 43.619897406389995 ], [ -79.382959096265395, 43.619649339484141 ], [ -79.382544878072579, 43.619824781646827 ], [ -79.381907885447248, 43.619755185739621 ], [ -79.381251421448155, 43.619222606745737 ], [ -79.380671138463839, 43.618978447374559 ], [ -79.379116850926067, 43.616977510584455 ], [ -79.379708002214983, 43.616530116331631 ], [ -79.380478066266392, 43.617051260462183 ], [ -79.381047813609428, 43.617096867078445 ], [ -79.381092023714615, 43.616919252928469 ], [ -79.380284218754923, 43.616719130661494 ], [ -79.379847914356432, 43.616206135488525 ], [ -79.37966818043023, 43.616490753314004 ], [ -79.379252285060275, 43.616135220430387 ], [ -79.377649211733328, 43.616844441578607 ], [ -79.377245727019741, 43.617480020303795 ], [ -79.377209200161531, 43.618147001902258 ], [ -79.376795033444566, 43.618464745944344 ], [ -79.375914097908591, 43.618665494909727 ], [ -79.374763939582976, 43.618506470872688 ], [ -79.374290393715384, 43.618736402271843 ], [ -79.374176981075237, 43.618993417803516 ], [ -79.373924233474924, 43.618910245931524 ], [ -79.373594512308912, 43.619074344413214 ], [ -79.373104891716721, 43.618868884572727 ], [ -79.371656062699287, 43.618806401990653 ], [ -79.371457310665306, 43.618589503403356 ], [ -79.371014527624013, 43.618894666120703 ], [ -79.370062160645915, 43.619181311754161 ], [ -79.369894117731974, 43.619545658483574 ], [ -79.370638520532793, 43.620444047417301 ], [ -79.370512414643045, 43.62085256232411 ], [ -79.37018518801726, 43.62099166082843 ], [ -79.369149672406664, 43.620927205132197 ], [ -79.367369016147435, 43.62133830202071 ], [ -79.365749153799101, 43.621490790961438 ], [ -79.364367224605587, 43.622152123790414 ], [ -79.364049846573025, 43.622779344669134 ], [ -79.36273663951151, 43.623448752369555 ], [ -79.362359789869615, 43.62390128797805 ], [ -79.359986420084695, 43.625112699421919 ], [ -79.358494716930991, 43.626351125083715 ], [ -79.356316587163178, 43.629000631660269 ], [ -79.356487912844131, 43.629754671478338 ], [ -79.357183699817185, 43.630442160976386 ], [ -79.357196042782093, 43.631115237782204 ], [ -79.358167301173239, 43.63134199552583 ], [ -79.35777660693185, 43.631391117007304 ], [ -79.357896904491852, 43.631590798666203 ], [ -79.357541371402249, 43.631422125833595 ], [ -79.357284649020116, 43.631607839893519 ], [ -79.357007595926902, 43.632292422004355 ], [ -79.357153640201616, 43.632466278561985 ], [ -79.356720138162345, 43.633249974384654 ], [ -79.355597435347349, 43.633504343602588 ], [ -79.35522623297463, 43.633242807726162 ], [ -79.355076325627849, 43.633368299528257 ], [ -79.354745150121389, 43.633333468038899 ], [ -79.354120691438794, 43.633711026618492 ], [ -79.35355470841904, 43.633777234627296 ], [ -79.353036263711573, 43.63404549918959 ], [ -79.354340183757884, 43.635262168704443 ], [ -79.349442648696666, 43.631033283887199 ], [ -79.34981026364251, 43.629043386891489 ], [ -79.349836347973309, 43.629652028492103 ], [ -79.350345477588448, 43.629764788512503 ], [ -79.352553353202268, 43.629814445273091 ], [ -79.354592177489735, 43.629492454736209 ], [ -79.354814868781503, 43.629047719534853 ], [ -79.354665242795349, 43.628942043544569 ], [ -79.354964694015067, 43.628872355701702 ], [ -79.355106930701467, 43.628607852696483 ], [ -79.354899578261339, 43.628426269850038 ], [ -79.355213639185678, 43.628450502390052 ], [ -79.356467354951519, 43.626782364660329 ], [ -79.358239523344508, 43.625203936250493 ], [ -79.366907995319181, 43.61891962798294 ], [ -79.367256877370252, 43.619018861424045 ], [ -79.367648187915918, 43.618883206691329 ], [ -79.367893625200082, 43.618646716406467 ], [ -79.367805836692114, 43.618518174751578 ], [ -79.368183765384217, 43.618643025642598 ], [ -79.368752861224522, 43.618387656734789 ], [ -79.368758843636186, 43.618083023690957 ], [ -79.369131298395132, 43.618179707059241 ], [ -79.369752299427518, 43.617841174606731 ], [ -79.369709807965279, 43.617632171989229 ], [ -79.370017636478124, 43.617715058139808 ], [ -79.37070840998912, 43.617407491771694 ], [ -79.370661337152768, 43.617182580649903 ], [ -79.371042425979923, 43.6171182446272 ], [ -79.371411468963416, 43.616704817357075 ], [ -79.371377281423491, 43.616415095413927 ], [ -79.371033551575877, 43.616511561896729 ], [ -79.371520399982501, 43.616261848869229 ], [ -79.371778666226149, 43.616378592187964 ], [ -79.371991122730265, 43.61629546791837 ], [ -79.371893847562589, 43.616090277074591 ], [ -79.376340917436906, 43.614004906807708 ], [ -79.3726329621052, 43.615830827915666 ], [ -79.374065730323593, 43.615545951574099 ], [ -79.374371558500044, 43.615293022014534 ], [ -79.374292575842617, 43.615148316786382 ], [ -79.375190349518505, 43.614950520021743 ], [ -79.37614442526079, 43.614338522306802 ], [ -79.376922606202996, 43.614475689277931 ], [ -79.378717314677402, 43.613812855136359 ], [ -79.379154806348012, 43.613778098177278 ], [ -79.380094263696151, 43.613255520278081 ], [ -79.382560846552892, 43.612281579458084 ], [ -79.386902744991602, 43.611637874426492 ], [ -79.389251764154238, 43.611881365685697 ], [ -79.391607322371357, 43.613065613119844 ], [ -79.392012826276812, 43.613095711709256 ], [ -79.392106806143474, 43.614328961305503 ], [ -79.391695800994341, 43.615142005840077 ], [ -79.391946530928195, 43.616291310364602 ], [ -79.393222287427236, 43.618773819054518 ], [ -79.395965311215861, 43.62187427895131 ], [ -79.395891255426648, 43.622011151026719 ], [ -79.396708485799138, 43.622576777086792 ], [ -79.398057802544258, 43.624036551689997 ], [ -79.400325664536055, 43.625777244164148 ], [ -79.399802316109913, 43.625778293250868 ], [ -79.400515533508084, 43.626233871887671 ], [ -79.40037030922359, 43.62597861367594 ], [ -79.400673527893787, 43.626103662199093 ], [ -79.401038867465488, 43.626422581812363 ], [ -79.400678814900573, 43.626494333576701 ], [ -79.401042848711981, 43.626604118101376 ], [ -79.401128236322904, 43.62651385162944 ], [ -79.401356497666583, 43.626621106442954 ], [ -79.40123782000056, 43.626714058334969 ], [ -79.402218441979016, 43.626907355301121 ], [ -79.404289255879661, 43.626424868255441 ], [ -79.404920659995341, 43.627838982382364 ], [ -79.402649696362232, 43.629459599809167 ], [ -79.397865675403622, 43.632045020269594 ], [ -79.396748705552127, 43.632645011466622 ], [ -79.396265042973567, 43.632504459052207 ], [ -79.39641008702705, 43.632827954874486 ], [ -79.394918898992884, 43.633629635346431 ], [ -79.394201441951992, 43.632928388056811 ], [ -79.393945133316919, 43.633064139279035 ], [ -79.393829375225664, 43.632954309210163 ], [ -79.394079335390373, 43.632811267479461 ], [ -79.39211987948579, 43.631140234643773 ], [ -79.392023874998898, 43.631263742427493 ], [ -79.390143577317417, 43.631606907272392 ], [ -79.389736083119828, 43.631876630721536 ], [ -79.389337912515686, 43.63167432890323 ], [ -79.388652352656038, 43.63180312074423 ], [ -79.388282574497367, 43.631988481586873 ], [ -79.388908246197914, 43.632713138324689 ], [ -79.388105294835967, 43.63193593147134 ], [ -79.387461743415813, 43.630530646536926 ], [ -79.389078212772631, 43.630137088710647 ], [ -79.389671875134198, 43.629770157258079 ], [ -79.389175732262572, 43.628118681923866 ], [ -79.389072537118636, 43.628055834402737 ], [ -79.388775629184877, 43.628280752194719 ], [ -79.38896431020963, 43.627890473017693 ], [ -79.388653492975024, 43.628088908655464 ], [ -79.388943749148453, 43.62770726247178 ], [ -79.38855669373639, 43.627836298407033 ], [ -79.3893513961889, 43.627174234957138 ], [ -79.389590813751482, 43.626460416846029 ], [ -79.3894656788936, 43.625542069414365 ], [ -79.388858461038936, 43.624733506152353 ], [ -79.389165058397509, 43.624148643869169 ], [ -79.389829044381997, 43.623733280755083 ], [ -79.390239963492263, 43.622248332334301 ], [ -79.39014642799269, 43.618987383608072 ], [ -79.39036872689519, 43.618204816431962 ], [ -79.389532710839021, 43.616554766165955 ], [ -79.387270864877934, 43.615841434052967 ], [ -79.387092270659465, 43.615212463889222 ], [ -79.387342955699623, 43.61489849810058 ], [ -79.387718398167806, 43.615109488832843 ], [ -79.389211314608673, 43.615029796554488 ], [ -79.389501312510859, 43.614900471302398 ], [ -79.389494700170715, 43.614447215988413 ], [ -79.389394335395664, 43.614298259082602 ], [ -79.388460608892657, 43.61413368924844 ], [ -79.388137275751987, 43.613505831272221 ], [ -79.387385788327165, 43.613447704852206 ], [ -79.38711358342988, 43.613986057958179 ], [ -79.38686238504151, 43.614120425553345 ], [ -79.385761617813387, 43.614141979523716 ], [ -79.384852204326705, 43.614054600770238 ], [ -79.384132809732392, 43.613537892745953 ], [ -79.383332813791156, 43.61352451441784 ], [ -79.383783094705095, 43.614535146207729 ], [ -79.384876681322865, 43.61480526564759 ], [ -79.384678960855055, 43.615278139869552 ], [ -79.383949725999386, 43.615636468924798 ], [ -79.384513906037085, 43.616065465919284 ], [ -79.38463328380108, 43.616423992771658 ], [ -79.385831505126006, 43.616374928994944 ], [ -79.38669258992438, 43.616700441869256 ], [ -79.38817182227082, 43.616943472871718 ], [ -79.388748438626067, 43.617099502754591 ], [ -79.389051410011717, 43.617564495224748 ], [ -79.389338543254468, 43.618585048759037 ], [ -79.389232834643352, 43.619701070867627 ], [ -79.38949158818852, 43.620104045306128 ], [ -79.389307566927954, 43.620872386387788 ], [ -79.389022205478938, 43.621045166042215 ], [ -79.388006380006033, 43.620755387993079 ], [ -79.386491815500719, 43.620557496555513 ] ] ], [ [ [ -79.358395875778754, 43.630413480429837 ], [ -79.357880400270432, 43.63012746664878 ], [ -79.357963258013342, 43.630053849958294 ], [ -79.35723159835166, 43.629373501475584 ], [ -79.357312339835303, 43.629084706997382 ], [ -79.35747962374306, 43.629120147507031 ], [ -79.357337585964956, 43.628972094566059 ], [ -79.357376250452845, 43.628783337914079 ], [ -79.357528884822102, 43.628797413191002 ], [ -79.357387349290249, 43.628713551798661 ], [ -79.357481604985594, 43.628224836777932 ], [ -79.357917371567382, 43.627574039467589 ], [ -79.359166400915299, 43.626183876438482 ], [ -79.360946278831321, 43.62512376205094 ], [ -79.361850589463202, 43.624695983043161 ], [ -79.362572094335079, 43.624872674670996 ], [ -79.363200013808353, 43.625477778021789 ], [ -79.36232665071644, 43.626968607811833 ], [ -79.359036001703188, 43.630036393099864 ], [ -79.358395875778754, 43.630413480429837 ] ] ], [ [ [ -79.364595310521011, 43.624967704710372 ], [ -79.36324968570959, 43.624893628532639 ], [ -79.362578402598871, 43.624010912572487 ], [ -79.363026270124735, 43.623528786151027 ], [ -79.364046766230175, 43.623074026486812 ], [ -79.364538779236398, 43.623447806839238 ], [ -79.365810504462047, 43.623943726166843 ], [ -79.365847939479295, 43.624252310003627 ], [ -79.365629092481811, 43.624505919447671 ], [ -79.364595310521011, 43.624967704710372 ] ] ], [ [ [ -79.366876560726595, 43.622741345065094 ], [ -79.365486799667977, 43.622781620594942 ], [ -79.36451886039842, 43.623145594451486 ], [ -79.364262368167431, 43.622989251350752 ], [ -79.364606723569651, 43.622290489660848 ], [ -79.365864849229879, 43.621638007059076 ], [ -79.366876560726595, 43.622741345065094 ] ] ], [ [ [ -79.366413445253656, 43.623572997030983 ], [ -79.365205216185387, 43.623581924870223 ], [ -79.364708018005061, 43.623267306473139 ], [ -79.365221534367379, 43.623028444405186 ], [ -79.365979584751827, 43.622915682205694 ], [ -79.366413445253656, 43.623572997030983 ] ] ], [ [ [ -79.367997740391246, 43.623981986776776 ], [ -79.367655451290304, 43.624012028626439 ], [ -79.366549830841436, 43.623613023962655 ], [ -79.36659726017993, 43.623371097277058 ], [ -79.366217127286404, 43.623058607759752 ], [ -79.366264630187047, 43.622900851064763 ], [ -79.366976970097028, 43.622777526903882 ], [ -79.367997740391246, 43.623981986776776 ] ] ], [ [ [ -79.370645589858, 43.622863079799117 ], [ -79.370686574603781, 43.622719181484463 ], [ -79.369698319428267, 43.622746684578388 ], [ -79.369676526681118, 43.622467491458877 ], [ -79.36925353111539, 43.622511690790091 ], [ -79.369254049725271, 43.622674094520107 ], [ -79.368026964242219, 43.622662888853725 ], [ -79.367964801330046, 43.622546505775333 ], [ -79.367897108378756, 43.622683810497257 ], [ -79.367116835564573, 43.622522606877823 ], [ -79.36667369220055, 43.621762629064207 ], [ -79.368727272001266, 43.62155114085347 ], [ -79.371397607080056, 43.621590736105908 ], [ -79.371696482935079, 43.621892689279711 ], [ -79.371499115888199, 43.62244242220676 ], [ -79.370645589858, 43.622863079799117 ] ] ], [ [ [ -79.37059548874204, 43.624382175689419 ], [ -79.3690596558354, 43.623990476917726 ], [ -79.368212510770633, 43.623965697636017 ], [ -79.36745976451887, 43.62301658296245 ], [ -79.368034942294557, 43.622934863528755 ], [ -79.36918115795838, 43.623351986779689 ], [ -79.37123730122984, 43.623456280753658 ], [ -79.371219304082373, 43.623873267689497 ], [ -79.37059548874204, 43.624382175689419 ] ] ], [ [ [ -79.382820534583203, 43.625710778257734 ], [ -79.381316219833948, 43.62550783202844 ], [ -79.381298955796851, 43.62439835958525 ], [ -79.381461192607887, 43.624381931974284 ], [ -79.381736312814141, 43.625183494376067 ], [ -79.382459417068887, 43.625386819075317 ], [ -79.382932997570421, 43.624965651818982 ], [ -79.382479754435408, 43.624646961247457 ], [ -79.383390933737147, 43.624502492035511 ], [ -79.383271229477245, 43.623732297587672 ], [ -79.38174530929345, 43.623829988885795 ], [ -79.380855211061643, 43.623630776531968 ], [ -79.380592278779318, 43.624425261635906 ], [ -79.380364347485369, 43.624132168460299 ], [ -79.380089115640502, 43.62415446544032 ], [ -79.380162288248499, 43.624265236603506 ], [ -79.379969577638519, 43.624141339323948 ], [ -79.379794874343332, 43.624298559709324 ], [ -79.379542891363869, 43.624121070029865 ], [ -79.379377896128688, 43.624228826261444 ], [ -79.379254163897201, 43.62396079293714 ], [ -79.378959784461031, 43.623976784442206 ], [ -79.378747827049764, 43.623679143423814 ], [ -79.378152268276764, 43.62348498603933 ], [ -79.378198907075472, 43.623274550306888 ], [ -79.378792760741646, 43.622927032027057 ], [ -79.378633535511412, 43.622504200189567 ], [ -79.37849690303355, 43.622648185376654 ], [ -79.378429240161353, 43.622465655172498 ], [ -79.378126570800092, 43.622512763975472 ], [ -79.378221460387152, 43.62231714575146 ], [ -79.377120853668245, 43.621893648826514 ], [ -79.376750997439132, 43.6214937504555 ], [ -79.374567046292228, 43.621127850785115 ], [ -79.372486380175985, 43.621192865763689 ], [ -79.371871781055532, 43.621065919730967 ], [ -79.370517902117783, 43.619695071064541 ], [ -79.370494231074957, 43.619420982341879 ], [ -79.371737805497119, 43.619091219686098 ], [ -79.372084139321743, 43.619868974309696 ], [ -79.37265850406142, 43.619900488824712 ], [ -79.372745489188802, 43.619762532049947 ], [ -79.372850284421787, 43.619878619064828 ], [ -79.372727985143314, 43.619904300947766 ], [ -79.373956147668849, 43.619971677812032 ], [ -79.374765748593632, 43.619836365032803 ], [ -79.374231267855919, 43.619334285996267 ], [ -79.374545810858976, 43.619172130404799 ], [ -79.380404272281922, 43.620316508956684 ], [ -79.381507122353838, 43.620762871229829 ], [ -79.382361857134512, 43.620933942060837 ], [ -79.382605652609897, 43.621607591081712 ], [ -79.38233754602642, 43.621280535936869 ], [ -79.381249746047587, 43.621053683940872 ], [ -79.380986259980531, 43.62274215276684 ], [ -79.381237975740348, 43.622803779569963 ], [ -79.381455521826211, 43.622588380208747 ], [ -79.382263571002525, 43.622420135044841 ], [ -79.38244535853093, 43.621998081662575 ], [ -79.382769130619209, 43.621987087903257 ], [ -79.382927607167403, 43.622576260735634 ], [ -79.381893457081617, 43.622859687734575 ], [ -79.382071004998096, 43.623530239702248 ], [ -79.382214543183736, 43.623631742895398 ], [ -79.383155162153869, 43.623539993750605 ], [ -79.383261625801239, 43.622915498922509 ], [ -79.384152428689049, 43.624802670351315 ], [ -79.38342151723667, 43.625596939104334 ], [ -79.382820534583203, 43.625710778257734 ] ] ], [ [ [ -79.373749117040418, 43.619587407991837 ], [ -79.372531732220551, 43.619484028045655 ], [ -79.372276794396768, 43.619660259554784 ], [ -79.371900459153025, 43.619165011797158 ], [ -79.374073988262211, 43.619303693293944 ], [ -79.374232485166132, 43.619535768505685 ], [ -79.373749117040418, 43.619587407991837 ] ] ], [ [ [ -79.373425406141152, 43.623685562542178 ], [ -79.372824785458675, 43.623641909081215 ], [ -79.37203036757677, 43.622946898348744 ], [ -79.372243933123301, 43.621621961524184 ], [ -79.373477792656473, 43.621403756823497 ], [ -79.375456774558288, 43.621570341383851 ], [ -79.376679343598923, 43.621991985075766 ], [ -79.376997193283998, 43.621916199099076 ], [ -79.377485046689912, 43.622401759874805 ], [ -79.377319772014076, 43.623113094331799 ], [ -79.376559620200723, 43.623407292565879 ], [ -79.375558353294736, 43.62361794260795 ], [ -79.373425406141152, 43.623685562542178 ] ] ], [ [ [ -79.379264183558249, 43.618886137428973 ], [ -79.378731236936133, 43.618851035948076 ], [ -79.377745907543755, 43.618441242030116 ], [ -79.377890953254933, 43.617496917121287 ], [ -79.378448373830452, 43.617210097141054 ], [ -79.379900808224335, 43.618843307607548 ], [ -79.379264183558249, 43.618886137428973 ] ] ], [ [ [ -79.386633487187694, 43.627589259440093 ], [ -79.386500092912399, 43.627727088393861 ], [ -79.386313811407788, 43.627633269269275 ], [ -79.385974820779737, 43.627275785966887 ], [ -79.38511834040149, 43.626814762788982 ], [ -79.384279894995018, 43.625649940648039 ], [ -79.384668549124001, 43.624846060793018 ], [ -79.383042592484841, 43.621126131378141 ], [ -79.383122029140409, 43.620819925733755 ], [ -79.386177916408613, 43.62137702161111 ], [ -79.386842410106041, 43.622571603873986 ], [ -79.386975842937758, 43.622535137652307 ], [ -79.387781294742936, 43.62490124446154 ], [ -79.387834186212757, 43.625144324426437 ], [ -79.387636298932435, 43.625366584543727 ], [ -79.387848462402971, 43.625972170827716 ], [ -79.387458183830091, 43.626631556204686 ], [ -79.386985944407044, 43.626903777764738 ], [ -79.386633487187694, 43.627589259440093 ] ] ], [ [ [ -79.38550496982856, 43.620151709063379 ], [ -79.384644397211162, 43.620099585977755 ], [ -79.384690384726696, 43.619736824042803 ], [ -79.38447993469525, 43.619855918305412 ], [ -79.384332415697543, 43.619658940228611 ], [ -79.385216452742029, 43.619276779411024 ], [ -79.385597006818017, 43.619400529563883 ], [ -79.385809330856262, 43.619769279253944 ], [ -79.38550496982856, 43.620151709063379 ] ] ], [ [ [ -79.385620265966409, 43.615893399073471 ], [ -79.385290571016682, 43.6152214235115 ], [ -79.385487501611394, 43.61484287832949 ], [ -79.385987325769847, 43.615011070850343 ], [ -79.386203435049751, 43.615318029550757 ], [ -79.386024613405382, 43.615795313730267 ], [ -79.385620265966409, 43.615893399073471 ] ] ], [ [ [ -79.389228634297126, 43.614595062465185 ], [ -79.389392335229914, 43.614698911268825 ], [ -79.389075525252153, 43.614668792655955 ], [ -79.389228634297126, 43.614595062465185 ] ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200988", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 95, "HOOD": "Annex", "FULLHOOD": "Annex (95)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.387179698213544, 43.671293647166195 ], [ -79.386736720430861, 43.670233989925087 ], [ -79.418406235349835, 43.663554548931799 ], [ -79.421842604613488, 43.672479760726951 ], [ -79.401373252282198, 43.67678738142164 ], [ -79.399044441585815, 43.677592157327702 ], [ -79.391191257135162, 43.681127889818491 ], [ -79.387179698213544, 43.671293647166195 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200974", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 94, "HOOD": "Wychwood", "FULLHOOD": "Wychwood (94)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.415745153253312, 43.676721593800146 ], [ -79.414666190851563, 43.67396212563785 ], [ -79.432986748479706, 43.670327542953828 ], [ -79.434623204093754, 43.674321890533491 ], [ -79.433750521246481, 43.674444518814582 ], [ -79.435875808046987, 43.67954278799899 ], [ -79.435638784929239, 43.6795935570008 ], [ -79.435896950956618, 43.68023370625793 ], [ -79.432692926959561, 43.680759744611642 ], [ -79.432360012017639, 43.680960874998355 ], [ -79.420633624036398, 43.68318519140481 ], [ -79.418543256877996, 43.68381640938555 ], [ -79.415745153253312, 43.676721593800146 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201114", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 92, "HOOD": "Corsa Italia-Davenport", "FULLHOOD": "Corsa Italia-Davenport (92)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.434021556618603, 43.675099612283255 ], [ -79.433750521246481, 43.674444518814582 ], [ -79.437136090538857, 43.674004649576148 ], [ -79.44205613504127, 43.672748236478611 ], [ -79.45137159628861, 43.671039375342069 ], [ -79.453082614570889, 43.672799014019496 ], [ -79.454619589644537, 43.673810192537893 ], [ -79.455866904009184, 43.674997567970969 ], [ -79.460170648999835, 43.68151459613096 ], [ -79.456345500071635, 43.682474206802247 ], [ -79.453217924175163, 43.683005543617639 ], [ -79.446763165338837, 43.684533979530535 ], [ -79.444949582978182, 43.684760572587116 ], [ -79.4424940202925, 43.678780647409432 ], [ -79.435896950956618, 43.68023370625793 ], [ -79.435638784929239, 43.6795935570008 ], [ -79.435875808046987, 43.67954278799899 ], [ -79.434021556618603, 43.675099612283255 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201115", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 107, "HOOD": "Oakwood-Vaughan", "FULLHOOD": "Oakwood-Vaughan (107)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.432692926959561, 43.680759744611642 ], [ -79.434907811923011, 43.680488338842167 ], [ -79.4424940202925, 43.678780647409432 ], [ -79.444949582978182, 43.684760572587116 ], [ -79.445736942965667, 43.684737881084374 ], [ -79.450260553384538, 43.695684596795608 ], [ -79.437188599244834, 43.698496387253016 ], [ -79.434652884410141, 43.692259647092058 ], [ -79.43417399843986, 43.691642129216312 ], [ -79.433271407999001, 43.689042161021689 ], [ -79.431924494712831, 43.688825654311898 ], [ -79.429037334191335, 43.681546216939267 ], [ -79.432360012017639, 43.680960874998355 ], [ -79.432692926959561, 43.680759744611642 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201092", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 106, "HOOD": "Humewood-Cedarvale", "FULLHOOD": "Humewood-Cedarvale (106)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.41932023202196, 43.685791825192766 ], [ -79.418543256877996, 43.68381640938555 ], [ -79.420633624036398, 43.68318519140481 ], [ -79.429037334191335, 43.681546216939267 ], [ -79.431924494712831, 43.688825654311898 ], [ -79.433271407999001, 43.689042161021689 ], [ -79.43417399843986, 43.691642129216312 ], [ -79.434652884410141, 43.692259647092058 ], [ -79.437188599244834, 43.698496387253016 ], [ -79.425525080724142, 43.701036851468508 ], [ -79.41932023202196, 43.685791825192766 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201079", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 96, "HOOD": "Casa Loma", "FULLHOOD": "Casa Loma (96)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.398893216827332, 43.680480291603679 ], [ -79.397938322658632, 43.678090764662407 ], [ -79.399044441585815, 43.677592157327702 ], [ -79.402759077368117, 43.676455583508783 ], [ -79.414666190851563, 43.67396212563785 ], [ -79.418543256877996, 43.68381640938555 ], [ -79.412028744984056, 43.685207475731879 ], [ -79.412864790946131, 43.687247848872197 ], [ -79.41225949137764, 43.687356559988224 ], [ -79.412671779231331, 43.688658831950306 ], [ -79.403012371946389, 43.690757248450431 ], [ -79.398893216827332, 43.680480291603679 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201084", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 101, "HOOD": "Forest Hill South", "FULLHOOD": "Forest Hill South (101)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.409401353625995, 43.689404110732248 ], [ -79.412671779231331, 43.688658831950306 ], [ -79.41225949137764, 43.687356559988224 ], [ -79.412864790946131, 43.687247848872197 ], [ -79.412028744984056, 43.685207475731879 ], [ -79.418543256877996, 43.68381640938555 ], [ -79.425525080724142, 43.701036851468508 ], [ -79.410887106488175, 43.704084655589952 ], [ -79.409031936704395, 43.699258679648516 ], [ -79.405823915286746, 43.698126023953876 ], [ -79.404611203621357, 43.695038376273104 ], [ -79.402402635033567, 43.695493730534707 ], [ -79.400878652228016, 43.691204617265981 ], [ -79.409401353625995, 43.689404110732248 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202787", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 97, "HOOD": "Yonge-St.Clair", "FULLHOOD": "Yonge-St.Clair (97)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.391191257135162, 43.681127889818491 ], [ -79.397938322658632, 43.678090764662407 ], [ -79.40304587242386, 43.690597482184842 ], [ -79.403012371946389, 43.690757248450431 ], [ -79.400878652228016, 43.691204617265981 ], [ -79.402402635033567, 43.695493730534707 ], [ -79.404611203621357, 43.695038376273104 ], [ -79.405823915286746, 43.698126023953876 ], [ -79.400006694615215, 43.696344664654816 ], [ -79.39902982068709, 43.696380140489858 ], [ -79.396026081300278, 43.695551003720382 ], [ -79.394924757982395, 43.690193721323908 ], [ -79.391191257135162, 43.681127889818491 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200855", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 76, "HOOD": "Bay Street Corridor", "FULLHOOD": "Bay Street Corridor (76)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.379240173383238, 43.652426337218451 ], [ -79.376908868480669, 43.646900801652002 ], [ -79.378248808432247, 43.646182282379975 ], [ -79.384975616106402, 43.644782174944154 ], [ -79.387446686874398, 43.650669598949186 ], [ -79.386772949878349, 43.65082213073233 ], [ -79.390711806389305, 43.660176941208242 ], [ -79.390976499261157, 43.660578553137206 ], [ -79.391935384274746, 43.66097345609348 ], [ -79.392264735130823, 43.661416843239842 ], [ -79.392982445928055, 43.662553618244459 ], [ -79.39404380229908, 43.665015802964653 ], [ -79.393792062910975, 43.665477667974741 ], [ -79.393050389991018, 43.666055074319445 ], [ -79.39410897421682, 43.668681143677162 ], [ -79.386736720430861, 43.670233989925087 ], [ -79.379240173383238, 43.652426337218451 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200747", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 98, "HOOD": "Rosedale-Moore Park", "FULLHOOD": "Rosedale-Moore Park (98)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.367298960837104, 43.674369835771678 ], [ -79.370997561515964, 43.671952909598602 ], [ -79.376395482277033, 43.67245764155394 ], [ -79.386736720430861, 43.670233989925087 ], [ -79.394124401233938, 43.688102588933461 ], [ -79.394924757982395, 43.690193721323908 ], [ -79.395297274970346, 43.692003564828973 ], [ -79.393289847060728, 43.692453914408581 ], [ -79.392435615791754, 43.692389785796188 ], [ -79.391947055651016, 43.692135452799732 ], [ -79.392588320651598, 43.69149903266328 ], [ -79.392127771648362, 43.690839647836867 ], [ -79.391440345895745, 43.691112728787978 ], [ -79.391547342167527, 43.691190570323329 ], [ -79.388625569051698, 43.691892807669021 ], [ -79.38890902793716, 43.692653053183122 ], [ -79.388534171078476, 43.692727257314459 ], [ -79.388685578155048, 43.693179756981678 ], [ -79.380175787645783, 43.69498231883135 ], [ -79.379853614263382, 43.694470496311652 ], [ -79.373739785948615, 43.692570442115617 ], [ -79.370596455444087, 43.690536805674881 ], [ -79.368184867628671, 43.68967900653432 ], [ -79.367445793073998, 43.689170199669292 ], [ -79.366866698138182, 43.688501278689088 ], [ -79.366861827841319, 43.687692296838399 ], [ -79.36716772862259, 43.686972371579252 ], [ -79.366835820673217, 43.684191348560027 ], [ -79.368302794776994, 43.680812896512869 ], [ -79.366997438452174, 43.678727776959882 ], [ -79.364054798801533, 43.678986014601655 ], [ -79.364046960015031, 43.679123992046279 ], [ -79.363799025443129, 43.678934014225071 ], [ -79.363573006397218, 43.67794101721703 ], [ -79.364881037881716, 43.676876978701237 ], [ -79.363318024694237, 43.675303041667696 ], [ -79.366833699684449, 43.674635139428503 ], [ -79.367298960837104, 43.674369835771678 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200758", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 75, "HOOD": "Church-Yonge Corridor", "FULLHOOD": "Church-Yonge Corridor (75)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.372656553535165, 43.65238674644425 ], [ -79.371409773017689, 43.649424719395931 ], [ -79.373787211967723, 43.648545037166684 ], [ -79.376908868480669, 43.646900801652002 ], [ -79.386736720430861, 43.670233989925087 ], [ -79.380497610884717, 43.671613374535248 ], [ -79.372656553535165, 43.65238674644425 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201128", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 109, "HOOD": "Caledonia-Fairbanks", "FULLHOOD": "Caledonia-Fairbanks (109)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.446767803771252, 43.687254607537433 ], [ -79.445736942965667, 43.684737881084374 ], [ -79.453217924175163, 43.683005543617639 ], [ -79.455689922214333, 43.682621537938701 ], [ -79.460170648999835, 43.68151459613096 ], [ -79.461571599939674, 43.683799243352716 ], [ -79.462941037845184, 43.688958847507571 ], [ -79.464605380483292, 43.692176714888689 ], [ -79.463027532836932, 43.692858746628467 ], [ -79.450260553384538, 43.695684596795608 ], [ -79.446767803771252, 43.687254607537433 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200756", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 74, "HOOD": "North St.James Town", "FULLHOOD": "North St.James Town (74)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.369847263932726, 43.669009172795526 ], [ -79.369537074734595, 43.66822509125253 ], [ -79.374640415495577, 43.667108954887617 ], [ -79.37582249455167, 43.666504888180008 ], [ -79.377335405813781, 43.666535911442793 ], [ -79.378320677039028, 43.66631520925143 ], [ -79.380497610884717, 43.671613374535248 ], [ -79.375972126486786, 43.672479535008698 ], [ -79.371259836833104, 43.671922438699468 ], [ -79.370840489493233, 43.671395071727687 ], [ -79.369847263932726, 43.669009172795526 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200766", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 71, "HOOD": "Cabbagetown-South St.James Town", "FULLHOOD": "Cabbagetown-South St.James Town (71)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.356503216286725, 43.664471549776984 ], [ -79.359191072919003, 43.663719152772856 ], [ -79.366990295537391, 43.66196713662076 ], [ -79.367944518969281, 43.664285711636332 ], [ -79.376675825190333, 43.66245622532275 ], [ -79.378320677039028, 43.66631520925143 ], [ -79.377335405813781, 43.666535911442793 ], [ -79.37582249455167, 43.666504888180008 ], [ -79.374640415495577, 43.667108954887617 ], [ -79.369537074734595, 43.66822509125253 ], [ -79.370840489493233, 43.671395071727687 ], [ -79.371259836833104, 43.671922438699468 ], [ -79.370659530730123, 43.672121830460519 ], [ -79.366833699684449, 43.674635139428503 ], [ -79.363318024694237, 43.675303041667696 ], [ -79.362835951365213, 43.674620004447739 ], [ -79.362972012656783, 43.673426045283144 ], [ -79.362648958910739, 43.673132997293848 ], [ -79.360829977353916, 43.672291988276605 ], [ -79.360326024616384, 43.6718360155242 ], [ -79.359604015210849, 43.6704250469597 ], [ -79.357972999348775, 43.669236963389643 ], [ -79.357455001292777, 43.668584983811812 ], [ -79.356296965758773, 43.664515034945452 ], [ -79.356503216286725, 43.664471549776984 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200812", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 73, "HOOD": "Moss Park", "FULLHOOD": "Moss Park (73)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.364006067721348, 43.651290816803666 ], [ -79.37026031183072, 43.649877074075007 ], [ -79.371409773017689, 43.649424719395931 ], [ -79.376675825190333, 43.66245622532275 ], [ -79.367944518969281, 43.664285711636332 ], [ -79.364434207225585, 43.655618786662274 ], [ -79.354289956028637, 43.657862976439631 ], [ -79.351651958498437, 43.655475014076522 ], [ -79.352385050621649, 43.655445791739055 ], [ -79.357961699287515, 43.654220461190626 ], [ -79.360289589432185, 43.652871977148479 ], [ -79.361173472300905, 43.651943583626242 ], [ -79.364006067721348, 43.651290816803666 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200799", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 72, "HOOD": "Regent Park", "FULLHOOD": "Regent Park (72)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.354465387189151, 43.657853798833841 ], [ -79.364434207225585, 43.655618786662274 ], [ -79.366990295537391, 43.66196713662076 ], [ -79.359191072919003, 43.663719152772856 ], [ -79.356296965758773, 43.664515034945452 ], [ -79.354289956028637, 43.657862976439631 ], [ -79.354465387189151, 43.657853798833841 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200733", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 67, "HOOD": "Playter Estates-Danforth", "FULLHOOD": "Playter Estates-Danforth (67)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.347301574972178, 43.67845827159725 ], [ -79.363318024694237, 43.675303041667696 ], [ -79.364881037881716, 43.676876978701237 ], [ -79.363573006397218, 43.67794101721703 ], [ -79.363647973069803, 43.678695011673447 ], [ -79.364020702889519, 43.679250813609933 ], [ -79.361682499189911, 43.679577860105688 ], [ -79.362477245155006, 43.681754749086792 ], [ -79.357568239961935, 43.681614120163658 ], [ -79.357328308664378, 43.682429128181646 ], [ -79.348597698539066, 43.684195021744316 ], [ -79.347896884317137, 43.682325820456249 ], [ -79.346277278920823, 43.682791029969749 ], [ -79.3448817178665, 43.678936466449954 ], [ -79.347301574972178, 43.67845827159725 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200693", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 70, "HOOD": "South Riverdale", "FULLHOOD": "South Riverdale (70)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.326198113206971, 43.664222126197821 ], [ -79.330181487680889, 43.66325396994786 ], [ -79.328313059054409, 43.659067316211043 ], [ -79.321745976824943, 43.660738102890733 ], [ -79.307505005533002, 43.663926952481127 ], [ -79.30613042402112, 43.664461835583417 ], [ -79.305153680560622, 43.66525483457329 ], [ -79.304877448214299, 43.665679591730452 ], [ -79.303899991942629, 43.664337759657492 ], [ -79.306431029196119, 43.663008964545639 ], [ -79.307416966387109, 43.661933969465693 ], [ -79.307750968745395, 43.661114965581461 ], [ -79.307611010035671, 43.660329994761 ], [ -79.307156040617727, 43.65999396808602 ], [ -79.306397033361634, 43.65996004261708 ], [ -79.306371994555363, 43.660297964851488 ], [ -79.306085988754234, 43.66040202126517 ], [ -79.305454949605419, 43.660315973712521 ], [ -79.305006023942809, 43.65998002806414 ], [ -79.30509198011606, 43.659549028873364 ], [ -79.305625045991107, 43.659219987081279 ], [ -79.306004978613487, 43.658378983704083 ], [ -79.305918954732448, 43.65789196395437 ], [ -79.305048976993774, 43.657001019980477 ], [ -79.304950964289887, 43.656657042715914 ], [ -79.305494048623615, 43.656399985446527 ], [ -79.306751991851527, 43.656589029079271 ], [ -79.307612991436869, 43.65618300618673 ], [ -79.308373010395229, 43.654888970364816 ], [ -79.308305960298554, 43.654198968697777 ], [ -79.308642952448466, 43.65412797785131 ], [ -79.309542033931734, 43.655298025687401 ], [ -79.31021303712788, 43.655415968114177 ], [ -79.310271968031813, 43.655196021130926 ], [ -79.310657971349826, 43.655156985455072 ], [ -79.311168001752307, 43.655384978117766 ], [ -79.311209005162667, 43.655867008254887 ], [ -79.310042019953968, 43.656125044860453 ], [ -79.309267028345033, 43.655897000181923 ], [ -79.308486952581703, 43.655967019704697 ], [ -79.307710957223065, 43.656765982330086 ], [ -79.306806976019814, 43.656856031061103 ], [ -79.30690695574522, 43.657276012326975 ], [ -79.30747899455055, 43.657684978616601 ], [ -79.309551029399628, 43.658256019959175 ], [ -79.30970804619615, 43.658064979502782 ], [ -79.310330966910485, 43.658388985154566 ], [ -79.310910000732022, 43.657928989393007 ], [ -79.311189992135112, 43.657254018287432 ], [ -79.310215011437151, 43.656929045497535 ], [ -79.310404969073318, 43.656678987972761 ], [ -79.310736041579872, 43.656607993535545 ], [ -79.31106802504199, 43.656832995778196 ], [ -79.311626048188927, 43.656918024140396 ], [ -79.31242800651502, 43.656768008776339 ], [ -79.312608034401464, 43.657077002277617 ], [ -79.311728030439852, 43.657526981754295 ], [ -79.311659995364806, 43.657769029789129 ], [ -79.311829948957325, 43.657952028434806 ], [ -79.311686977552498, 43.658331960095076 ], [ -79.311926964562701, 43.658785961174161 ], [ -79.312136958246981, 43.658842983096768 ], [ -79.311857026782789, 43.659000975337072 ], [ -79.31196397033915, 43.659075020003229 ], [ -79.312173961666758, 43.658902042027037 ], [ -79.312389022660412, 43.659063020782035 ], [ -79.312217971236279, 43.659298957486499 ], [ -79.312453966267867, 43.659114030193159 ], [ -79.312645016000388, 43.659256020024102 ], [ -79.31240897480275, 43.659427984220926 ], [ -79.312636040564271, 43.659404959830795 ], [ -79.31439499742126, 43.660920997808837 ], [ -79.313978009490484, 43.661072023428858 ], [ -79.314024040601325, 43.661185046507583 ], [ -79.313393958260107, 43.661319964665211 ], [ -79.313320019517249, 43.661593973379695 ], [ -79.3142250412305, 43.661553039218767 ], [ -79.314823044922449, 43.661961991322528 ], [ -79.317093009565113, 43.661437035415076 ], [ -79.31704700242453, 43.660941971299323 ], [ -79.317664009641575, 43.660861032297568 ], [ -79.317884978317736, 43.661052964288317 ], [ -79.317863977449306, 43.660881978395203 ], [ -79.318043014373004, 43.660898025238637 ], [ -79.317192024424571, 43.660777029741055 ], [ -79.31560103795691, 43.65957902773652 ], [ -79.313688980756027, 43.65848402174273 ], [ -79.313121964727401, 43.657912045300598 ], [ -79.313703027633892, 43.65756503973541 ], [ -79.314415016150505, 43.657396039626704 ], [ -79.31625904441151, 43.657593977600946 ], [ -79.316807952966059, 43.657310036451562 ], [ -79.316499973732235, 43.657227995254694 ], [ -79.316033007555518, 43.657455979447057 ], [ -79.316032959132698, 43.657249023854064 ], [ -79.316411962358771, 43.656908030184894 ], [ -79.316035030721977, 43.656168009819261 ], [ -79.317695986066425, 43.654698046401911 ], [ -79.318119031621109, 43.654118963012131 ], [ -79.319516007822529, 43.651150043366982 ], [ -79.320155973682731, 43.648849993894672 ], [ -79.320199042815048, 43.648405029361122 ], [ -79.319860988382828, 43.648012977678391 ], [ -79.320008955050383, 43.646569976025532 ], [ -79.319581962706778, 43.64606400194269 ], [ -79.320326010807747, 43.645534996759295 ], [ -79.320756983051908, 43.644330021947155 ], [ -79.321199996503282, 43.64230604235879 ], [ -79.320629972670247, 43.641730996962643 ], [ -79.321176009082791, 43.64124300688421 ], [ -79.321667049836776, 43.640250996319395 ], [ -79.323104001989805, 43.635244022795526 ], [ -79.322987994161082, 43.63436795839764 ], [ -79.321414043255373, 43.633367966558616 ], [ -79.321618024904851, 43.633064983409525 ], [ -79.322300039938369, 43.632720044283175 ], [ -79.322707002067844, 43.631528030062697 ], [ -79.322874009846345, 43.630292975986833 ], [ -79.322336954587456, 43.629347989641836 ], [ -79.322501963455451, 43.629049023865775 ], [ -79.322875000055618, 43.628856002175816 ], [ -79.323063952154072, 43.628246997933559 ], [ -79.323253992396985, 43.626700991318529 ], [ -79.32277595827766, 43.625986963138061 ], [ -79.323265016407902, 43.62517099308625 ], [ -79.323645956070735, 43.623109989062094 ], [ -79.323083965764383, 43.622678023950535 ], [ -79.322975992051511, 43.622389006350446 ], [ -79.323813018997939, 43.621896987585345 ], [ -79.324180957821866, 43.619710031973256 ], [ -79.32421503239091, 43.618349967597148 ], [ -79.323895971516748, 43.617944971552028 ], [ -79.32321596965734, 43.61760201710382 ], [ -79.323207016476545, 43.617434988506211 ], [ -79.323682993931982, 43.617090979179167 ], [ -79.325055960573266, 43.617737009443566 ], [ -79.32568700337265, 43.617760024703266 ], [ -79.326769987561477, 43.617465038349557 ], [ -79.327121041495957, 43.617686043269842 ], [ -79.326868974454356, 43.617957006501456 ], [ -79.325635005138452, 43.618511021258001 ], [ -79.325040956952989, 43.619416024747451 ], [ -79.325096011117154, 43.620187043100778 ], [ -79.324768045670268, 43.62138400647531 ], [ -79.324812955697027, 43.621573976650289 ], [ -79.325464008882349, 43.621975010529944 ], [ -79.326553046451707, 43.622058019419143 ], [ -79.328813974526156, 43.621586974779227 ], [ -79.32871904509345, 43.620991994888406 ], [ -79.326926039777078, 43.619781018744973 ], [ -79.326887963377501, 43.619406968211663 ], [ -79.327234949445554, 43.619114978671611 ], [ -79.327880025201097, 43.619237029202758 ], [ -79.329505955245409, 43.620088980091516 ], [ -79.332078985096004, 43.62032899761428 ], [ -79.333051049871031, 43.620279979092352 ], [ -79.334469004188648, 43.619823985777039 ], [ -79.335044956915013, 43.619458970389104 ], [ -79.335658967828238, 43.61946295839121 ], [ -79.336064976723378, 43.61963099370918 ], [ -79.33621301447242, 43.61994803826115 ], [ -79.335287967906481, 43.621020036524563 ], [ -79.336031020423718, 43.621382020695229 ], [ -79.336318969165774, 43.62127296547375 ], [ -79.336940039709148, 43.621358967616757 ], [ -79.337236991989627, 43.621012027898047 ], [ -79.337511036741674, 43.619399971736463 ], [ -79.337705950496641, 43.619235998258816 ], [ -79.338329974476864, 43.619214011632607 ], [ -79.338715042235918, 43.619471033180346 ], [ -79.339849979857476, 43.619456010130463 ], [ -79.340809013803735, 43.618920987721275 ], [ -79.341495978649903, 43.618318997119978 ], [ -79.342250047034156, 43.617181995169808 ], [ -79.342607989940873, 43.616241972302063 ], [ -79.342436959060876, 43.615816038154044 ], [ -79.341781993230271, 43.615391998638565 ], [ -79.341824950373876, 43.615186025263924 ], [ -79.342406021646937, 43.614608958994332 ], [ -79.342896033269952, 43.613152962955397 ], [ -79.343408947842306, 43.613003039797881 ], [ -79.343902002194412, 43.613402040090854 ], [ -79.34368002813342, 43.615324987300475 ], [ -79.343751973747757, 43.616721972448858 ], [ -79.344345050611039, 43.617711961473823 ], [ -79.344675993646433, 43.617901024246301 ], [ -79.343532039085986, 43.61950103937091 ], [ -79.343366039699958, 43.620339962528533 ], [ -79.34354197583265, 43.620747962037626 ], [ -79.344405994556126, 43.621619987714297 ], [ -79.344913036348842, 43.621601042345461 ], [ -79.344893979911078, 43.621722023584084 ], [ -79.343870957982389, 43.622107980173631 ], [ -79.343077011886052, 43.621997005673229 ], [ -79.343230987749607, 43.621562999431042 ], [ -79.342798024275879, 43.620435974772747 ], [ -79.342836022716867, 43.619666043256601 ], [ -79.342113960117473, 43.619354008659883 ], [ -79.341215965162917, 43.619494019005906 ], [ -79.340430995039227, 43.619860983159064 ], [ -79.33973499513165, 43.620508026069686 ], [ -79.339749015528156, 43.621205975482454 ], [ -79.340945029163791, 43.621863018263859 ], [ -79.341297959527282, 43.622476044271295 ], [ -79.34298395850584, 43.622896038126768 ], [ -79.3432460404388, 43.623408989432441 ], [ -79.342103011138249, 43.623608019832979 ], [ -79.341775002074911, 43.623954971782737 ], [ -79.34169195805822, 43.624592999853192 ], [ -79.341073979138258, 43.624578994414954 ], [ -79.341277971245873, 43.624415956884178 ], [ -79.341094044157387, 43.624138997431196 ], [ -79.339436041833238, 43.622890027438842 ], [ -79.338993023370207, 43.622126973914099 ], [ -79.338369958334297, 43.622087044228259 ], [ -79.337560037173532, 43.622704961879563 ], [ -79.337417020253625, 43.623566985047489 ], [ -79.336678971817776, 43.62473200290723 ], [ -79.336818978452428, 43.625341044618139 ], [ -79.337484989377273, 43.625734035653075 ], [ -79.337827970536651, 43.626332974212822 ], [ -79.338247970124812, 43.626662971011143 ], [ -79.33940603813214, 43.629215029017459 ], [ -79.339898990158417, 43.629104981206581 ], [ -79.339936035360594, 43.629200040040828 ], [ -79.339349949166106, 43.629344023221243 ], [ -79.33868700437263, 43.629042007951917 ], [ -79.337447950202616, 43.628996992334386 ], [ -79.337517972070145, 43.628841015609829 ], [ -79.338660034462038, 43.628529042284335 ], [ -79.338501950638687, 43.628300975112801 ], [ -79.337941999551376, 43.628720972071307 ], [ -79.337490025178298, 43.628682984271784 ], [ -79.33859302422006, 43.628145033550361 ], [ -79.338567972866997, 43.627955987628418 ], [ -79.337517960510766, 43.62852603551174 ], [ -79.337309990449199, 43.627815994460633 ], [ -79.336878037079671, 43.627507965320326 ], [ -79.335589951468066, 43.627551966331147 ], [ -79.334975959479536, 43.627422040146378 ], [ -79.334893049146018, 43.627078036610577 ], [ -79.335745032504448, 43.626339043603018 ], [ -79.335415048476492, 43.625680964836491 ], [ -79.334857047434184, 43.625244974833002 ], [ -79.334263998111894, 43.62512003083517 ], [ -79.334126988038975, 43.625581007765355 ], [ -79.333915033865267, 43.625690984672012 ], [ -79.332650005804396, 43.625834040528638 ], [ -79.332131952747361, 43.626164960181853 ], [ -79.331290952254889, 43.625788018442961 ], [ -79.331959004123902, 43.625517983977254 ], [ -79.332943034394319, 43.624047004597692 ], [ -79.333333035252593, 43.623004046448919 ], [ -79.33323103730757, 43.622407977125675 ], [ -79.333024048657876, 43.622282982433774 ], [ -79.332035963306865, 43.6221930460379 ], [ -79.327478976970696, 43.622635002785771 ], [ -79.32466898808299, 43.62258900391825 ], [ -79.324258967200194, 43.622831000725036 ], [ -79.324026012064536, 43.62565898612786 ], [ -79.32521901258275, 43.626369980771237 ], [ -79.327164971932618, 43.626866031295769 ], [ -79.327309967815779, 43.627229042681513 ], [ -79.326810049531119, 43.627261967158447 ], [ -79.324303992027836, 43.626436962284522 ], [ -79.323833972940747, 43.626435024092473 ], [ -79.323548979718709, 43.629077973112217 ], [ -79.32364403657904, 43.629596981500057 ], [ -79.324207984449174, 43.629740008148644 ], [ -79.325325964046769, 43.629274961466777 ], [ -79.325704025334048, 43.629478992117647 ], [ -79.324059967608193, 43.63011196153824 ], [ -79.323582987538927, 43.630572982774531 ], [ -79.323682982395496, 43.631285966315417 ], [ -79.32321995926948, 43.632094037259336 ], [ -79.323032997717831, 43.633373988811655 ], [ -79.324135974385939, 43.633485041461704 ], [ -79.326559958662699, 43.630832999695855 ], [ -79.32738800183381, 43.629561971474985 ], [ -79.326500018349861, 43.629360026296176 ], [ -79.326505987994622, 43.629188985736548 ], [ -79.326690028375324, 43.62902496227894 ], [ -79.32778795639274, 43.628990973619935 ], [ -79.328302995504956, 43.628039972260268 ], [ -79.327924984711004, 43.627538974987658 ], [ -79.328429973953206, 43.627370999771394 ], [ -79.329314006940535, 43.627496985409124 ], [ -79.329570971600106, 43.62740099763306 ], [ -79.330406990952127, 43.626764974273556 ], [ -79.330876016058625, 43.62609703205576 ], [ -79.331860016797947, 43.626692021182564 ], [ -79.331454005740994, 43.626788989917635 ], [ -79.331452989131691, 43.627262030168545 ], [ -79.3306099780946, 43.628114007013188 ], [ -79.330228035653107, 43.628194038921272 ], [ -79.32988995638641, 43.628473024251313 ], [ -79.328788034953178, 43.630176034803291 ], [ -79.328686981921848, 43.630849977357208 ], [ -79.329853985562934, 43.631228009586316 ], [ -79.331216984234558, 43.631242959580263 ], [ -79.331585018953959, 43.631063969620968 ], [ -79.331907996156062, 43.630469959329169 ], [ -79.332407002453294, 43.630445011065078 ], [ -79.332427013896904, 43.630198018115742 ], [ -79.332613986885178, 43.630141961818069 ], [ -79.332594987746745, 43.630615009657333 ], [ -79.333101033873589, 43.630671989156831 ], [ -79.333622045450724, 43.630535011491496 ], [ -79.333930046633967, 43.630278982118575 ], [ -79.333707046504387, 43.629600042701 ], [ -79.334135030850049, 43.629363045033593 ], [ -79.335238970987135, 43.629667007315312 ], [ -79.336296026101209, 43.629147044108322 ], [ -79.336627018513454, 43.62945801766368 ], [ -79.335822033312098, 43.630418969937686 ], [ -79.334816002700975, 43.631029961725723 ], [ -79.334493962219852, 43.631565030807856 ], [ -79.333419965422578, 43.631523005744242 ], [ -79.329682948579361, 43.632994042466009 ], [ -79.328692966554655, 43.633150973957953 ], [ -79.329243965951378, 43.632412041459716 ], [ -79.328964021604449, 43.632034007756801 ], [ -79.327263043316336, 43.631662018941135 ], [ -79.326581024095489, 43.631768975098325 ], [ -79.326404041338265, 43.632032033484357 ], [ -79.326408974227618, 43.632653963218665 ], [ -79.325394967692262, 43.633786960256195 ], [ -79.325651004755244, 43.634525002060052 ], [ -79.326225990391904, 43.63487999709703 ], [ -79.326073033934946, 43.635709991553391 ], [ -79.325306996304008, 43.635869991868063 ], [ -79.324581044355782, 43.63634600397581 ], [ -79.323387957191571, 43.637525959057633 ], [ -79.323012952011609, 43.638140966121441 ], [ -79.322610951393102, 43.641200963423884 ], [ -79.322306038598668, 43.641548016975271 ], [ -79.32156796517053, 43.644715961771354 ], [ -79.324309027755561, 43.645196993557562 ], [ -79.324568037119249, 43.644389981599709 ], [ -79.324447980036311, 43.644239959788358 ], [ -79.325314050047879, 43.64226699277318 ], [ -79.326284047828665, 43.640791008776077 ], [ -79.32469896945544, 43.64006600054033 ], [ -79.325041977068608, 43.639899988246356 ], [ -79.326693963029939, 43.64042801742157 ], [ -79.328802965803177, 43.638159036593983 ], [ -79.328468967537759, 43.637793984953284 ], [ -79.328479038927114, 43.637519031571252 ], [ -79.329462971917053, 43.637069989392806 ], [ -79.330249036152665, 43.637797039183567 ], [ -79.330315988518095, 43.638248026059451 ], [ -79.331029000127586, 43.638663975291934 ], [ -79.329900971481408, 43.638984988430707 ], [ -79.32975498691502, 43.639198993568947 ], [ -79.329919046390287, 43.6397280059251 ], [ -79.328966017519619, 43.640037972756076 ], [ -79.328546019414958, 43.6406400075048 ], [ -79.328699033916109, 43.640822013778276 ], [ -79.3281410383224, 43.640876959933102 ], [ -79.327510044649628, 43.641426034413229 ], [ -79.32755004378032, 43.64211103983623 ], [ -79.327172983830295, 43.64250197088014 ], [ -79.327095983414395, 43.642978039027398 ], [ -79.327495983881533, 43.643456044458993 ], [ -79.328691047205311, 43.643851962403104 ], [ -79.328340005617861, 43.643967997134133 ], [ -79.327203960451357, 43.643843988447792 ], [ -79.326818043296257, 43.643964009235994 ], [ -79.325328981645583, 43.64563998094917 ], [ -79.3258969693794, 43.64687697770345 ], [ -79.326593046015375, 43.64695504231274 ], [ -79.326930991600889, 43.646829009257885 ], [ -79.327417011101275, 43.647033983363933 ], [ -79.327308028615633, 43.647239974466835 ], [ -79.32834796344487, 43.647605990248067 ], [ -79.329590035879235, 43.649046994236116 ], [ -79.32988902833084, 43.648921013520862 ], [ -79.328638962329109, 43.64740301908212 ], [ -79.330439960966757, 43.646579005588016 ], [ -79.330945009166641, 43.645875043455213 ], [ -79.333518980870878, 43.643945027021964 ], [ -79.335251014323575, 43.642286978792484 ], [ -79.33530396205623, 43.642016970184876 ], [ -79.335734024194593, 43.641892972205731 ], [ -79.337425993083627, 43.640192988007719 ], [ -79.337338960110074, 43.639952989885174 ], [ -79.336422022029751, 43.639404034533882 ], [ -79.336173011687578, 43.639414004256345 ], [ -79.335167028704504, 43.640003033896285 ], [ -79.334949036925678, 43.640004000509776 ], [ -79.334977955892285, 43.639860029854482 ], [ -79.336480966151825, 43.639135012686346 ], [ -79.337635970127636, 43.63938100157479 ], [ -79.339024039827052, 43.639361025396553 ], [ -79.340642027338859, 43.639029029803609 ], [ -79.341492028566179, 43.6383249844612 ], [ -79.341707008500791, 43.637841995358052 ], [ -79.342920025722734, 43.637297047519816 ], [ -79.345763953259265, 43.634781033063007 ], [ -79.34684995987601, 43.634319994446528 ], [ -79.347099980886398, 43.633107979868676 ], [ -79.347888005612276, 43.633732044520535 ], [ -79.348090028115905, 43.633563025309968 ], [ -79.35031298097141, 43.635261028195679 ], [ -79.350509961661587, 43.635138022200152 ], [ -79.350744002584179, 43.635200001242353 ], [ -79.351161972356223, 43.635552966082017 ], [ -79.353329993864094, 43.638127001481216 ], [ -79.332946004964072, 43.649730973090733 ], [ -79.324954759790529, 43.653183187448136 ], [ -79.325338961253763, 43.6536390034683 ], [ -79.330127499531628, 43.652232448680742 ], [ -79.331446007663899, 43.65387241100116 ], [ -79.335022336126812, 43.65234893255856 ], [ -79.333725308602723, 43.650680427766758 ], [ -79.354046748283153, 43.639127270158347 ], [ -79.356192200130977, 43.641720729537788 ], [ -79.352205203170129, 43.643431959896212 ], [ -79.352463758188136, 43.643948978648396 ], [ -79.356591179426786, 43.642180614836022 ], [ -79.35815605120861, 43.643990979723441 ], [ -79.354018013423641, 43.645782021623113 ], [ -79.354391970321075, 43.646214998264895 ], [ -79.356348020977819, 43.645404959706703 ], [ -79.356695999575095, 43.645820001547243 ], [ -79.354743042827153, 43.646669969269659 ], [ -79.355070008229134, 43.647098036527879 ], [ -79.352118955752772, 43.648373972160137 ], [ -79.351970955492348, 43.64819603050298 ], [ -79.350029049797982, 43.649003046964495 ], [ -79.350180972099224, 43.649186989002771 ], [ -79.349850042159005, 43.649326965114938 ], [ -79.349698018331381, 43.649143021176222 ], [ -79.347412033914253, 43.650112012660877 ], [ -79.347571985890482, 43.650304986135666 ], [ -79.347224027056555, 43.650453980518797 ], [ -79.347063954339262, 43.650728026944854 ], [ -79.349111010575584, 43.652859021383065 ], [ -79.349389011663035, 43.653401982695016 ], [ -79.354289956028637, 43.657862976439631 ], [ -79.356296965758773, 43.664515034945452 ], [ -79.352691238251708, 43.665561469440327 ], [ -79.342284751462572, 43.66772789226679 ], [ -79.340148898539567, 43.669710909034585 ], [ -79.336750465838037, 43.671993653178085 ], [ -79.329642914837663, 43.674959424343498 ], [ -79.325263036956557, 43.664397564059151 ], [ -79.326198113206971, 43.664222126197821 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200706", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 68, "HOOD": "North Riverdale", "FULLHOOD": "North Riverdale (68)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.341274284191272, 43.670285451590701 ], [ -79.340833863614264, 43.669162550730384 ], [ -79.342284751462572, 43.66772789226679 ], [ -79.352691238251708, 43.665561469440327 ], [ -79.356296965758773, 43.664515034945452 ], [ -79.35716096279198, 43.667765993255401 ], [ -79.357679952048329, 43.668932989693062 ], [ -79.359393989644516, 43.670196984925305 ], [ -79.360326024616384, 43.6718360155242 ], [ -79.360829977353916, 43.672291988276605 ], [ -79.362648958910739, 43.673132997293848 ], [ -79.362972012656783, 43.673426045283144 ], [ -79.362835951365213, 43.674620004447739 ], [ -79.363318024694237, 43.675303041667696 ], [ -79.3448817178665, 43.678936466449954 ], [ -79.341274284191272, 43.670285451590701 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200704", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 69, "HOOD": "Blake-Jones", "FULLHOOD": "Blake-Jones (69)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.329642914837663, 43.674959424343498 ], [ -79.336220437992822, 43.67227391331997 ], [ -79.338338650600122, 43.671035174971465 ], [ -79.340820751221813, 43.669133554240439 ], [ -79.3448817178665, 43.678936466449954 ], [ -79.332318930390073, 43.681463941207809 ], [ -79.329642914837663, 43.674959424343498 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200578", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 66, "HOOD": "Danforth Village - Toronto", "FULLHOOD": "Danforth Village - Toronto (66)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.315230685029007, 43.685174969916801 ], [ -79.332318930390073, 43.681463941207809 ], [ -79.3448817178665, 43.678936466449954 ], [ -79.346277278920823, 43.682791029969749 ], [ -79.340843728942275, 43.683860143566314 ], [ -79.33879669491364, 43.684202288337943 ], [ -79.338742690595936, 43.684068185259697 ], [ -79.314882186827646, 43.689209170176944 ], [ -79.313724303511023, 43.686408078227416 ], [ -79.313554185645813, 43.686165848141449 ], [ -79.312991245337585, 43.686242971080809 ], [ -79.312758956393736, 43.68571473193203 ], [ -79.315230685029007, 43.685174969916801 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200732", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 57, "HOOD": "Broadview North", "FULLHOOD": "Broadview North (57)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.347771287877833, 43.686658519435476 ], [ -79.346277278920823, 43.682791029969749 ], [ -79.347896884317137, 43.682325820456249 ], [ -79.348597698539066, 43.684195021744316 ], [ -79.357328308664378, 43.682429128181646 ], [ -79.357568239961935, 43.681614120163658 ], [ -79.362477245155006, 43.681754749086792 ], [ -79.361682499189911, 43.679577860105688 ], [ -79.364020702889519, 43.679250813609933 ], [ -79.364046960015031, 43.679123992046279 ], [ -79.366332031732625, 43.681023035156457 ], [ -79.36639201193519, 43.681452023831518 ], [ -79.366150989801895, 43.68181000719273 ], [ -79.364588023965737, 43.68277598282949 ], [ -79.363106973984287, 43.683346034835388 ], [ -79.361664009753866, 43.685050045243457 ], [ -79.361655973175871, 43.685842009034232 ], [ -79.362497991291193, 43.687490980575106 ], [ -79.362550988112133, 43.688239978916613 ], [ -79.361798975336825, 43.688701986865212 ], [ -79.361392978975502, 43.689156976888064 ], [ -79.359852020824988, 43.691529030195142 ], [ -79.359836980844662, 43.691822006666492 ], [ -79.361228028737514, 43.692830993519728 ], [ -79.361843972237295, 43.694123042512167 ], [ -79.359942982214761, 43.695364967826755 ], [ -79.358958021148325, 43.695588034716167 ], [ -79.357596987024905, 43.695241001827085 ], [ -79.356837979073489, 43.695500963219381 ], [ -79.3561540484245, 43.696429040073461 ], [ -79.355786026666166, 43.697341041901907 ], [ -79.354703968566525, 43.698247000028431 ], [ -79.353395976426071, 43.69833898298689 ], [ -79.352703998212604, 43.698637960087765 ], [ -79.351335967036107, 43.698762001310484 ], [ -79.350547003900431, 43.699402989115264 ], [ -79.349170113217653, 43.697177200930355 ], [ -79.349194240114272, 43.696961593703904 ], [ -79.350923880548649, 43.69546244269759 ], [ -79.350967605359273, 43.69496814870098 ], [ -79.347771287877833, 43.686658519435476 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200523", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 58, "HOOD": "Old East York", "FULLHOOD": "Old East York (58)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.3181661987213, 43.698228729496499 ], [ -79.317396755925074, 43.696452676643098 ], [ -79.341665957315143, 43.691189007627933 ], [ -79.342637159694789, 43.690617876459534 ], [ -79.348799766384047, 43.689419591371163 ], [ -79.350967605359273, 43.69496814870098 ], [ -79.350923880548649, 43.69546244269759 ], [ -79.349194240114272, 43.696961593703904 ], [ -79.349170113217653, 43.697177200930355 ], [ -79.350547003900431, 43.699402989115264 ], [ -79.350337029552279, 43.699772008003976 ], [ -79.349824965042302, 43.699924041880429 ], [ -79.348330022946129, 43.699912987128762 ], [ -79.34711894948498, 43.699034003363863 ], [ -79.34587900643308, 43.698517995622865 ], [ -79.345210043352807, 43.698317024789368 ], [ -79.344052965398859, 43.698349962050074 ], [ -79.343037980954335, 43.699039024850698 ], [ -79.341834991756727, 43.699266975443884 ], [ -79.341196028271128, 43.699593027122852 ], [ -79.339911036653817, 43.700456021491959 ], [ -79.339046953278157, 43.701307023098565 ], [ -79.337505988554341, 43.702083003557981 ], [ -79.336236006379778, 43.702972999977675 ], [ -79.335356030367691, 43.703152020998267 ], [ -79.333740027592086, 43.703001013492504 ], [ -79.33334895885595, 43.703119989409501 ], [ -79.333071004884886, 43.703407958379273 ], [ -79.332116214360497, 43.703121096088204 ], [ -79.331856396885001, 43.702625172172567 ], [ -79.331813110932458, 43.701949218832596 ], [ -79.331498044651823, 43.70167456449763 ], [ -79.330333943498616, 43.701585464587517 ], [ -79.32980869149857, 43.70173091467457 ], [ -79.327446008071732, 43.70145323335683 ], [ -79.326695814942255, 43.701661001916001 ], [ -79.327056129374839, 43.70127154204112 ], [ -79.3191599694281, 43.700878467710098 ], [ -79.3181661987213, 43.698228729496499 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200518", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 59, "HOOD": "Danforth Village - East York", "FULLHOOD": "Danforth Village - East York (59)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.315379873980206, 43.691813013644392 ], [ -79.312991245337585, 43.686242971080809 ], [ -79.313554185645813, 43.686165848141449 ], [ -79.313724303511023, 43.686408078227416 ], [ -79.314882186827646, 43.689209170176944 ], [ -79.338742690595936, 43.684068185259697 ], [ -79.33879669491364, 43.684202288337943 ], [ -79.340843728942275, 43.683860143566314 ], [ -79.346277278920823, 43.682791029969749 ], [ -79.348799766384047, 43.689419591371163 ], [ -79.342637159694789, 43.690617876459534 ], [ -79.341665957315143, 43.691189007627933 ], [ -79.317396755925074, 43.696452676643098 ], [ -79.315379873980206, 43.691813013644392 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200583", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 65, "HOOD": "Greenwood-Coxwell", "FULLHOOD": "Greenwood-Coxwell (65)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.316537851894338, 43.666385242160544 ], [ -79.31469106118297, 43.666781215782656 ], [ -79.315069356631682, 43.665864362714018 ], [ -79.318068820178581, 43.665089890173071 ], [ -79.31931582989867, 43.6640210633092 ], [ -79.319850778410753, 43.663795595354003 ], [ -79.329471164652929, 43.661586875257505 ], [ -79.330181487680889, 43.66325396994786 ], [ -79.325263036956557, 43.664397564059151 ], [ -79.332318930390073, 43.681463941207809 ], [ -79.323543873483544, 43.683379403185178 ], [ -79.316537851894338, 43.666385242160544 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200588", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 64, "HOOD": "Woodbine Corridor", "FULLHOOD": "Woodbine Corridor (64)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.309086489726809, 43.672902056391429 ], [ -79.310066543579183, 43.671990068275932 ], [ -79.31259430215853, 43.667245486028492 ], [ -79.316537851894338, 43.666385242160544 ], [ -79.323543873483544, 43.683379403185178 ], [ -79.312758956393736, 43.68571473193203 ], [ -79.30790401504602, 43.673928965513106 ], [ -79.309086489726809, 43.672902056391429 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202183", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 29, "HOOD": "Maple Leaf", "FULLHOOD": "Maple Leaf (29)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.470954739038632, 43.710513547394243 ], [ -79.476844352519095, 43.709191461989583 ], [ -79.479065912194628, 43.708280605848017 ], [ -79.480447147354809, 43.707935923904351 ], [ -79.487604611382935, 43.706377261589758 ], [ -79.488226244336118, 43.707817056469921 ], [ -79.489464609526152, 43.709904312570096 ], [ -79.491277250027053, 43.71690895077699 ], [ -79.492438297673544, 43.71994026042568 ], [ -79.472502003190527, 43.724786116030515 ], [ -79.469779463926301, 43.710768421379342 ], [ -79.470954739038632, 43.710513547394243 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201207", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 112, "HOOD": "Beechborough-Greenbrook", "FULLHOOD": "Beechborough-Greenbrook (112)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.466551674135403, 43.697742799191069 ], [ -79.465528275519276, 43.694062855597494 ], [ -79.464605380483292, 43.692176714888689 ], [ -79.465582483302157, 43.691923284537133 ], [ -79.468738005318173, 43.691606770741821 ], [ -79.486790133210278, 43.687473781963817 ], [ -79.49757388094983, 43.692849893835607 ], [ -79.493757314943025, 43.693771979776187 ], [ -79.483420143516781, 43.695917956817752 ], [ -79.467099093391155, 43.699702926174652 ], [ -79.466551674135403, 43.697742799191069 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201191", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 110, "HOOD": "Keelesdale-Eglinton West", "FULLHOOD": "Keelesdale-Eglinton West (110)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.461273209759625, 43.683224595071323 ], [ -79.460519845531934, 43.682050052889402 ], [ -79.464927860562625, 43.68101720146629 ], [ -79.46568322472767, 43.680782397086283 ], [ -79.465572693990296, 43.680567117604028 ], [ -79.466097441355245, 43.680268632294478 ], [ -79.470384597062747, 43.679244570610805 ], [ -79.470492941935447, 43.679554606790838 ], [ -79.472049260644496, 43.679369449953263 ], [ -79.476583141395267, 43.682361611053224 ], [ -79.486790133210278, 43.687473781963817 ], [ -79.468738005318173, 43.691606770741821 ], [ -79.465582483302157, 43.691923284537133 ], [ -79.464605380483292, 43.692176714888689 ], [ -79.462941037845184, 43.688958847507571 ], [ -79.461699529858862, 43.684134126405958 ], [ -79.461273209759625, 43.683224595071323 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202212", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 108, "HOOD": "Briar Hill-Belgravia", "FULLHOOD": "Briar Hill-Belgravia (108)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.439009988122649, 43.702682852642695 ], [ -79.438949195615436, 43.701921181219376 ], [ -79.440751573953094, 43.701571205760587 ], [ -79.439356520907879, 43.698028103114382 ], [ -79.463027532836932, 43.692858746628467 ], [ -79.464605380483292, 43.692176714888689 ], [ -79.465528275519276, 43.694062855597494 ], [ -79.467099093391155, 43.699702926174652 ], [ -79.442176299024183, 43.705199851822442 ], [ -79.439386611675431, 43.705655292626766 ], [ -79.439009988122649, 43.702682852642695 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202137", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 31, "HOOD": "Yorkdale-Glen Park", "FULLHOOD": "Yorkdale-Glen Park (31)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.440109873633375, 43.707848124076875 ], [ -79.438823504768948, 43.705966812671271 ], [ -79.439386611675431, 43.705655292626766 ], [ -79.442176299024183, 43.705199851822442 ], [ -79.467099093391155, 43.699702926174652 ], [ -79.46869043296924, 43.7053599886558 ], [ -79.472502003190527, 43.724786116030515 ], [ -79.448821751014677, 43.729893896056389 ], [ -79.448133580283681, 43.726680340657573 ], [ -79.44738334403246, 43.724343079809124 ], [ -79.442809308429219, 43.712479130170252 ], [ -79.440109873633375, 43.707848124076875 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202259", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 102, "HOOD": "Forest Hill North", "FULLHOOD": "Forest Hill North (102)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.417027592964644, 43.702783273500629 ], [ -79.439356520907879, 43.698028103114382 ], [ -79.440751573953094, 43.701571205760587 ], [ -79.438949195615436, 43.701921181219376 ], [ -79.439390996978304, 43.705683528446336 ], [ -79.438823504768948, 43.705966812671271 ], [ -79.436955316661212, 43.706216656648827 ], [ -79.424250193474762, 43.709104437516991 ], [ -79.417607119695376, 43.710399611197914 ], [ -79.416112961118941, 43.707353564739442 ], [ -79.41707403747948, 43.707150739141944 ], [ -79.415941882637327, 43.703011377959236 ], [ -79.417027592964644, 43.702783273500629 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202131", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 32, "HOOD": "Englemount-Lawrence", "FULLHOOD": "Englemount-Lawrence (32)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.427233712987075, 43.708785711682694 ], [ -79.42714775923173, 43.708471533271705 ], [ -79.436955316661212, 43.706216656648827 ], [ -79.438823504768948, 43.705966812671271 ], [ -79.441209819201177, 43.709575827174476 ], [ -79.442809308429219, 43.712479130170252 ], [ -79.448133580283681, 43.726680340657573 ], [ -79.448821751014677, 43.729893896056389 ], [ -79.442898795721874, 43.731230548219223 ], [ -79.441082093782128, 43.731865988718226 ], [ -79.439107605083578, 43.732736625332784 ], [ -79.433656445233254, 43.736037051797034 ], [ -79.427233712987075, 43.708785711682694 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202123", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 39, "HOOD": "Bedford Park-Nortown", "FULLHOOD": "Bedford Park-Nortown (39)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.406263582023058, 43.742024228313213 ], [ -79.404880337349709, 43.73590303370672 ], [ -79.416349964450035, 43.733504965530749 ], [ -79.417027760781565, 43.733199737110688 ], [ -79.41568553405213, 43.727394836840794 ], [ -79.414681008399029, 43.724945096314627 ], [ -79.413731860292174, 43.718907245674309 ], [ -79.414566433540244, 43.718524359318849 ], [ -79.414519654720095, 43.718306675263293 ], [ -79.41550157335908, 43.718337751349502 ], [ -79.416928509014198, 43.717975118090983 ], [ -79.418553394317328, 43.717912807448563 ], [ -79.421980808359393, 43.716958974699047 ], [ -79.420729510434242, 43.71308114779189 ], [ -79.419477212009085, 43.710011211194569 ], [ -79.421290941674243, 43.709741547454101 ], [ -79.42714775923173, 43.708471533271705 ], [ -79.433656445233254, 43.736037051797034 ], [ -79.423029418528074, 43.742497964911472 ], [ -79.41779895669454, 43.745933178203785 ], [ -79.414138283667143, 43.749847138316603 ], [ -79.408326166010113, 43.753504105570059 ], [ -79.408068178986881, 43.752466744533621 ], [ -79.40808285799568, 43.750141688214953 ], [ -79.406263582023058, 43.742024228313213 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202325", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 103, "HOOD": "Lawrence Park South", "FULLHOOD": "Lawrence Park South (103)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.388979232123205, 43.721308240235665 ], [ -79.388380839335355, 43.719084895560265 ], [ -79.400414151289169, 43.716606883656979 ], [ -79.399785136452493, 43.71365383536812 ], [ -79.411443630677539, 43.711205418207157 ], [ -79.410371345426896, 43.708570333516498 ], [ -79.409628804285433, 43.705776710535716 ], [ -79.408831308223895, 43.705196244441318 ], [ -79.408453245228017, 43.704600007566697 ], [ -79.415941882637327, 43.703011377959236 ], [ -79.41707403747948, 43.707150739141944 ], [ -79.416112961118941, 43.707353564739442 ], [ -79.417607119695376, 43.710399611197914 ], [ -79.419477212009085, 43.710011211194569 ], [ -79.420729510434242, 43.71308114779189 ], [ -79.421980808359393, 43.716958974699047 ], [ -79.418553394317328, 43.717912807448563 ], [ -79.416928509014198, 43.717975118090983 ], [ -79.41550157335908, 43.718337751349502 ], [ -79.414519654720095, 43.718306675263293 ], [ -79.414566433540244, 43.718524359318849 ], [ -79.413731860292174, 43.718907245674309 ], [ -79.414297870931321, 43.722526740794237 ], [ -79.39021430303211, 43.72764188778973 ], [ -79.389682327756503, 43.725649034859309 ], [ -79.389603329162398, 43.724588312367089 ], [ -79.389250653387577, 43.723689098542472 ], [ -79.388979232123205, 43.721308240235665 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202329", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 100, "HOOD": "Yonge-Eglinton", "FULLHOOD": "Yonge-Eglinton (100)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.397296292518874, 43.701778962233185 ], [ -79.396026081300278, 43.695551003720382 ], [ -79.39902982068709, 43.696380140489858 ], [ -79.400006694615215, 43.696344664654816 ], [ -79.404283166516649, 43.697581879765536 ], [ -79.409031936704395, 43.699258679648516 ], [ -79.410887106488175, 43.704084655589952 ], [ -79.408453245228017, 43.704600007566697 ], [ -79.408831308223895, 43.705196244441318 ], [ -79.409628804285433, 43.705776710535716 ], [ -79.410371345426896, 43.708570333516498 ], [ -79.411443630677539, 43.711205418207157 ], [ -79.399785136452493, 43.71365383536812 ], [ -79.397296292518874, 43.701778962233185 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202655", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 104, "HOOD": "Mount Pleasant West", "FULLHOOD": "Mount Pleasant West (104)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.386433846887797, 43.698195641819289 ], [ -79.386219676264517, 43.697652954752094 ], [ -79.396026081300278, 43.695551003720382 ], [ -79.39951042588099, 43.712317440799708 ], [ -79.392172085542384, 43.713799079788721 ], [ -79.386921959148495, 43.700354434766652 ], [ -79.386433846887797, 43.698195641819289 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202344", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 105, "HOOD": "Lawrence Park North", "FULLHOOD": "Lawrence Park North (105)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.390882155425913, 43.729987722680477 ], [ -79.390358823303401, 43.72870713259811 ], [ -79.39021430303211, 43.72764188778973 ], [ -79.414297870931321, 43.722526740794237 ], [ -79.414681008399029, 43.724945096314627 ], [ -79.41568553405213, 43.727394836840794 ], [ -79.417027760781565, 43.733199737110688 ], [ -79.416349964450035, 43.733504965530749 ], [ -79.404880337349709, 43.73590303370672 ], [ -79.404576298630928, 43.734417896154561 ], [ -79.404184850850044, 43.734355721237094 ], [ -79.392820225983897, 43.736804633178963 ], [ -79.390494544890146, 43.730059232478482 ], [ -79.390882155425913, 43.729987722680477 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202647", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 99, "HOOD": "Mount Pleasant East", "FULLHOOD": "Mount Pleasant East (99)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.373291430252038, 43.700962571842396 ], [ -79.371704883714429, 43.696762204512765 ], [ -79.379386537206386, 43.69524047141504 ], [ -79.388685578155048, 43.693179756981678 ], [ -79.388534171078476, 43.692727257314459 ], [ -79.38890902793716, 43.692653053183122 ], [ -79.388625569051698, 43.691892807669021 ], [ -79.391547342167527, 43.691190570323329 ], [ -79.391440345895745, 43.691112728787978 ], [ -79.392127771648362, 43.690839647836867 ], [ -79.392588320651598, 43.69149903266328 ], [ -79.391947055651016, 43.692135452799732 ], [ -79.392435615791754, 43.692389785796188 ], [ -79.393289847060728, 43.692453914408581 ], [ -79.395297274970346, 43.692003564828973 ], [ -79.396026081300278, 43.695551003720382 ], [ -79.386219676264517, 43.697652954752094 ], [ -79.386921959148495, 43.700354434766652 ], [ -79.392172085542384, 43.713799079788721 ], [ -79.39951042588099, 43.712317440799708 ], [ -79.400414151289169, 43.716606883656979 ], [ -79.388380839335355, 43.719084895560265 ], [ -79.385911596028663, 43.711341751088881 ], [ -79.381863865668834, 43.712017108032072 ], [ -79.377430659846183, 43.713140546205558 ], [ -79.376903473927442, 43.710363903488584 ], [ -79.373291430252038, 43.700962571842396 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202018", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 24, "HOOD": "Black Creek", "FULLHOOD": "Black Creek (24)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.507862022205998, 43.759293493721991 ], [ -79.516506782471694, 43.757381925368435 ], [ -79.5202160602568, 43.756920489374949 ], [ -79.530612584223107, 43.754447461481327 ], [ -79.534934859297479, 43.772662134856489 ], [ -79.521687742744191, 43.775441961557746 ], [ -79.521688891419714, 43.775282914463133 ], [ -79.52045770837158, 43.774461686844646 ], [ -79.519825498483414, 43.774399492962829 ], [ -79.519102690375149, 43.773984961552188 ], [ -79.518626144492288, 43.774158914247494 ], [ -79.518522829928528, 43.773815416796936 ], [ -79.518862406890349, 43.773648692018831 ], [ -79.518822273911624, 43.773261004238158 ], [ -79.518539039322633, 43.773158314648875 ], [ -79.518520244956278, 43.772915022224247 ], [ -79.518137112201003, 43.772828950745385 ], [ -79.51831525476895, 43.77266022510657 ], [ -79.517891209436982, 43.772222551930028 ], [ -79.517603316952744, 43.772308837680391 ], [ -79.517016640536426, 43.771914061559386 ], [ -79.516954519369392, 43.771409064250079 ], [ -79.516617452103176, 43.77097251446741 ], [ -79.51685566308079, 43.770885586707536 ], [ -79.516701576535354, 43.77058643787575 ], [ -79.515945008459724, 43.770027419269198 ], [ -79.515637129721568, 43.769915310730795 ], [ -79.515298455242132, 43.770046030498023 ], [ -79.515002029113319, 43.769474886374063 ], [ -79.514765823886748, 43.769480820008127 ], [ -79.514179263947312, 43.77008550224776 ], [ -79.513730521805869, 43.770142682370199 ], [ -79.512431484140507, 43.769918656288176 ], [ -79.512139897997244, 43.769653719460045 ], [ -79.512308895215611, 43.769349856867116 ], [ -79.512054148173831, 43.769103402775102 ], [ -79.511828999641239, 43.76916348512492 ], [ -79.511675163277872, 43.768855420919998 ], [ -79.511229330058626, 43.768795515478082 ], [ -79.511328554879753, 43.768301617569541 ], [ -79.511032740826309, 43.768207747348853 ], [ -79.511025720990062, 43.768486802260689 ], [ -79.510779582950036, 43.768393488299971 ], [ -79.510750110621458, 43.7680780408228 ], [ -79.510977712134874, 43.767918882525287 ], [ -79.510505195910326, 43.767435541318854 ], [ -79.510203258968446, 43.767584638254917 ], [ -79.509971971881015, 43.767392586081733 ], [ -79.510323581632576, 43.767244136967513 ], [ -79.510365104453953, 43.767073553410782 ], [ -79.509865813384451, 43.76716615707857 ], [ -79.509937480097904, 43.766779922902941 ], [ -79.509777633937489, 43.766714736809533 ], [ -79.509338279783435, 43.766898137574415 ], [ -79.509252784515965, 43.766338730051103 ], [ -79.508955764205993, 43.766289847804579 ], [ -79.509046066804416, 43.766155998142516 ], [ -79.509430606216398, 43.76617901573001 ], [ -79.509336620923989, 43.765961746717522 ], [ -79.508658297215248, 43.765763772498431 ], [ -79.507408627520803, 43.765054144877006 ], [ -79.507082177854286, 43.764194529587414 ], [ -79.507257549819599, 43.763638616388796 ], [ -79.507381003324213, 43.763667233616992 ], [ -79.507340055219927, 43.763315537907154 ], [ -79.507541072839899, 43.763228143862328 ], [ -79.507973251280831, 43.763332804610201 ], [ -79.508412804253922, 43.763140499749888 ], [ -79.508432003305245, 43.762870605477936 ], [ -79.508125290580978, 43.762713572725751 ], [ -79.50863939586128, 43.762522149722656 ], [ -79.508682481215132, 43.762288664269605 ], [ -79.508214821370615, 43.762111438627123 ], [ -79.508221524635985, 43.761841471321176 ], [ -79.507930219126678, 43.761567525295114 ], [ -79.507266564479849, 43.761774996372395 ], [ -79.50753366308868, 43.76152634216141 ], [ -79.50733869929401, 43.760875485446917 ], [ -79.506916592262144, 43.760860972072443 ], [ -79.506648614556795, 43.760650430192733 ], [ -79.506022468399294, 43.760849292142666 ], [ -79.505908096095908, 43.760451627179712 ], [ -79.505567664544884, 43.760654309993392 ], [ -79.505121103355563, 43.760630468518436 ], [ -79.504841211039903, 43.760392671117053 ], [ -79.504795098896437, 43.759981584746733 ], [ -79.507862022205998, 43.759293493721991 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201968", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 25, "HOOD": "Glenfield-Jane Heights", "FULLHOOD": "Glenfield-Jane Heights (25)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.502977584909559, 43.734563578971247 ], [ -79.503212587199911, 43.734530558136562 ], [ -79.50330531857422, 43.734297633323273 ], [ -79.503771629605296, 43.734519871494392 ], [ -79.505952562799067, 43.734701422637968 ], [ -79.508871724253098, 43.733659125317992 ], [ -79.51035715631663, 43.733345328539002 ], [ -79.510962581878601, 43.732966134041867 ], [ -79.51145457220484, 43.732850744882668 ], [ -79.51312548770079, 43.739395963110184 ], [ -79.526307673225205, 43.736368803710377 ], [ -79.530612584223107, 43.754447461481327 ], [ -79.5202160602568, 43.756920489374949 ], [ -79.516506782471694, 43.757381925368435 ], [ -79.504795098896437, 43.759981584746733 ], [ -79.504315190533404, 43.759071254030033 ], [ -79.504674278589007, 43.758616767659881 ], [ -79.504218375908522, 43.758466774870811 ], [ -79.504449316919107, 43.758172645537734 ], [ -79.50421831025875, 43.757971493297831 ], [ -79.504732832116431, 43.75776217949997 ], [ -79.504648803583166, 43.75764405672475 ], [ -79.5049804124302, 43.757297231856541 ], [ -79.505328392885403, 43.757292779673882 ], [ -79.505656639057761, 43.757080936343641 ], [ -79.506065105244346, 43.757140375295421 ], [ -79.506191334001755, 43.757060918078189 ], [ -79.506073385313172, 43.756807325658578 ], [ -79.506697152334098, 43.756698360486943 ], [ -79.506526956521213, 43.756552108113127 ], [ -79.506067037565487, 43.7565641032038 ], [ -79.506060016440628, 43.756347967459533 ], [ -79.506632546961029, 43.756301435989101 ], [ -79.506789815109414, 43.755970332157133 ], [ -79.507256661383707, 43.755679277701162 ], [ -79.507799068534865, 43.754849007342727 ], [ -79.507979442673701, 43.754086025145412 ], [ -79.509664805367478, 43.753747932592091 ], [ -79.509319415169742, 43.75314912856696 ], [ -79.509783547278758, 43.752966140310711 ], [ -79.509943243145841, 43.752536043326153 ], [ -79.509637245249195, 43.751352543815834 ], [ -79.509148459522763, 43.751031016920727 ], [ -79.507301257169644, 43.750889891699096 ], [ -79.507318342008318, 43.75070098604639 ], [ -79.507530263045751, 43.750667745189887 ], [ -79.50733555258337, 43.750007978789519 ], [ -79.506813365327545, 43.750009442025636 ], [ -79.506510795631243, 43.749709059172872 ], [ -79.505617285423895, 43.749679380550184 ], [ -79.50369434627477, 43.748591742492117 ], [ -79.503578442321, 43.748257067021576 ], [ -79.502287540454901, 43.747726968637998 ], [ -79.502135601427383, 43.747346810352383 ], [ -79.501608845557115, 43.747051758909251 ], [ -79.500438810888866, 43.74665825133286 ], [ -79.499657948986879, 43.746593996079966 ], [ -79.498070309459848, 43.746014946179358 ], [ -79.498053751828238, 43.7456815699937 ], [ -79.497757395227538, 43.745614663513329 ], [ -79.497894715116175, 43.74409479377757 ], [ -79.497651618377944, 43.743884556991702 ], [ -79.49793218656086, 43.743591091968746 ], [ -79.497748659108694, 43.743480658405694 ], [ -79.497336243490452, 43.743583261161767 ], [ -79.49719673339844, 43.743203259420859 ], [ -79.497364605187414, 43.742944321858985 ], [ -79.496833725902263, 43.742325127009018 ], [ -79.497117876558306, 43.741392488812004 ], [ -79.496073634100952, 43.740937576539615 ], [ -79.495976806277014, 43.740341999846422 ], [ -79.495687582944157, 43.739987032146409 ], [ -79.495440682212532, 43.739929772179849 ], [ -79.495363003754903, 43.739559583503301 ], [ -79.494828564844028, 43.739579554625593 ], [ -79.494723534143716, 43.739308115942947 ], [ -79.494295159653589, 43.73905933495994 ], [ -79.494065172138107, 43.738326974791214 ], [ -79.494274136073372, 43.737915551060027 ], [ -79.494027245237987, 43.737858288160197 ], [ -79.494182275533078, 43.737617279653279 ], [ -79.494480718808319, 43.737603206120141 ], [ -79.494366471730928, 43.736710336727832 ], [ -79.494698921318047, 43.736327543784462 ], [ -79.494578809183437, 43.736163838685997 ], [ -79.495421787718485, 43.735724751404632 ], [ -79.494922517902395, 43.735331009758568 ], [ -79.495567799831036, 43.735348504165053 ], [ -79.496113557744565, 43.734878494826312 ], [ -79.497372699355523, 43.734679004900784 ], [ -79.49781331970388, 43.73493693726585 ], [ -79.497882996581964, 43.734631699023318 ], [ -79.498221278805232, 43.734510116614082 ], [ -79.498698714791416, 43.734786442863424 ], [ -79.499289717851639, 43.734488137967567 ], [ -79.500713185782345, 43.734173653457113 ], [ -79.501191201268981, 43.734422971236377 ], [ -79.501110276952616, 43.734683054723227 ], [ -79.501390159136719, 43.734911860328765 ], [ -79.502232455752875, 43.734994912224892 ], [ -79.502431430983435, 43.734484321788806 ], [ -79.502977584909559, 43.734563578971247 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35201994", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 27, "HOOD": "York University Heights", "FULLHOOD": "York University Heights (27)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.491807683930645, 43.743663498197208 ], [ -79.496918795146229, 43.742518975232002 ], [ -79.497364605187414, 43.742944321858985 ], [ -79.49719673339844, 43.743203259420859 ], [ -79.497336243490452, 43.743583261161767 ], [ -79.497748659108694, 43.743480658405694 ], [ -79.49793218656086, 43.743591091968746 ], [ -79.497651618377944, 43.743884556991702 ], [ -79.497894715116175, 43.74409479377757 ], [ -79.497757395227538, 43.745614663513329 ], [ -79.498053751828238, 43.7456815699937 ], [ -79.498070309459848, 43.746014946179358 ], [ -79.499657948986879, 43.746593996079966 ], [ -79.500438810888866, 43.74665825133286 ], [ -79.501608845557115, 43.747051758909251 ], [ -79.502135601427383, 43.747346810352383 ], [ -79.502287540454901, 43.747726968637998 ], [ -79.503578442321, 43.748257067021576 ], [ -79.50369434627477, 43.748591742492117 ], [ -79.505617285423895, 43.749679380550184 ], [ -79.506510795631243, 43.749709059172872 ], [ -79.506813365327545, 43.750009442025636 ], [ -79.50733555258337, 43.750007978789519 ], [ -79.507530263045751, 43.750667745189887 ], [ -79.507318342008318, 43.75070098604639 ], [ -79.507301257169644, 43.750889891699096 ], [ -79.508170798976423, 43.750883237035772 ], [ -79.509541495681219, 43.751207266202698 ], [ -79.509953731434905, 43.752113003500334 ], [ -79.509783547278758, 43.752966140310711 ], [ -79.509319415169742, 43.75314912856696 ], [ -79.509664805367478, 43.753747932592091 ], [ -79.507979442673701, 43.754086025145412 ], [ -79.507799068534865, 43.754849007342727 ], [ -79.507256661383707, 43.755679277701162 ], [ -79.506789815109414, 43.755970332157133 ], [ -79.506632546961029, 43.756301435989101 ], [ -79.506060016440628, 43.756347967459533 ], [ -79.506067037565487, 43.7565641032038 ], [ -79.506526956521213, 43.756552108113127 ], [ -79.506697152334098, 43.756698360486943 ], [ -79.506073385313172, 43.756807325658578 ], [ -79.506191334001755, 43.757060918078189 ], [ -79.506065105244346, 43.757140375295421 ], [ -79.505656639057761, 43.757080936343641 ], [ -79.505328392885403, 43.757292779673882 ], [ -79.5049804124302, 43.757297231856541 ], [ -79.504648803583166, 43.75764405672475 ], [ -79.504732832116431, 43.75776217949997 ], [ -79.50421831025875, 43.757971493297831 ], [ -79.504449316919107, 43.758172645537734 ], [ -79.504218375908522, 43.758466774870811 ], [ -79.504674278589007, 43.758616767659881 ], [ -79.504315190533404, 43.759071254030033 ], [ -79.504639263847452, 43.759525674504701 ], [ -79.504841211039903, 43.760392671117053 ], [ -79.505121103355563, 43.760630468518436 ], [ -79.505567664544884, 43.760654309993392 ], [ -79.505908096095908, 43.760451627179712 ], [ -79.506022468399294, 43.760849292142666 ], [ -79.506648614556795, 43.760650430192733 ], [ -79.506916592262144, 43.760860972072443 ], [ -79.50733869929401, 43.760875485446917 ], [ -79.50753366308868, 43.76152634216141 ], [ -79.507266564479849, 43.761774996372395 ], [ -79.507930219126678, 43.761567525295114 ], [ -79.508221524635985, 43.761841471321176 ], [ -79.508214821370615, 43.762111438627123 ], [ -79.508682481215132, 43.762288664269605 ], [ -79.50863939586128, 43.762522149722656 ], [ -79.508125290580978, 43.762713572725751 ], [ -79.508432003305245, 43.762870605477936 ], [ -79.508412804253922, 43.763140499749888 ], [ -79.507973251280831, 43.763332804610201 ], [ -79.507541072839899, 43.763228143862328 ], [ -79.507340055219927, 43.763315537907154 ], [ -79.507381003324213, 43.763667233616992 ], [ -79.507257549819599, 43.763638616388796 ], [ -79.507082177854286, 43.764194529587414 ], [ -79.507408627520803, 43.765054144877006 ], [ -79.508658297215248, 43.765763772498431 ], [ -79.509336620923989, 43.765961746717522 ], [ -79.509430606216398, 43.76617901573001 ], [ -79.509046066804416, 43.766155998142516 ], [ -79.508955764205993, 43.766289847804579 ], [ -79.509252784515965, 43.766338730051103 ], [ -79.509338279783435, 43.766898137574415 ], [ -79.509777633937489, 43.766714736809533 ], [ -79.509937480097904, 43.766779922902941 ], [ -79.509865813384451, 43.76716615707857 ], [ -79.510365104453953, 43.767073553410782 ], [ -79.510323581632576, 43.767244136967513 ], [ -79.509971971881015, 43.767392586081733 ], [ -79.510203258968446, 43.767584638254917 ], [ -79.510505195910326, 43.767435541318854 ], [ -79.510977712134874, 43.767918882525287 ], [ -79.510750110621458, 43.7680780408228 ], [ -79.510779582950036, 43.768393488299971 ], [ -79.511025720990062, 43.768486802260689 ], [ -79.511032740826309, 43.768207747348853 ], [ -79.511328554879753, 43.768301617569541 ], [ -79.511229330058626, 43.768795515478082 ], [ -79.511675163277872, 43.768855420919998 ], [ -79.511828999641239, 43.76916348512492 ], [ -79.512054148173831, 43.769103402775102 ], [ -79.512308895215611, 43.769349856867116 ], [ -79.512143910434887, 43.769491739006575 ], [ -79.512235679903853, 43.769799084931805 ], [ -79.512579173522994, 43.769974588658954 ], [ -79.513730521805869, 43.770142682370199 ], [ -79.514179263947312, 43.77008550224776 ], [ -79.514865619263958, 43.769464112725963 ], [ -79.515298455242132, 43.770046030498023 ], [ -79.515637129721568, 43.769915310730795 ], [ -79.516055743870581, 43.770073865657217 ], [ -79.516701576535354, 43.77058643787575 ], [ -79.51685566308079, 43.770885586707536 ], [ -79.516617452103176, 43.77097251446741 ], [ -79.516954519369392, 43.771409064250079 ], [ -79.517016640536426, 43.771914061559386 ], [ -79.517603316952744, 43.772308837680391 ], [ -79.517891209436982, 43.772222551930028 ], [ -79.51831525476895, 43.77266022510657 ], [ -79.518137112201003, 43.772828950745385 ], [ -79.518520244956278, 43.772915022224247 ], [ -79.518539039322633, 43.773158314648875 ], [ -79.518822273911624, 43.773261004238158 ], [ -79.518862406890349, 43.773648692018831 ], [ -79.518522829928528, 43.773815416796936 ], [ -79.518564961336963, 43.774122024238522 ], [ -79.519102690375149, 43.773984961552188 ], [ -79.519825498483414, 43.774399492962829 ], [ -79.52045770837158, 43.774461686844646 ], [ -79.521688891419714, 43.775282914463133 ], [ -79.521687742744191, 43.775441961557746 ], [ -79.515814789263729, 43.776636118073725 ], [ -79.501513137865814, 43.77988258318981 ], [ -79.470086860496323, 43.787271539053215 ], [ -79.470076211096824, 43.782112113627463 ], [ -79.466872917354934, 43.768874096384792 ], [ -79.46281091532515, 43.750363029940921 ], [ -79.464425106987449, 43.750134470597906 ], [ -79.465402943486566, 43.750378946921863 ], [ -79.46898281544911, 43.753632674356652 ], [ -79.469610732709967, 43.754037791862885 ], [ -79.4726859739053, 43.755311355254022 ], [ -79.474758347574209, 43.755514106464148 ], [ -79.47868940481824, 43.754699965546827 ], [ -79.481583776202925, 43.75387345600867 ], [ -79.482042504623976, 43.753595719607667 ], [ -79.482683442460527, 43.752843572481829 ], [ -79.482847020258234, 43.75187786591777 ], [ -79.482667366370706, 43.747256725538008 ], [ -79.482877468281629, 43.746520551679012 ], [ -79.483403297059041, 43.745789015925887 ], [ -79.484512957841019, 43.745147584854138 ], [ -79.486940690860663, 43.744748820075749 ], [ -79.491807683930645, 43.743663498197208 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202099", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 34, "HOOD": "Bathurst Manor", "FULLHOOD": "Bathurst Manor (34)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.43839013992293, 43.755479713186716 ], [ -79.439016566147558, 43.75544604932027 ], [ -79.46281091532515, 43.750363029940921 ], [ -79.466872917354934, 43.768874096384792 ], [ -79.470076211096824, 43.782112113627463 ], [ -79.470086860496323, 43.787271539053215 ], [ -79.466847702516105, 43.787952699463375 ], [ -79.466710322156771, 43.787348727991414 ], [ -79.466323057523852, 43.786938363313446 ], [ -79.465941165433478, 43.786807214622598 ], [ -79.466234259759645, 43.786523000103614 ], [ -79.466139505208645, 43.785855506978692 ], [ -79.466623084872396, 43.785411814840771 ], [ -79.46709930402254, 43.785256078996795 ], [ -79.467206593212339, 43.78495145686697 ], [ -79.468487537590306, 43.784914613025443 ], [ -79.468204805430318, 43.784307525563854 ], [ -79.467689248771208, 43.784057568476406 ], [ -79.467069858416849, 43.783977160753516 ], [ -79.46637208153733, 43.784048818539304 ], [ -79.465930631015183, 43.784304037570365 ], [ -79.463340128404781, 43.784035111149521 ], [ -79.462879861756392, 43.783083556231006 ], [ -79.462402680004118, 43.782788992272835 ], [ -79.462191034961151, 43.782317962674732 ], [ -79.460946074839057, 43.781436858078095 ], [ -79.46055028628335, 43.780882330156416 ], [ -79.459241967694481, 43.780531549257795 ], [ -79.458406329102317, 43.78113249593811 ], [ -79.457972959231427, 43.781072640695847 ], [ -79.457768433476204, 43.780808739977999 ], [ -79.457780313984756, 43.779863532371934 ], [ -79.457335483798033, 43.77976751295445 ], [ -79.457093310141147, 43.779034919848698 ], [ -79.456639228342311, 43.778812747785359 ], [ -79.456749567043744, 43.7783910630666 ], [ -79.457423785373464, 43.778265045294795 ], [ -79.457555899191547, 43.777960766877364 ], [ -79.457998492482673, 43.777660586383739 ], [ -79.458032167817194, 43.777318882426215 ], [ -79.458493719290857, 43.77676690543322 ], [ -79.459511232259629, 43.776339442532759 ], [ -79.461032380609495, 43.776134884296113 ], [ -79.460481717705179, 43.775803315701225 ], [ -79.46106857672406, 43.775694103489315 ], [ -79.461259109693316, 43.775048448677254 ], [ -79.462356621805057, 43.774892180902306 ], [ -79.462992399522633, 43.774324434959155 ], [ -79.465625311397389, 43.773891617959656 ], [ -79.465571977193818, 43.773548833742311 ], [ -79.465217030828086, 43.773336937871974 ], [ -79.465207297687584, 43.773164512740543 ], [ -79.466434913080917, 43.772750610278905 ], [ -79.46595489830132, 43.772176336738958 ], [ -79.465416046964208, 43.771872045643271 ], [ -79.464127259406609, 43.77173762582693 ], [ -79.462017697285987, 43.772114437512421 ], [ -79.460789237712618, 43.772052896018835 ], [ -79.460301768684303, 43.772163355469779 ], [ -79.459539818057152, 43.771837938248296 ], [ -79.45869822812935, 43.771709571964486 ], [ -79.45808798858873, 43.771278168626161 ], [ -79.456314903800447, 43.7721005908043 ], [ -79.455961027219615, 43.771852673410571 ], [ -79.456040218041366, 43.771187519556115 ], [ -79.455446203857008, 43.770612202353313 ], [ -79.455552834405339, 43.769848309551755 ], [ -79.455219236181279, 43.769294602372142 ], [ -79.454680717196439, 43.769458358927153 ], [ -79.452577026198654, 43.769564391530338 ], [ -79.452307897826543, 43.768967079531727 ], [ -79.451776565027444, 43.768851863735605 ], [ -79.450891345482646, 43.769452085258735 ], [ -79.45054293313035, 43.769474369191386 ], [ -79.4504090052192, 43.768887346713498 ], [ -79.449960368283314, 43.76845809012287 ], [ -79.449377048879427, 43.768432176369465 ], [ -79.447864034549539, 43.767844351388625 ], [ -79.447029277318507, 43.767454849517122 ], [ -79.446955822933234, 43.766931656926978 ], [ -79.445830792779958, 43.766718238882056 ], [ -79.446037393348419, 43.766414985810066 ], [ -79.445471807779185, 43.764750603956351 ], [ -79.44510001882314, 43.764232354857107 ], [ -79.444595261575586, 43.764054364380023 ], [ -79.443522029335682, 43.763283425960331 ], [ -79.443023786807601, 43.762376280412731 ], [ -79.442166797245847, 43.761410233926021 ], [ -79.441288587384477, 43.761263146733093 ], [ -79.440323444739789, 43.761592143028579 ], [ -79.440202365820454, 43.761473467599629 ], [ -79.439651954955778, 43.761618987670836 ], [ -79.438983869548011, 43.761510847650413 ], [ -79.438606178287984, 43.761226543801939 ], [ -79.438454613280285, 43.760846307534734 ], [ -79.437861323255987, 43.760730180710041 ], [ -79.437728693639727, 43.760575337565996 ], [ -79.437692838389509, 43.760043560491518 ], [ -79.438077782879461, 43.759571633964583 ], [ -79.437928096772538, 43.759119408041798 ], [ -79.437471896513514, 43.758987148551064 ], [ -79.436586005005381, 43.759137070178085 ], [ -79.435407641298298, 43.759066939158465 ], [ -79.43481628885803, 43.758401532177352 ], [ -79.434485250446386, 43.758234966937145 ], [ -79.433667619563039, 43.758151753402167 ], [ -79.433647475639802, 43.757494164692382 ], [ -79.433244482837281, 43.757227499978285 ], [ -79.432362598990949, 43.757224412922319 ], [ -79.430526566947592, 43.757604394542874 ], [ -79.430000937927289, 43.757256728782146 ], [ -79.43839013992293, 43.755479713186716 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202527", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 35, "HOOD": "Westminster-Branson", "FULLHOOD": "Westminster-Branson (35)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.442110884824828, 43.770392105541951 ], [ -79.439908077734756, 43.76155127863926 ], [ -79.440202365820454, 43.761473467599629 ], [ -79.440323444739789, 43.761592143028579 ], [ -79.441288587384477, 43.761263146733093 ], [ -79.442166797245847, 43.761410233926021 ], [ -79.443023786807601, 43.762376280412731 ], [ -79.443522029335682, 43.763283425960331 ], [ -79.444595261575586, 43.764054364380023 ], [ -79.44510001882314, 43.764232354857107 ], [ -79.445471807779185, 43.764750603956351 ], [ -79.446037393348419, 43.766414985810066 ], [ -79.445830792779958, 43.766718238882056 ], [ -79.446955822933234, 43.766931656926978 ], [ -79.447029277318507, 43.767454849517122 ], [ -79.447864034549539, 43.767844351388625 ], [ -79.449377048879427, 43.768432176369465 ], [ -79.449960368283314, 43.76845809012287 ], [ -79.4504090052192, 43.768887346713498 ], [ -79.45054293313035, 43.769474369191386 ], [ -79.450891345482646, 43.769452085258735 ], [ -79.451776565027444, 43.768851863735605 ], [ -79.452307897826543, 43.768967079531727 ], [ -79.452577026198654, 43.769564391530338 ], [ -79.454680717196439, 43.769458358927153 ], [ -79.455219236181279, 43.769294602372142 ], [ -79.455552834405339, 43.769848309551755 ], [ -79.455446203857008, 43.770612202353313 ], [ -79.456040218041366, 43.771187519556115 ], [ -79.455961027219615, 43.771852673410571 ], [ -79.456314903800447, 43.7721005908043 ], [ -79.45808798858873, 43.771278168626161 ], [ -79.45869822812935, 43.771709571964486 ], [ -79.459539818057152, 43.771837938248296 ], [ -79.460301768684303, 43.772163355469779 ], [ -79.460789237712618, 43.772052896018835 ], [ -79.462017697285987, 43.772114437512421 ], [ -79.464127259406609, 43.77173762582693 ], [ -79.465687477294921, 43.771947703089388 ], [ -79.466434913080917, 43.772750610278905 ], [ -79.465207297687584, 43.773164512740543 ], [ -79.465217030828086, 43.773336937871974 ], [ -79.465571977193818, 43.773548833742311 ], [ -79.465625311397389, 43.773891617959656 ], [ -79.462992399522633, 43.774324434959155 ], [ -79.462356621805057, 43.774892180902306 ], [ -79.461259109693316, 43.775048448677254 ], [ -79.46106857672406, 43.775694103489315 ], [ -79.460481717705179, 43.775803315701225 ], [ -79.461032380609495, 43.776134884296113 ], [ -79.459511232259629, 43.776339442532759 ], [ -79.458493719290857, 43.77676690543322 ], [ -79.458032167817194, 43.777318882426215 ], [ -79.457998492482673, 43.777660586383739 ], [ -79.457555899191547, 43.777960766877364 ], [ -79.457423785373464, 43.778265045294795 ], [ -79.456749567043744, 43.7783910630666 ], [ -79.456639228342311, 43.778812747785359 ], [ -79.457093310141147, 43.779034919848698 ], [ -79.457335483798033, 43.77976751295445 ], [ -79.457780313984756, 43.779863532371934 ], [ -79.457768433476204, 43.780808739977999 ], [ -79.457972959231427, 43.781072640695847 ], [ -79.458406329102317, 43.78113249593811 ], [ -79.459241967694481, 43.780531549257795 ], [ -79.46055028628335, 43.780882330156416 ], [ -79.460946074839057, 43.781436858078095 ], [ -79.462191034961151, 43.782317962674732 ], [ -79.462402680004118, 43.782788992272835 ], [ -79.462879861756392, 43.783083556231006 ], [ -79.463340128404781, 43.784035111149521 ], [ -79.465930631015183, 43.784304037570365 ], [ -79.46637208153733, 43.784048818539304 ], [ -79.467069858416849, 43.783977160753516 ], [ -79.467689248771208, 43.784057568476406 ], [ -79.468204805430318, 43.784307525563854 ], [ -79.468487537590306, 43.784914613025443 ], [ -79.467206593212339, 43.78495145686697 ], [ -79.46709930402254, 43.785256078996795 ], [ -79.466623084872396, 43.785411814840771 ], [ -79.466139505208645, 43.785855506978692 ], [ -79.466234259759645, 43.786523000103614 ], [ -79.465941165433478, 43.786807214622598 ], [ -79.466323057523852, 43.786938363313446 ], [ -79.466710322156771, 43.787348727991414 ], [ -79.466847702516105, 43.787952699463375 ], [ -79.445729052606396, 43.792467729847601 ], [ -79.445359785496052, 43.790860483872343 ], [ -79.446524832093374, 43.789089919322315 ], [ -79.446630530598583, 43.7883085612538 ], [ -79.442110884824828, 43.770392105541951 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202110", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 33, "HOOD": "Clanton Park", "FULLHOOD": "Clanton Park (33)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.434278810700206, 43.738522887725338 ], [ -79.433656445233254, 43.736037051797034 ], [ -79.439107605083578, 43.732736625332784 ], [ -79.442898795721874, 43.731230548219223 ], [ -79.457855386026324, 43.727908492126879 ], [ -79.458845577209985, 43.732095021725506 ], [ -79.451829884454384, 43.733590327494568 ], [ -79.452874585791861, 43.733961663075007 ], [ -79.456111223137029, 43.737789348201375 ], [ -79.455282797242376, 43.739929602665335 ], [ -79.45707116807921, 43.740417886918074 ], [ -79.457767579352762, 43.74228031496795 ], [ -79.454910531878255, 43.742759616589382 ], [ -79.45290287371472, 43.743953748226019 ], [ -79.454842022783552, 43.748715933912322 ], [ -79.458213472133153, 43.748014205854787 ], [ -79.459463697728125, 43.751083312871259 ], [ -79.439016566147558, 43.75544604932027 ], [ -79.43839013992293, 43.755479713186716 ], [ -79.434278810700206, 43.738522887725338 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200352", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 38, "HOOD": "Lansing-Westgate", "FULLHOOD": "Lansing-Westgate (38)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.409875274581438, 43.757363946684002 ], [ -79.408326166010113, 43.753504105570059 ], [ -79.414138283667143, 43.749847138316603 ], [ -79.41779895669454, 43.745933178203785 ], [ -79.423029418528074, 43.742497964911472 ], [ -79.433656445233254, 43.736037051797034 ], [ -79.43839013992293, 43.755479713186716 ], [ -79.430000937927289, 43.757256728782146 ], [ -79.430526566947592, 43.757604394542874 ], [ -79.432362598990949, 43.757224412922319 ], [ -79.433244482837281, 43.757227499978285 ], [ -79.433647475639802, 43.757494164692382 ], [ -79.433667619563039, 43.758151753402167 ], [ -79.434485250446386, 43.758234966937145 ], [ -79.43481628885803, 43.758401532177352 ], [ -79.435407641298298, 43.759066939158465 ], [ -79.436586005005381, 43.759137070178085 ], [ -79.437471896513514, 43.758987148551064 ], [ -79.437928096772538, 43.759119408041798 ], [ -79.438077782879461, 43.759571633964583 ], [ -79.437692838389509, 43.760043560491518 ], [ -79.437728693639727, 43.760575337565996 ], [ -79.437861323255987, 43.760730180710041 ], [ -79.438454613280285, 43.760846307534734 ], [ -79.438606178287984, 43.761226543801939 ], [ -79.438983869548011, 43.761510847650413 ], [ -79.439908077734756, 43.76155127863926 ], [ -79.440195122526958, 43.762691494063091 ], [ -79.434514172970609, 43.763619527518877 ], [ -79.426923587710945, 43.765519498400884 ], [ -79.415988747857497, 43.767867685438873 ], [ -79.415762094441746, 43.767313274615802 ], [ -79.412652327124746, 43.768404095545669 ], [ -79.409875274581438, 43.757363946684002 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202421", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 37, "HOOD": "Willowdale West", "FULLHOOD": "Willowdale West (37)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.412860405957019, 43.769292131189111 ], [ -79.412652327124746, 43.768404095545669 ], [ -79.415762094441746, 43.767313274615802 ], [ -79.415988747857497, 43.767867685438873 ], [ -79.426923587710945, 43.765519498400884 ], [ -79.434514172970609, 43.763619527518877 ], [ -79.440195122526958, 43.762691494063091 ], [ -79.442961901682381, 43.773853728197189 ], [ -79.438820573725224, 43.774593369448581 ], [ -79.415532510831909, 43.779816911115667 ], [ -79.412860405957019, 43.769292131189111 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202430", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 36, "HOOD": "Newtonbrook West", "FULLHOOD": "Newtonbrook West (36)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.415981103796241, 43.78166309148191 ], [ -79.415532510831909, 43.779816911115667 ], [ -79.438820573725224, 43.774593369448581 ], [ -79.442961901682381, 43.773853728197189 ], [ -79.446630530598583, 43.7883085612538 ], [ -79.446524832093374, 43.789089919322315 ], [ -79.445359785496052, 43.790860483872343 ], [ -79.445729052606396, 43.792467729847601 ], [ -79.420023526927423, 43.798048237247265 ], [ -79.415981103796241, 43.78166309148191 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202431", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 50, "HOOD": "Newtonbrook East", "FULLHOOD": "Newtonbrook East (50)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.393370463402547, 43.791139238487659 ], [ -79.39213950771493, 43.78501504477881 ], [ -79.396293896145323, 43.783996157057999 ], [ -79.415532510831909, 43.779816911115667 ], [ -79.420023526927423, 43.798048237247265 ], [ -79.396242601005483, 43.803277021923535 ], [ -79.395793124916523, 43.802159810108634 ], [ -79.393370463402547, 43.791139238487659 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200334", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 51, "HOOD": "Willowdale East", "FULLHOOD": "Willowdale East (51)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.388044240244284, 43.766693567329192 ], [ -79.387125518168119, 43.763257585885363 ], [ -79.39295113964711, 43.761979363163704 ], [ -79.396416266436077, 43.760782170169044 ], [ -79.397855741898553, 43.760064744092737 ], [ -79.403361340265434, 43.756708116398443 ], [ -79.408326166010113, 43.753504105570059 ], [ -79.409639686306491, 43.756535293351149 ], [ -79.410128786527991, 43.758223904937857 ], [ -79.415532510831909, 43.779816911115667 ], [ -79.396293896145323, 43.783996157057999 ], [ -79.39213950771493, 43.78501504477881 ], [ -79.388044240244284, 43.766693567329192 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200323", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 49, "HOOD": "Bayview Woods-Steeles", "FULLHOOD": "Bayview Woods-Steeles (49)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.369265645295386, 43.795354434725375 ], [ -79.367993520208003, 43.790033077735373 ], [ -79.369229139680471, 43.790037208252471 ], [ -79.370157958686562, 43.789865648259941 ], [ -79.39213950771493, 43.78501504477881 ], [ -79.394173648635189, 43.795135961815355 ], [ -79.395793124916523, 43.802159810108634 ], [ -79.396242601005483, 43.803277021923535 ], [ -79.371769763674024, 43.808707303314492 ], [ -79.371486638556974, 43.807856207402999 ], [ -79.371722470747457, 43.807409390172687 ], [ -79.371559334778723, 43.806092543260363 ], [ -79.371839699800063, 43.805915871960075 ], [ -79.369265645295386, 43.795354434725375 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200292", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 52, "HOOD": "Bayview Village", "FULLHOOD": "Bayview Village (52)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.359746055428431, 43.766412579025875 ], [ -79.371750460231326, 43.765846398646666 ], [ -79.375447466725802, 43.765523889511584 ], [ -79.377859838710648, 43.765159455177219 ], [ -79.387125518168119, 43.763257585885363 ], [ -79.388813870510546, 43.769992591647274 ], [ -79.39213950771493, 43.78501504477881 ], [ -79.370157958686562, 43.789865648259941 ], [ -79.369229139680471, 43.790037208252471 ], [ -79.367993520208003, 43.790033077735373 ], [ -79.365255586551712, 43.778285091609533 ], [ -79.364128965363051, 43.771667971267803 ], [ -79.362821035856243, 43.770865012446244 ], [ -79.36201700747101, 43.770565978114483 ], [ -79.360904952769872, 43.769562993374102 ], [ -79.360807012599182, 43.76836903237453 ], [ -79.360671950791229, 43.768020976952329 ], [ -79.359792045482294, 43.767197024709624 ], [ -79.359746055428431, 43.766412579025875 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200370", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 40, "HOOD": "St.Andrew-Windfields", "FULLHOOD": "St.Andrew-Windfields (40)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.359952422301689, 43.752962799374949 ], [ -79.363196880408907, 43.752933952400944 ], [ -79.365497961172338, 43.75253298731878 ], [ -79.380650002918912, 43.749372301888187 ], [ -79.38257070950452, 43.748911862433872 ], [ -79.383546890659389, 43.748241259716103 ], [ -79.384150548937981, 43.748062285151335 ], [ -79.402014050256057, 43.744234544958964 ], [ -79.402833109260186, 43.744139588534502 ], [ -79.404086379463067, 43.744272763733228 ], [ -79.404331652757108, 43.743786847168067 ], [ -79.406521590880033, 43.743340113546608 ], [ -79.40808285799568, 43.750141688214953 ], [ -79.408068178986881, 43.752466744533621 ], [ -79.408326166010113, 43.753504105570059 ], [ -79.397855741898553, 43.760064744092737 ], [ -79.394524566662042, 43.761499979525055 ], [ -79.390428434237492, 43.76262350965461 ], [ -79.376582688623657, 43.765387975458253 ], [ -79.371750460231326, 43.765846398646666 ], [ -79.359648969676826, 43.766414966764366 ], [ -79.359468999049071, 43.765731038733712 ], [ -79.357844970875504, 43.764858042841581 ], [ -79.357536982066691, 43.764728043328745 ], [ -79.356124028332303, 43.764814045616617 ], [ -79.354928991462003, 43.764618979881867 ], [ -79.354177036164401, 43.763668999757357 ], [ -79.353539050614643, 43.763614984248001 ], [ -79.352658971599013, 43.76383797276771 ], [ -79.351974980780341, 43.763534025940722 ], [ -79.351359050202504, 43.76354999007215 ], [ -79.351141011043737, 43.763972990326515 ], [ -79.350742005209383, 43.764113963917836 ], [ -79.349585011072847, 43.763572011945783 ], [ -79.349254027394792, 43.763165033035655 ], [ -79.349606986650699, 43.762362038086927 ], [ -79.349810000713902, 43.761042965082325 ], [ -79.34896896600948, 43.760696045060449 ], [ -79.348683006090937, 43.760190964845584 ], [ -79.348285031538154, 43.759930014616515 ], [ -79.346503038317792, 43.759534010413809 ], [ -79.346030049794081, 43.758589991060049 ], [ -79.344600996136975, 43.757710985296946 ], [ -79.34383504335355, 43.756489959471843 ], [ -79.359952422301689, 43.752962799374949 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200280", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 47, "HOOD": "Don Valley Village", "FULLHOOD": "Don Valley Village (47)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.340284236216178, 43.779703304370365 ], [ -79.339773637882814, 43.77605620464935 ], [ -79.341145475335964, 43.776200433983021 ], [ -79.343676266931851, 43.775823138517829 ], [ -79.361531113266821, 43.771956902132949 ], [ -79.364128965363051, 43.771667971267803 ], [ -79.365255586551712, 43.778285091609533 ], [ -79.367993520208003, 43.790033077735373 ], [ -79.367011348514964, 43.790003028795105 ], [ -79.365300849020684, 43.79032776013679 ], [ -79.343541786985341, 43.795123301891387 ], [ -79.340284236216178, 43.779703304370365 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200270", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 53, "HOOD": "Henry Farm", "FULLHOOD": "Henry Farm (53)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.339773637882814, 43.77605620464935 ], [ -79.327125130715444, 43.774695549495789 ], [ -79.325167314220693, 43.774799388773552 ], [ -79.323010129004004, 43.775261511006903 ], [ -79.319684789824009, 43.768294637277599 ], [ -79.328714993239458, 43.768160289514256 ], [ -79.346730716962398, 43.767039306915194 ], [ -79.359648969676826, 43.766414966764366 ], [ -79.359792045482294, 43.767197024709624 ], [ -79.360671950791229, 43.768020976952329 ], [ -79.360904952769872, 43.769562993374102 ], [ -79.36201700747101, 43.770565978114483 ], [ -79.362821035856243, 43.770865012446244 ], [ -79.364128965363051, 43.771667971267803 ], [ -79.361531113266821, 43.771956902132949 ], [ -79.343676266931851, 43.775823138517829 ], [ -79.341145475335964, 43.776200433983021 ], [ -79.339773637882814, 43.77605620464935 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200181", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 46, "HOOD": "Pleasant View", "FULLHOOD": "Pleasant View (46)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.324034148626453, 43.777479351229459 ], [ -79.323010129004004, 43.775261511006903 ], [ -79.326130383486856, 43.774707363565803 ], [ -79.3292205215308, 43.774883634488688 ], [ -79.339773637882814, 43.77605620464935 ], [ -79.340284236216178, 43.779703304370365 ], [ -79.344533516427973, 43.799623956132287 ], [ -79.337318771657124, 43.802141991920863 ], [ -79.335592957740474, 43.802545899593412 ], [ -79.324034148626453, 43.777479351229459 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200397", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 45, "HOOD": "Parkwoods-Donalda", "FULLHOOD": "Parkwoods-Donalda (45)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.311146375971859, 43.746082548258897 ], [ -79.309796365612286, 43.742133660442526 ], [ -79.312584955861098, 43.741652208882094 ], [ -79.324674352011655, 43.740795161925213 ], [ -79.330530958993009, 43.739771001062124 ], [ -79.330839019894796, 43.740172030100275 ], [ -79.33047795735159, 43.740823981699542 ], [ -79.330516038835057, 43.741148963867893 ], [ -79.331168986549287, 43.741539994845702 ], [ -79.332536976100343, 43.741480019744181 ], [ -79.333521991146014, 43.740801961561367 ], [ -79.334522037084767, 43.740682047438298 ], [ -79.335423980442911, 43.740768998626436 ], [ -79.335769980507294, 43.740980988134339 ], [ -79.336565972488302, 43.742077023670028 ], [ -79.336596035912692, 43.7424080083672 ], [ -79.336206044584983, 43.742896983916999 ], [ -79.336445985179751, 43.743492976127307 ], [ -79.337107011812222, 43.743846012907618 ], [ -79.338039952639079, 43.743498966013235 ], [ -79.339211957061622, 43.743569018763878 ], [ -79.340129001982248, 43.744535000848352 ], [ -79.340167042152132, 43.744856018266866 ], [ -79.339790990095125, 43.745675035229937 ], [ -79.339144050571932, 43.746538005453289 ], [ -79.33933195892871, 43.746727973185948 ], [ -79.340534963186755, 43.746961035685281 ], [ -79.342248990800741, 43.747634034558644 ], [ -79.342392041438558, 43.748166046223368 ], [ -79.34217403375861, 43.74898502157977 ], [ -79.342572032434717, 43.749832012730195 ], [ -79.342541966797896, 43.750780998044867 ], [ -79.343098033387122, 43.750932997578929 ], [ -79.345247970896438, 43.751008966062741 ], [ -79.346389997434628, 43.751518969813468 ], [ -79.345270024488642, 43.752848984906798 ], [ -79.345571046958966, 43.753678987322608 ], [ -79.345570971425573, 43.754302991399008 ], [ -79.344833969245428, 43.754802005511678 ], [ -79.34382003884491, 43.755009035569024 ], [ -79.343608975835579, 43.755181962950978 ], [ -79.34383504335355, 43.756489959471843 ], [ -79.344600996136975, 43.757710985296946 ], [ -79.346030049794081, 43.758589991060049 ], [ -79.346503038317792, 43.759534010413809 ], [ -79.348285031538154, 43.759930014616515 ], [ -79.348683006090937, 43.760190964845584 ], [ -79.34896896600948, 43.760696045060449 ], [ -79.349810000713902, 43.761042965082325 ], [ -79.349606986650699, 43.762362038086927 ], [ -79.349254027394792, 43.763165033035655 ], [ -79.349420010896623, 43.763413988764945 ], [ -79.350742005209383, 43.764113963917836 ], [ -79.351141011043737, 43.763972990326515 ], [ -79.351359050202504, 43.76354999007215 ], [ -79.351974980780341, 43.763534025940722 ], [ -79.352658971599013, 43.76383797276771 ], [ -79.353539050614643, 43.763614984248001 ], [ -79.354177036164401, 43.763668999757357 ], [ -79.354928991462003, 43.764618979881867 ], [ -79.356124028332303, 43.764814045616617 ], [ -79.357536982066691, 43.764728043328745 ], [ -79.357844970875504, 43.764858042841581 ], [ -79.359468999049071, 43.765731038733712 ], [ -79.359648969676826, 43.766414966764366 ], [ -79.346730716962398, 43.767039306915194 ], [ -79.328714993239458, 43.768160289514256 ], [ -79.319684789824009, 43.768294637277599 ], [ -79.315433162181193, 43.758443342998966 ], [ -79.311146375971859, 43.746082548258897 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200213", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 118, "HOOD": "Tam O'Shanter-Sullivan", "FULLHOOD": "Tam O'Shanter-Sullivan (118)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.286629387410244, 43.77989632309469 ], [ -79.284577377446695, 43.77494689738306 ], [ -79.30920771419018, 43.769203447443175 ], [ -79.312935603568732, 43.768522898477947 ], [ -79.314459939337482, 43.76836498848035 ], [ -79.319684789824009, 43.768294637277599 ], [ -79.323010129004004, 43.775261511006903 ], [ -79.317766202130784, 43.776514114926478 ], [ -79.320164563106744, 43.781695781447837 ], [ -79.318948071774898, 43.782083428194525 ], [ -79.316611595071194, 43.783972540932282 ], [ -79.315846751385223, 43.7843352982919 ], [ -79.308611054467036, 43.786107404154023 ], [ -79.308080268327529, 43.786609858645292 ], [ -79.307470937170194, 43.788759637840457 ], [ -79.306713891937406, 43.789339481152219 ], [ -79.306359375192287, 43.789524886231568 ], [ -79.301458031018612, 43.790603036702954 ], [ -79.298265310400922, 43.791477780726538 ], [ -79.297565541517187, 43.792064716825664 ], [ -79.296266920152277, 43.794047175846814 ], [ -79.295516141372076, 43.794566185847842 ], [ -79.293436471426588, 43.795138363544183 ], [ -79.290666721567774, 43.795502148209067 ], [ -79.288526539454963, 43.796097996161627 ], [ -79.286849155796489, 43.792183580351612 ], [ -79.291663930199604, 43.791096302386954 ], [ -79.288724082253424, 43.784143670892583 ], [ -79.287526224882555, 43.782030304931887 ], [ -79.286629387410244, 43.77989632309469 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202608", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 41, "HOOD": "Bridle Path-Sunnybrook-York Mills", "FULLHOOD": "Bridle Path-Sunnybrook-York Mills (41)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.361585608453339, 43.719794166619586 ], [ -79.365769670599292, 43.719268029451932 ], [ -79.378066348250684, 43.716724032604894 ], [ -79.377430659846183, 43.713140546205558 ], [ -79.381863865668834, 43.712017108032072 ], [ -79.385911596028663, 43.711341751088881 ], [ -79.388979232123205, 43.721308240235665 ], [ -79.389250653387577, 43.723689098542472 ], [ -79.389603329162398, 43.724588312367089 ], [ -79.390358823303401, 43.72870713259811 ], [ -79.390882155425913, 43.729987722680477 ], [ -79.390494544890146, 43.730059232478482 ], [ -79.392820225983897, 43.736804633178963 ], [ -79.404184850850044, 43.734355721237094 ], [ -79.404576298630928, 43.734417896154561 ], [ -79.406521590880033, 43.743340113546608 ], [ -79.404331652757108, 43.743786847168067 ], [ -79.404086379463067, 43.744272763733228 ], [ -79.402833109260186, 43.744139588534502 ], [ -79.402014050256057, 43.744234544958964 ], [ -79.384150548937981, 43.748062285151335 ], [ -79.383546890659389, 43.748241259716103 ], [ -79.382661286359394, 43.748849590924543 ], [ -79.382458494459101, 43.748632658332888 ], [ -79.381315718557502, 43.748175304131657 ], [ -79.38116282820458, 43.747398801712571 ], [ -79.380260350184912, 43.747241899743379 ], [ -79.379921264116319, 43.746922030960896 ], [ -79.379915325294789, 43.746678807284987 ], [ -79.379124160622382, 43.746082383829162 ], [ -79.378773679530312, 43.746185436250371 ], [ -79.378379513906211, 43.746062732098665 ], [ -79.37852409015818, 43.745308538589974 ], [ -79.378811070972702, 43.745258597477168 ], [ -79.378807180602294, 43.744943388044959 ], [ -79.37836142302389, 43.744432873244186 ], [ -79.378158583329679, 43.74366465971017 ], [ -79.377940551169004, 43.743463436004362 ], [ -79.376020424829221, 43.742364778095542 ], [ -79.375389943425859, 43.742256710178403 ], [ -79.374897018213673, 43.741655493011926 ], [ -79.37440067041473, 43.741639434644441 ], [ -79.373285887221044, 43.741074375754444 ], [ -79.37301670522784, 43.740467241915901 ], [ -79.372291887524057, 43.740636961434419 ], [ -79.372021940332075, 43.740516093803897 ], [ -79.371987315337194, 43.740875764394538 ], [ -79.371761410188725, 43.740962565643493 ], [ -79.371667475923545, 43.740763187285545 ], [ -79.371382705303603, 43.740732125423953 ], [ -79.371328961979074, 43.740425207203387 ], [ -79.370948993437594, 43.740698850626003 ], [ -79.370625986420222, 43.740703249393043 ], [ -79.370625206800213, 43.740271059900948 ], [ -79.370998834456202, 43.740231375063942 ], [ -79.371144899507101, 43.739882384404154 ], [ -79.371025223640075, 43.739718556079922 ], [ -79.370677590998639, 43.739713602275017 ], [ -79.370597999428668, 43.739442412670634 ], [ -79.371045655866567, 43.739421786412272 ], [ -79.371076384443796, 43.739206089998333 ], [ -79.370419463811302, 43.739160720844097 ], [ -79.370199721281764, 43.738563286759707 ], [ -79.369770801033468, 43.738350128947928 ], [ -79.369543682254445, 43.738481917766393 ], [ -79.369604902309717, 43.738059614158018 ], [ -79.369235680803214, 43.737937324118349 ], [ -79.368918971408277, 43.738166854012114 ], [ -79.368573301524194, 43.738089907063092 ], [ -79.368062230746546, 43.737704445448252 ], [ -79.368008748505758, 43.737388617438242 ], [ -79.368198120944655, 43.737274206560961 ], [ -79.367881483467343, 43.737044640528381 ], [ -79.367426591978685, 43.736876022323308 ], [ -79.367210879561014, 43.737044066817653 ], [ -79.366751690055011, 43.737037507777586 ], [ -79.366642603799747, 43.736936839006901 ], [ -79.366824233407087, 43.736651374729597 ], [ -79.365980907623651, 43.736612318902004 ], [ -79.365489896397349, 43.736857351642456 ], [ -79.364420280429641, 43.736463886805566 ], [ -79.364335437164371, 43.735931474041863 ], [ -79.363770497450574, 43.736157528016392 ], [ -79.363398363213591, 43.736143109543377 ], [ -79.363218541456831, 43.735906487200943 ], [ -79.363640182331864, 43.735471342498592 ], [ -79.363263022662139, 43.73472761199691 ], [ -79.362116738475834, 43.73441404450697 ], [ -79.360880385183918, 43.733306921463814 ], [ -79.36010257598295, 43.733142645671364 ], [ -79.3591938415275, 43.733228627418171 ], [ -79.359084176713679, 43.732695854293119 ], [ -79.359376162787072, 43.732006722256081 ], [ -79.358817036188711, 43.731566518283394 ], [ -79.357682235327815, 43.731289168501654 ], [ -79.357551211760622, 43.731089155473782 ], [ -79.357694873201609, 43.730830165560384 ], [ -79.35702606394625, 43.730766454927732 ], [ -79.357207382327204, 43.7300398203827 ], [ -79.356975262357309, 43.729901366897643 ], [ -79.356168454175702, 43.729889769063924 ], [ -79.35587603418621, 43.729687523347074 ], [ -79.354646266260147, 43.729705838792022 ], [ -79.35446280467761, 43.729604177908158 ], [ -79.354405709208137, 43.729423228996957 ], [ -79.354671556760664, 43.729238016334619 ], [ -79.354089098059362, 43.728743442174718 ], [ -79.353967596970676, 43.728192399680538 ], [ -79.353586085194976, 43.728069882014587 ], [ -79.353344881661528, 43.727355081477917 ], [ -79.352895526779747, 43.726988444158088 ], [ -79.35271571493567, 43.726301622234594 ], [ -79.352169374056871, 43.726302750749873 ], [ -79.351670254588001, 43.725944393134888 ], [ -79.350739362286006, 43.72593096792221 ], [ -79.350070924075553, 43.725408127139758 ], [ -79.350291927537327, 43.724591967122038 ], [ -79.350748362432583, 43.724247389905941 ], [ -79.349941100934998, 43.723803562272487 ], [ -79.349898875389343, 43.72353280695814 ], [ -79.350135399557544, 43.723509214943142 ], [ -79.350176598997393, 43.723365779699392 ], [ -79.349867651633701, 43.723316311604023 ], [ -79.349870863156283, 43.723199243729169 ], [ -79.350247604246405, 43.723042647275378 ], [ -79.350282490209082, 43.72267398428167 ], [ -79.351174601891046, 43.722740865050348 ], [ -79.351465440683484, 43.72254701818332 ], [ -79.351911833636279, 43.722112272730662 ], [ -79.351933935583332, 43.721761428602576 ], [ -79.352484917586594, 43.721589332604289 ], [ -79.352723737894834, 43.721025476318651 ], [ -79.353047624255211, 43.720985133239701 ], [ -79.35353454671197, 43.720433940878912 ], [ -79.353668427484735, 43.721059428174065 ], [ -79.361585608453339, 43.719794166619586 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200746", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 56, "HOOD": "Leaside-Bennington", "FULLHOOD": "Leaside-Bennington (56)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.350600200819201, 43.699519430962852 ], [ -79.35075000819927, 43.699179970073047 ], [ -79.351335967036107, 43.698762001310484 ], [ -79.352703998212604, 43.698637960087765 ], [ -79.353395976426071, 43.69833898298689 ], [ -79.354703968566525, 43.698247000028431 ], [ -79.355786026666166, 43.697341041901907 ], [ -79.3561540484245, 43.696429040073461 ], [ -79.356837979073489, 43.695500963219381 ], [ -79.357596987024905, 43.695241001827085 ], [ -79.358958021148325, 43.695588034716167 ], [ -79.359942982214761, 43.695364967826755 ], [ -79.361843972237295, 43.694123042512167 ], [ -79.361228028737514, 43.692830993519728 ], [ -79.359836980844662, 43.691822006666492 ], [ -79.359852020824988, 43.691529030195142 ], [ -79.361392978975502, 43.689156976888064 ], [ -79.361798975336825, 43.688701986865212 ], [ -79.362550988112133, 43.688239978916613 ], [ -79.362497991291193, 43.687490980575106 ], [ -79.361655973175871, 43.685842009034232 ], [ -79.361664009753866, 43.685050045243457 ], [ -79.363106973984287, 43.683346034835388 ], [ -79.364588023965737, 43.68277598282949 ], [ -79.366332005814485, 43.681620042591362 ], [ -79.366332031732625, 43.681023035156457 ], [ -79.364046960015031, 43.679123992046279 ], [ -79.364054798801533, 43.678986014601655 ], [ -79.366997438452174, 43.678727776959882 ], [ -79.368302794776994, 43.680812896512869 ], [ -79.366835820673217, 43.684191348560027 ], [ -79.36716772862259, 43.686972371579252 ], [ -79.366861827841319, 43.687692296838399 ], [ -79.366866698138182, 43.688501278689088 ], [ -79.367445793073998, 43.689170199669292 ], [ -79.368184867628671, 43.68967900653432 ], [ -79.370596455444087, 43.690536805674881 ], [ -79.373739785948615, 43.692570442115617 ], [ -79.379853614263382, 43.694470496311652 ], [ -79.380175787645783, 43.69498231883135 ], [ -79.371704883714429, 43.696762204512765 ], [ -79.376903473927442, 43.710363903488584 ], [ -79.378066348250684, 43.716724032604894 ], [ -79.365769670599292, 43.719268029451932 ], [ -79.361848618141067, 43.71975211595786 ], [ -79.353668427484735, 43.721059428174065 ], [ -79.353094553700217, 43.716555989299103 ], [ -79.352670283743592, 43.716210776284626 ], [ -79.364732318582242, 43.713589756847874 ], [ -79.360607355071309, 43.703138454563017 ], [ -79.359757696063753, 43.702477861598432 ], [ -79.358119150400512, 43.701879751426155 ], [ -79.353700906304326, 43.70208960362956 ], [ -79.35248815300902, 43.701779842566779 ], [ -79.35166014601954, 43.701248138444022 ], [ -79.350600200819201, 43.699519430962852 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200376", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 42, "HOOD": "Banbury-Don Mills", "FULLHOOD": "Banbury-Don Mills (42)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.330149781248252, 43.723153876628579 ], [ -79.352670283743592, 43.716210776284626 ], [ -79.353094553700217, 43.716555989299103 ], [ -79.353606181865388, 43.72041615859866 ], [ -79.353047624255211, 43.720985133239701 ], [ -79.352723737894834, 43.721025476318651 ], [ -79.352484917586594, 43.721589332604289 ], [ -79.351933935583332, 43.721761428602576 ], [ -79.351911833636279, 43.722112272730662 ], [ -79.351465440683484, 43.72254701818332 ], [ -79.351174601891046, 43.722740865050348 ], [ -79.350282490209082, 43.72267398428167 ], [ -79.350247604246405, 43.723042647275378 ], [ -79.349870863156283, 43.723199243729169 ], [ -79.349867651633701, 43.723316311604023 ], [ -79.350176598997393, 43.723365779699392 ], [ -79.350135399557544, 43.723509214943142 ], [ -79.349898875389343, 43.72353280695814 ], [ -79.349941100934998, 43.723803562272487 ], [ -79.350748362432583, 43.724247389905941 ], [ -79.350291927537327, 43.724591967122038 ], [ -79.350067923274835, 43.725065923156066 ], [ -79.350155095549056, 43.725508362304296 ], [ -79.350739362286006, 43.72593096792221 ], [ -79.351670254588001, 43.725944393134888 ], [ -79.352169374056871, 43.726302750749873 ], [ -79.35271571493567, 43.726301622234594 ], [ -79.352895526779747, 43.726988444158088 ], [ -79.353344881661528, 43.727355081477917 ], [ -79.353586085194976, 43.728069882014587 ], [ -79.353967596970676, 43.728192399680538 ], [ -79.354089098059362, 43.728743442174718 ], [ -79.354671556760664, 43.729238016334619 ], [ -79.354405709208137, 43.729423228996957 ], [ -79.35446280467761, 43.729604177908158 ], [ -79.354646266260147, 43.729705838792022 ], [ -79.35587603418621, 43.729687523347074 ], [ -79.356168454175702, 43.729889769063924 ], [ -79.356975262357309, 43.729901366897643 ], [ -79.357207382327204, 43.7300398203827 ], [ -79.35702606394625, 43.730766454927732 ], [ -79.357694873201609, 43.730830165560384 ], [ -79.357551211760622, 43.731089155473782 ], [ -79.357682235327815, 43.731289168501654 ], [ -79.358817036188711, 43.731566518283394 ], [ -79.359376162787072, 43.732006722256081 ], [ -79.359084176713679, 43.732695854293119 ], [ -79.3591938415275, 43.733228627418171 ], [ -79.36010257598295, 43.733142645671364 ], [ -79.360880385183918, 43.733306921463814 ], [ -79.362116738475834, 43.73441404450697 ], [ -79.363263022662139, 43.73472761199691 ], [ -79.363640182331864, 43.735471342498592 ], [ -79.363218541456831, 43.735906487200943 ], [ -79.363398363213591, 43.736143109543377 ], [ -79.363770497450574, 43.736157528016392 ], [ -79.364335437164371, 43.735931474041863 ], [ -79.364420280429641, 43.736463886805566 ], [ -79.365489896397349, 43.736857351642456 ], [ -79.365980907623651, 43.736612318902004 ], [ -79.366824233407087, 43.736651374729597 ], [ -79.366642603799747, 43.736936839006901 ], [ -79.366751690055011, 43.737037507777586 ], [ -79.367210879561014, 43.737044066817653 ], [ -79.367426591978685, 43.736876022323308 ], [ -79.367881483467343, 43.737044640528381 ], [ -79.368198120944655, 43.737274206560961 ], [ -79.368008748505758, 43.737388617438242 ], [ -79.368062230746546, 43.737704445448252 ], [ -79.368573301524194, 43.738089907063092 ], [ -79.368918971408277, 43.738166854012114 ], [ -79.369235680803214, 43.737937324118349 ], [ -79.369604902309717, 43.738059614158018 ], [ -79.369543682254445, 43.738481917766393 ], [ -79.369770801033468, 43.738350128947928 ], [ -79.370199721281764, 43.738563286759707 ], [ -79.370419463811302, 43.739160720844097 ], [ -79.371076384443796, 43.739206089998333 ], [ -79.371045655866567, 43.739421786412272 ], [ -79.370597999428668, 43.739442412670634 ], [ -79.370677590998639, 43.739713602275017 ], [ -79.371025223640075, 43.739718556079922 ], [ -79.371144899507101, 43.739882384404154 ], [ -79.370998834456202, 43.740231375063942 ], [ -79.370625206800213, 43.740271059900948 ], [ -79.370625986420222, 43.740703249393043 ], [ -79.370948993437594, 43.740698850626003 ], [ -79.371328961979074, 43.740425207203387 ], [ -79.371382705303603, 43.740732125423953 ], [ -79.371667475923545, 43.740763187285545 ], [ -79.371761410188725, 43.740962565643493 ], [ -79.371987315337194, 43.740875764394538 ], [ -79.372021940332075, 43.740516093803897 ], [ -79.372291887524057, 43.740636961434419 ], [ -79.37301670522784, 43.740467241915901 ], [ -79.373285887221044, 43.741074375754444 ], [ -79.37440067041473, 43.741639434644441 ], [ -79.374897018213673, 43.741655493011926 ], [ -79.375389943425859, 43.742256710178403 ], [ -79.376020424829221, 43.742364778095542 ], [ -79.377940551169004, 43.743463436004362 ], [ -79.378158583329679, 43.74366465971017 ], [ -79.37836142302389, 43.744432873244186 ], [ -79.378807180602294, 43.744943388044959 ], [ -79.378811070972702, 43.745258597477168 ], [ -79.37852409015818, 43.745308538589974 ], [ -79.378379513906211, 43.746062732098665 ], [ -79.378773679530312, 43.746185436250371 ], [ -79.379124160622382, 43.746082383829162 ], [ -79.379915325294789, 43.746678807284987 ], [ -79.379921264116319, 43.746922030960896 ], [ -79.380260350184912, 43.747241899743379 ], [ -79.38116282820458, 43.747398801712571 ], [ -79.381315718557502, 43.748175304131657 ], [ -79.382458494459101, 43.748632658332888 ], [ -79.382661286359394, 43.748849590924543 ], [ -79.365497961172338, 43.75253298731878 ], [ -79.363196880408907, 43.752933952400944 ], [ -79.359952422301689, 43.752962799374949 ], [ -79.34383504335355, 43.756489959471843 ], [ -79.343608975835579, 43.755181962950978 ], [ -79.34382003884491, 43.755009035569024 ], [ -79.344833969245428, 43.754802005511678 ], [ -79.345570971425573, 43.754302991399008 ], [ -79.345571046958966, 43.753678987322608 ], [ -79.345270024488642, 43.752848984906798 ], [ -79.346389997434628, 43.751518969813468 ], [ -79.345247970896438, 43.751008966062741 ], [ -79.343098033387122, 43.750932997578929 ], [ -79.342541966797896, 43.750780998044867 ], [ -79.342572032434717, 43.749832012730195 ], [ -79.34217403375861, 43.74898502157977 ], [ -79.342392041438558, 43.748166046223368 ], [ -79.342248990800741, 43.747634034558644 ], [ -79.340534963186755, 43.746961035685281 ], [ -79.33933195892871, 43.746727973185948 ], [ -79.339144050571932, 43.746538005453289 ], [ -79.339790990095125, 43.745675035229937 ], [ -79.340167042152132, 43.744856018266866 ], [ -79.340129001982248, 43.744535000848352 ], [ -79.339211957061622, 43.743569018763878 ], [ -79.338039952639079, 43.743498966013235 ], [ -79.337107011812222, 43.743846012907618 ], [ -79.336445985179751, 43.743492976127307 ], [ -79.336206044584983, 43.742896983916999 ], [ -79.336596035912692, 43.7424080083672 ], [ -79.336565972488302, 43.742077023670028 ], [ -79.335603958615778, 43.740855966208485 ], [ -79.334883021169532, 43.740681994682305 ], [ -79.333521991146014, 43.740801961561367 ], [ -79.333123985518327, 43.740959002310888 ], [ -79.332785954744153, 43.741372028258816 ], [ -79.332177051143844, 43.741534001504498 ], [ -79.331168986549287, 43.741539994845702 ], [ -79.330605997915598, 43.741269011700389 ], [ -79.33047795735159, 43.740823981699542 ], [ -79.330839019894796, 43.740172030100275 ], [ -79.330154963813683, 43.739272029152069 ], [ -79.330079967689059, 43.738783034223907 ], [ -79.330312965168659, 43.738251008183987 ], [ -79.331559991405172, 43.737181972291225 ], [ -79.331402024856061, 43.736807980887356 ], [ -79.330672968030456, 43.736368039929403 ], [ -79.331184005120505, 43.735483958623178 ], [ -79.331064045005732, 43.734843976916991 ], [ -79.329974015331885, 43.734099990052414 ], [ -79.32949298641941, 43.733948032541583 ], [ -79.329117032066449, 43.733953970769406 ], [ -79.328583977457427, 43.734285008051614 ], [ -79.328312967011115, 43.734236036321555 ], [ -79.327795004734242, 43.733817977253324 ], [ -79.327591967761393, 43.733015013453894 ], [ -79.326937978456371, 43.73287896862734 ], [ -79.326057977599874, 43.732174025104726 ], [ -79.324772964427225, 43.731685036139758 ], [ -79.32459304599351, 43.731105021208052 ], [ -79.325261968086792, 43.729715035068942 ], [ -79.325103989653769, 43.729519991148557 ], [ -79.323104025240411, 43.729444043637955 ], [ -79.320218045809654, 43.731565989506535 ], [ -79.319744041746731, 43.731592960794821 ], [ -79.319609036287616, 43.731430023502384 ], [ -79.319608979321814, 43.730996043726982 ], [ -79.320119985074712, 43.730524025348174 ], [ -79.320376039524575, 43.729644976462886 ], [ -79.320112988249733, 43.729477007767066 ], [ -79.318993025842772, 43.729324977532301 ], [ -79.318737033848009, 43.72920499929382 ], [ -79.318707033081367, 43.728945034821223 ], [ -79.320120045989015, 43.728461973054351 ], [ -79.320457993959238, 43.72800100267191 ], [ -79.323149003094542, 43.727170025951686 ], [ -79.323127037476695, 43.726231980835465 ], [ -79.322390018403084, 43.725618043909961 ], [ -79.322299951367427, 43.725205967626373 ], [ -79.330149781248252, 43.723153876628579 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200545", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 55, "HOOD": "Thorncliffe Park", "FULLHOOD": "Thorncliffe Park (55)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.335313822914515, 43.703260869410236 ], [ -79.336603957016578, 43.702783012980191 ], [ -79.337505988554341, 43.702083003557981 ], [ -79.339046953278157, 43.701307023098565 ], [ -79.339911036653817, 43.700456021491959 ], [ -79.34159504190535, 43.699369987530254 ], [ -79.343037980954335, 43.699039024850698 ], [ -79.343653984454789, 43.698524040439594 ], [ -79.344450985893786, 43.698273989039087 ], [ -79.345210043352807, 43.698317024789368 ], [ -79.34711894948498, 43.699034003363863 ], [ -79.348330022946129, 43.699912987128762 ], [ -79.350111005380271, 43.699863986551094 ], [ -79.350547003900431, 43.699402989115264 ], [ -79.35166014601954, 43.701248138444022 ], [ -79.35248815300902, 43.701779842566779 ], [ -79.353222554945575, 43.702022671941933 ], [ -79.354189459178158, 43.702086645432033 ], [ -79.356993281111471, 43.701850614674264 ], [ -79.358513020543171, 43.701948690393031 ], [ -79.359757696063753, 43.702477861598432 ], [ -79.360607355071309, 43.703138454563017 ], [ -79.364732318582242, 43.713589756847874 ], [ -79.352670283743592, 43.716210776284626 ], [ -79.352346862378425, 43.715752871365027 ], [ -79.351925721844481, 43.715719795623407 ], [ -79.350148617354563, 43.715793184786975 ], [ -79.34992277736022, 43.715879944214372 ], [ -79.3499178417633, 43.716059910439277 ], [ -79.348867069633044, 43.71635089354011 ], [ -79.347060858499276, 43.716126662460688 ], [ -79.346793792270745, 43.715906755976448 ], [ -79.346811948288746, 43.715249701751787 ], [ -79.346145549022282, 43.715105035483106 ], [ -79.345023608071898, 43.715277839350243 ], [ -79.344775372641053, 43.714824061989063 ], [ -79.343515215459234, 43.714157585592233 ], [ -79.342852817060333, 43.713418654295602 ], [ -79.342040902294741, 43.713154740366662 ], [ -79.341406845114463, 43.712740369164067 ], [ -79.340738006208227, 43.71268565470497 ], [ -79.340180370498871, 43.713100738402318 ], [ -79.339601727359678, 43.712930302348958 ], [ -79.339498937748886, 43.712604651923201 ], [ -79.340316709384027, 43.711761168079796 ], [ -79.340203452417683, 43.711325093265572 ], [ -79.339868576781868, 43.710908305131468 ], [ -79.339439219658885, 43.710721942107149 ], [ -79.339452630356035, 43.710235945404854 ], [ -79.338496628724343, 43.70979887762757 ], [ -79.338016962305474, 43.709188689715376 ], [ -79.337749316304098, 43.708095300920448 ], [ -79.338125293240182, 43.707515554366246 ], [ -79.337189330562992, 43.706799618390569 ], [ -79.337388107812671, 43.706343323157121 ], [ -79.337994074344579, 43.705973964609775 ], [ -79.338268066245973, 43.705491755495679 ], [ -79.337915466875742, 43.705225485286945 ], [ -79.336166963636373, 43.704722862450623 ], [ -79.335105580551954, 43.704059185177854 ], [ -79.335026444058428, 43.703778884191856 ], [ -79.335313822914515, 43.703260869410236 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200538", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 44, "HOOD": "Flemingdon Park", "FULLHOOD": "Flemingdon Park (44)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.319508491970637, 43.71253247479045 ], [ -79.319884749225622, 43.711675085300278 ], [ -79.338005741689116, 43.70768629257509 ], [ -79.337743100445053, 43.708320347615327 ], [ -79.338016962305474, 43.709188689715376 ], [ -79.338496628724343, 43.70979887762757 ], [ -79.339452630356035, 43.710235945404854 ], [ -79.339439219658885, 43.710721942107149 ], [ -79.339868576781868, 43.710908305131468 ], [ -79.340203452417683, 43.711325093265572 ], [ -79.340316709384027, 43.711761168079796 ], [ -79.339498937748886, 43.712604651923201 ], [ -79.339601727359678, 43.712930302348958 ], [ -79.340180370498871, 43.713100738402318 ], [ -79.340738006208227, 43.71268565470497 ], [ -79.341406845114463, 43.712740369164067 ], [ -79.342040902294741, 43.713154740366662 ], [ -79.342852817060333, 43.713418654295602 ], [ -79.343515215459234, 43.714157585592233 ], [ -79.344775372641053, 43.714824061989063 ], [ -79.345023608071898, 43.715277839350243 ], [ -79.346145549022282, 43.715105035483106 ], [ -79.346811948288746, 43.715249701751787 ], [ -79.346793792270745, 43.715906755976448 ], [ -79.347060858499276, 43.716126662460688 ], [ -79.348867069633044, 43.71635089354011 ], [ -79.3499178417633, 43.716059910439277 ], [ -79.34992277736022, 43.715879944214372 ], [ -79.350148617354563, 43.715793184786975 ], [ -79.351925721844481, 43.715719795623407 ], [ -79.352346862378425, 43.715752871365027 ], [ -79.352670283743592, 43.716210776284626 ], [ -79.331889921186431, 43.722683367727555 ], [ -79.322299951367427, 43.725205967626373 ], [ -79.323208952064761, 43.723414971606985 ], [ -79.323427027807554, 43.72213999610284 ], [ -79.324901024751739, 43.721842036774476 ], [ -79.325915002581766, 43.721402025193662 ], [ -79.326771972506208, 43.721309969155477 ], [ -79.32683195814387, 43.721093002039389 ], [ -79.326711999209863, 43.720668969041341 ], [ -79.32638897772479, 43.720501037017002 ], [ -79.325711960741714, 43.720332961412915 ], [ -79.324277008735876, 43.720664000362476 ], [ -79.322698023791517, 43.71981204401758 ], [ -79.322457952873606, 43.719404968110887 ], [ -79.322585954725781, 43.719242022160131 ], [ -79.323518045275307, 43.718932977492216 ], [ -79.32390095575164, 43.718369043973091 ], [ -79.323915985479502, 43.717723020437575 ], [ -79.323562978280194, 43.716865007797011 ], [ -79.3233370357556, 43.716627015749665 ], [ -79.322383006806007, 43.716274009955434 ], [ -79.320812002452911, 43.715948033334357 ], [ -79.320301001275595, 43.716002999670479 ], [ -79.320022982165952, 43.715530007323132 ], [ -79.319440036204199, 43.715676091709163 ], [ -79.319514551238129, 43.713429690366574 ], [ -79.319334257391262, 43.713324778813359 ], [ -79.319296563682144, 43.712699044716778 ], [ -79.319508491970637, 43.71253247479045 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200446", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 43, "HOOD": "Victoria Village", "FULLHOOD": "Victoria Village (43)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.30059172891086, 43.719820894586384 ], [ -79.299148552147471, 43.716423015142674 ], [ -79.305408025696863, 43.715090703613924 ], [ -79.304956442616827, 43.716041177349346 ], [ -79.304845990769678, 43.716876802991045 ], [ -79.311116204325614, 43.715505539800716 ], [ -79.311872515066383, 43.717364342802767 ], [ -79.320022982165952, 43.715530007323132 ], [ -79.320301001275595, 43.716002999670479 ], [ -79.320812002452911, 43.715948033334357 ], [ -79.322383006806007, 43.716274009955434 ], [ -79.3233370357556, 43.716627015749665 ], [ -79.323915985479502, 43.717723020437575 ], [ -79.32390095575164, 43.718369043973091 ], [ -79.323518045275307, 43.718932977492216 ], [ -79.322585954725781, 43.719242022160131 ], [ -79.322502952364758, 43.719557039727604 ], [ -79.323073989088542, 43.720077983185497 ], [ -79.324142015438724, 43.72063699643833 ], [ -79.325711960741714, 43.720332961412915 ], [ -79.32638897772479, 43.720501037017002 ], [ -79.326711999209863, 43.720668969041341 ], [ -79.326817013943796, 43.721207016942571 ], [ -79.326637011271643, 43.721347962083129 ], [ -79.325915002581766, 43.721402025193662 ], [ -79.324901024751739, 43.721842036774476 ], [ -79.323427027807554, 43.72213999610284 ], [ -79.323208952064761, 43.723414971606985 ], [ -79.322291959631698, 43.725330976118777 ], [ -79.322390018403084, 43.725618043909961 ], [ -79.323127037476695, 43.726231980835465 ], [ -79.323149003094542, 43.727170025951686 ], [ -79.320457993959238, 43.72800100267191 ], [ -79.320120045989015, 43.728461973054351 ], [ -79.318707033081367, 43.728945034821223 ], [ -79.318676983452207, 43.729118958685369 ], [ -79.318993025842772, 43.729324977532301 ], [ -79.320112988249733, 43.729477007767066 ], [ -79.320376039524575, 43.729644976462886 ], [ -79.320119985074712, 43.730524025348174 ], [ -79.319608979321814, 43.730996043726982 ], [ -79.319609036287616, 43.731430023502384 ], [ -79.319947044704904, 43.73161997916349 ], [ -79.320346044634832, 43.731473980921081 ], [ -79.322803961843292, 43.729552975184113 ], [ -79.324157049397556, 43.729400972511435 ], [ -79.32520904155794, 43.729564018884595 ], [ -79.324630044500523, 43.730908963096013 ], [ -79.324772964427225, 43.731685036139758 ], [ -79.326057977599874, 43.732174025104726 ], [ -79.326937978456371, 43.73287896862734 ], [ -79.327591967761393, 43.733015013453894 ], [ -79.327795004734242, 43.733817977253324 ], [ -79.328312967011115, 43.734236036321555 ], [ -79.328583977457427, 43.734285008051614 ], [ -79.329117032066449, 43.733953970769406 ], [ -79.329756012280086, 43.734019029353135 ], [ -79.330493016101272, 43.734425965561911 ], [ -79.331184032589178, 43.735055021295878 ], [ -79.331184005120505, 43.735483958623178 ], [ -79.330672968030456, 43.736368039929403 ], [ -79.331402024856061, 43.736807980887356 ], [ -79.331559991405172, 43.737181972291225 ], [ -79.330131974130182, 43.738566039463805 ], [ -79.330154963813683, 43.739272029152069 ], [ -79.330530958993009, 43.739771001062124 ], [ -79.324674352011655, 43.740795161925213 ], [ -79.312584955861098, 43.741652208882094 ], [ -79.309796365612286, 43.742133660442526 ], [ -79.30059172891086, 43.719820894586384 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200478", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 54, "HOOD": "O'Connor-Parkview", "FULLHOOD": "O'Connor-Parkview (54)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.295275519948532, 43.707226451674018 ], [ -79.293470835442037, 43.703030757781725 ], [ -79.296929566835843, 43.702290078020802 ], [ -79.297095406371042, 43.697469787848668 ], [ -79.297381156996636, 43.695185222866833 ], [ -79.30071351125153, 43.695746559095006 ], [ -79.302854867763131, 43.696381673656589 ], [ -79.312026876591418, 43.699425791748006 ], [ -79.314371003994694, 43.700360746295388 ], [ -79.315365236957405, 43.700312387598487 ], [ -79.319258249133981, 43.700891885084914 ], [ -79.327056129374839, 43.70127154204112 ], [ -79.326695814942255, 43.701661001916001 ], [ -79.327446008071732, 43.70145323335683 ], [ -79.32980869149857, 43.70173091467457 ], [ -79.330333943498616, 43.701585464587517 ], [ -79.331498044651823, 43.70167456449763 ], [ -79.331813110932458, 43.701949218832596 ], [ -79.331856396885001, 43.702625172172567 ], [ -79.332307544956024, 43.703241091753526 ], [ -79.333071004884886, 43.703407958379273 ], [ -79.33334895885595, 43.703119989409501 ], [ -79.333740027592086, 43.703001013492504 ], [ -79.335356030367691, 43.703152020998267 ], [ -79.335026444058428, 43.703778884191856 ], [ -79.335105580551954, 43.704059185177854 ], [ -79.336166963636373, 43.704722862450623 ], [ -79.337915466875742, 43.705225485286945 ], [ -79.338268066245973, 43.705491755495679 ], [ -79.337994074344579, 43.705973964609775 ], [ -79.337388107812671, 43.706343323157121 ], [ -79.337189330562992, 43.706799618390569 ], [ -79.338125293240182, 43.707515554366246 ], [ -79.338005741689116, 43.70768629257509 ], [ -79.319884749225622, 43.711675085300278 ], [ -79.319563436894157, 43.712489263265461 ], [ -79.319296563682144, 43.712699044716778 ], [ -79.319334257391262, 43.713324778813359 ], [ -79.319514551238129, 43.713429690366574 ], [ -79.319440036204199, 43.715676091709163 ], [ -79.311872515066383, 43.717364342802767 ], [ -79.311116204325614, 43.715505539800716 ], [ -79.304845990769678, 43.716876802991045 ], [ -79.304956442616827, 43.716041177349346 ], [ -79.305408025696863, 43.715090703613924 ], [ -79.299148552147471, 43.716423015142674 ], [ -79.295275519948532, 43.707226451674018 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200658", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 63, "HOOD": "The Beaches", "FULLHOOD": "The Beaches (63)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.281002902276754, 43.674065346569655 ], [ -79.279906972328575, 43.671233422216453 ], [ -79.280002956560665, 43.670991994337811 ], [ -79.280171962625516, 43.671223995832527 ], [ -79.28122101087169, 43.67096998387084 ], [ -79.281230036262258, 43.670840041735609 ], [ -79.281562002142707, 43.670921008095611 ], [ -79.281966000510991, 43.6706030103797 ], [ -79.282470955816706, 43.670615008172533 ], [ -79.282686010452991, 43.670380047683139 ], [ -79.283454026068085, 43.670346031482012 ], [ -79.283519028055437, 43.670136002242124 ], [ -79.284465957532177, 43.670051013709326 ], [ -79.284928976463604, 43.669742982979081 ], [ -79.285512973217152, 43.669770015960268 ], [ -79.286078024673117, 43.669449017469191 ], [ -79.287136986553577, 43.66936604625834 ], [ -79.288412045914413, 43.668751045802082 ], [ -79.289275952173824, 43.66868196808516 ], [ -79.29113601389146, 43.667962984781262 ], [ -79.291988010895309, 43.667894968787358 ], [ -79.293263001725052, 43.667228961951572 ], [ -79.294703963847766, 43.665981010818534 ], [ -79.294938029503342, 43.666065969270264 ], [ -79.295908045103829, 43.665602968655556 ], [ -79.29744401589663, 43.665257042377846 ], [ -79.298478038278859, 43.665528990912691 ], [ -79.299177021802279, 43.665485019579471 ], [ -79.299437049698128, 43.665664965394733 ], [ -79.300277015387209, 43.665362028031517 ], [ -79.300849027709361, 43.665460999933025 ], [ -79.301939990109872, 43.665102997589479 ], [ -79.302193007752592, 43.664863972858626 ], [ -79.303075966098064, 43.664755014905722 ], [ -79.303899991942629, 43.664337759657492 ], [ -79.304877448214299, 43.665679591730452 ], [ -79.305153680560622, 43.66525483457329 ], [ -79.30613042402112, 43.664461835583417 ], [ -79.307505005533002, 43.663926952481127 ], [ -79.321745976824943, 43.660738102890733 ], [ -79.328313059054409, 43.659067316211043 ], [ -79.329471164652929, 43.661586875257505 ], [ -79.319850778410753, 43.663795595354003 ], [ -79.31931582989867, 43.6640210633092 ], [ -79.318068820178581, 43.665089890173071 ], [ -79.315069356631682, 43.665864362714018 ], [ -79.31469106118297, 43.666781215782656 ], [ -79.31259430215853, 43.667245486028492 ], [ -79.310066543579183, 43.671990068275932 ], [ -79.305227367624326, 43.676298504754705 ], [ -79.304072675456339, 43.6769514854264 ], [ -79.300652128824282, 43.678366477781218 ], [ -79.292618787721494, 43.680139353946082 ], [ -79.284062613337781, 43.680866617827711 ], [ -79.281002902276754, 43.674065346569655 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200594", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 62, "HOOD": "East End-Danforth", "FULLHOOD": "East End-Danforth (62)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.284653320823992, 43.68234306357472 ], [ -79.284062613337781, 43.680866617827711 ], [ -79.292618787721494, 43.680139353946082 ], [ -79.300652128824282, 43.678366477781218 ], [ -79.304853078003276, 43.676548880516876 ], [ -79.30790401504602, 43.673928965513106 ], [ -79.312991245337585, 43.686242971080809 ], [ -79.308071255080634, 43.687482565366864 ], [ -79.308830141229365, 43.689362228889841 ], [ -79.303495144580566, 43.690585763291146 ], [ -79.303409132512883, 43.690304707843985 ], [ -79.294284905871436, 43.692504665464327 ], [ -79.292753214047011, 43.689087006999124 ], [ -79.287813916087217, 43.690018384090976 ], [ -79.284653320823992, 43.68234306357472 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200511", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 60, "HOOD": "Woodbine-Lumsden", "FULLHOOD": "Woodbine-Lumsden (60)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.303383220714892, 43.691725543347673 ], [ -79.302847493111798, 43.690529881240721 ], [ -79.303409132512883, 43.690304707843985 ], [ -79.303495144580566, 43.690585763291146 ], [ -79.308830141229365, 43.689362228889841 ], [ -79.308071255080634, 43.687482565366864 ], [ -79.312991245337585, 43.686242971080809 ], [ -79.318688908938668, 43.699449332614066 ], [ -79.3191599694281, 43.700878467710098 ], [ -79.315365236957405, 43.700312387598487 ], [ -79.314371003994694, 43.700360746295388 ], [ -79.312026876591418, 43.699425791748006 ], [ -79.305861047484939, 43.697352374412098 ], [ -79.303383220714892, 43.691725543347673 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200496", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 61, "HOOD": "Crescent Town", "FULLHOOD": "Crescent Town (61)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.288332385185385, 43.691266969209202 ], [ -79.287813916087217, 43.690018384090976 ], [ -79.292753214047011, 43.689087006999124 ], [ -79.294284905871436, 43.692504665464327 ], [ -79.302847493111798, 43.690529881240721 ], [ -79.305861047484939, 43.697352374412098 ], [ -79.30071351125153, 43.695746559095006 ], [ -79.297381156996636, 43.695185222866833 ], [ -79.297095406371042, 43.697469787848668 ], [ -79.296929566835843, 43.702290078020802 ], [ -79.293470835442037, 43.703030757781725 ], [ -79.290259608048245, 43.696124962653144 ], [ -79.288332385185385, 43.691266969209202 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200644", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 122, "HOOD": "Birchcliffe-Cliffside", "FULLHOOD": "Birchcliffe-Cliffside (122)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.245166384835684, 43.703800029181963 ], [ -79.244113625550156, 43.701128762965382 ], [ -79.244492973866627, 43.700718972125692 ], [ -79.246315989751608, 43.699684009254291 ], [ -79.246176039443668, 43.699426029096507 ], [ -79.247305990507016, 43.698714025568378 ], [ -79.249401984287118, 43.69807099850302 ], [ -79.251241046272597, 43.696964007464977 ], [ -79.253187048809082, 43.696260014657362 ], [ -79.253511051191765, 43.695976994569925 ], [ -79.255487986465141, 43.695111040909964 ], [ -79.256900049833007, 43.694039030276912 ], [ -79.257290046550196, 43.69353600919149 ], [ -79.257814951635027, 43.693345967869327 ], [ -79.260631985757016, 43.689814030872974 ], [ -79.262478981206257, 43.68803300565002 ], [ -79.262721032190726, 43.688143986684885 ], [ -79.26306904151086, 43.688032969958037 ], [ -79.263564975270612, 43.687386965791028 ], [ -79.263655960975512, 43.687055997623368 ], [ -79.263452967475956, 43.687016996873602 ], [ -79.263732030642288, 43.686710039721866 ], [ -79.266628955787937, 43.684466975657315 ], [ -79.26695796506317, 43.683977038867496 ], [ -79.267384964397834, 43.683789969895621 ], [ -79.267674045732051, 43.683289973863829 ], [ -79.268098025245976, 43.68307603076174 ], [ -79.268312013457162, 43.682597040145858 ], [ -79.270346010204378, 43.680715015317126 ], [ -79.270308963436179, 43.680548009540203 ], [ -79.270702971165051, 43.680365019840742 ], [ -79.272103017483502, 43.678769985077039 ], [ -79.272623952805617, 43.678515991437813 ], [ -79.273429024614046, 43.677200010099149 ], [ -79.274899008088227, 43.6757009664232 ], [ -79.276010044382545, 43.674160033506666 ], [ -79.276426011942547, 43.673901018647435 ], [ -79.277639950161898, 43.672082020869588 ], [ -79.278313955509518, 43.672177961035537 ], [ -79.279831009650067, 43.671052960993052 ], [ -79.287528214217915, 43.689328430351118 ], [ -79.279875522054539, 43.69106802746191 ], [ -79.276859573838763, 43.691958897528551 ], [ -79.272356125451864, 43.694087843615868 ], [ -79.269758810749735, 43.695948412827555 ], [ -79.268188334372979, 43.697482229942757 ], [ -79.266835532364382, 43.69920845465851 ], [ -79.254208656583543, 43.718132602317816 ], [ -79.251312634507087, 43.718771310744906 ], [ -79.246816588270306, 43.707667524137207 ], [ -79.247510239006232, 43.707128955512644 ], [ -79.247558339882957, 43.706805715700369 ], [ -79.247031799963352, 43.705929323290029 ], [ -79.24678818145253, 43.70493268155149 ], [ -79.246211850225748, 43.704589332403501 ], [ -79.245473859898638, 43.704399141806675 ], [ -79.245166384835684, 43.703800029181963 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200632", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 121, "HOOD": "Oakridge", "FULLHOOD": "Oakridge (121)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.271058132426489, 43.694945815579672 ], [ -79.273440480842183, 43.693492006291137 ], [ -79.276859573838763, 43.691958897528551 ], [ -79.279875522054539, 43.69106802746191 ], [ -79.287528214217915, 43.689328430351118 ], [ -79.290953842060432, 43.697670524942609 ], [ -79.290258029082381, 43.697733576616528 ], [ -79.289523948780797, 43.698235793719114 ], [ -79.288632737996693, 43.698591623855876 ], [ -79.287913837289381, 43.698562856449882 ], [ -79.287165540361457, 43.698254495613206 ], [ -79.286532720789012, 43.698254014816207 ], [ -79.285608873962971, 43.698447208227186 ], [ -79.285029476732859, 43.698744672432468 ], [ -79.282507324234814, 43.699283021015404 ], [ -79.281826882614027, 43.699641964064973 ], [ -79.282361926953996, 43.701333715954576 ], [ -79.281934607889198, 43.702389696943449 ], [ -79.282029210738798, 43.702553242435584 ], [ -79.282783337737129, 43.702654591082549 ], [ -79.283227459198315, 43.703183460141567 ], [ -79.28297918314442, 43.703620913652173 ], [ -79.282563103391155, 43.70384880270916 ], [ -79.282401415877175, 43.704296557523392 ], [ -79.282483954524608, 43.704883009524025 ], [ -79.282203355875765, 43.70558112001234 ], [ -79.282548001826214, 43.706117498632118 ], [ -79.28171164816078, 43.706284968813193 ], [ -79.280986683566638, 43.70689537960704 ], [ -79.281259858731502, 43.708196026419685 ], [ -79.281067593956607, 43.708409180653497 ], [ -79.280954150080419, 43.709334937538955 ], [ -79.281254108752094, 43.710131791991486 ], [ -79.280953853845745, 43.710649475889596 ], [ -79.281122437506369, 43.710832048045596 ], [ -79.281962755542423, 43.71096179360103 ], [ -79.28243412921023, 43.711746187530828 ], [ -79.280999322749139, 43.712099730086159 ], [ -79.275958738331653, 43.700012718038245 ], [ -79.269356216778647, 43.701267382607924 ], [ -79.267785231260348, 43.699844158017008 ], [ -79.267554325184108, 43.698814174664733 ], [ -79.267853691929062, 43.697866851758072 ], [ -79.269758810749735, 43.695948412827555 ], [ -79.271058132426489, 43.694945815579672 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200475", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 120, "HOOD": "Clairlea-Birchmount", "FULLHOOD": "Clairlea-Birchmount (120)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.25913088157094, 43.71079301392674 ], [ -79.267853691929062, 43.697866851758072 ], [ -79.267554325184108, 43.698814174664733 ], [ -79.267643649563908, 43.699589870046474 ], [ -79.269356216778647, 43.701267382607924 ], [ -79.275958738331653, 43.700012718038245 ], [ -79.280999322749139, 43.712099730086159 ], [ -79.28243412921023, 43.711746187530828 ], [ -79.281962755542423, 43.71096179360103 ], [ -79.281122437506369, 43.710832048045596 ], [ -79.280953853845745, 43.710649475889596 ], [ -79.281254108752094, 43.710131791991486 ], [ -79.280954150080419, 43.709334937538955 ], [ -79.281067593956607, 43.708409180653497 ], [ -79.281259858731502, 43.708196026419685 ], [ -79.280986683566638, 43.70689537960704 ], [ -79.28171164816078, 43.706284968813193 ], [ -79.282548001826214, 43.706117498632118 ], [ -79.282203355875765, 43.70558112001234 ], [ -79.282483954524608, 43.704883009524025 ], [ -79.282401415877175, 43.704296557523392 ], [ -79.282563103391155, 43.70384880270916 ], [ -79.28297918314442, 43.703620913652173 ], [ -79.283227459198315, 43.703183460141567 ], [ -79.282783337737129, 43.702654591082549 ], [ -79.282029210738798, 43.702553242435584 ], [ -79.281934607889198, 43.702389696943449 ], [ -79.282361926953996, 43.701333715954576 ], [ -79.281826882614027, 43.699641964064973 ], [ -79.282507324234814, 43.699283021015404 ], [ -79.285029476732859, 43.698744672432468 ], [ -79.285608873962971, 43.698447208227186 ], [ -79.286532720789012, 43.698254014816207 ], [ -79.287165540361457, 43.698254495613206 ], [ -79.287913837289381, 43.698562856449882 ], [ -79.288632737996693, 43.698591623855876 ], [ -79.289523948780797, 43.698235793719114 ], [ -79.290258029082381, 43.697733576616528 ], [ -79.290953842060432, 43.697670524942609 ], [ -79.292446760176858, 43.700629517966171 ], [ -79.302654513133035, 43.724714520930341 ], [ -79.30011551631236, 43.725058474807717 ], [ -79.277879590323508, 43.730006250770337 ], [ -79.271120640684586, 43.714192677561101 ], [ -79.265681218846424, 43.715568859507663 ], [ -79.254208656583543, 43.718132602317816 ], [ -79.25913088157094, 43.71079301392674 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200422", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 119, "HOOD": "Wexford\/Maryvale", "FULLHOOD": "Wexford\/Maryvale (119)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.281507089097602, 43.739327954002448 ], [ -79.277879590323508, 43.730006250770337 ], [ -79.30011551631236, 43.725058474807717 ], [ -79.302654513133035, 43.724714520930341 ], [ -79.309796365612286, 43.742133660442526 ], [ -79.315433162181193, 43.758443342998966 ], [ -79.319684789824009, 43.768294637277599 ], [ -79.314459939337482, 43.76836498848035 ], [ -79.311202790224215, 43.768774657612084 ], [ -79.294356945673243, 43.772670317791466 ], [ -79.29138337302075, 43.765693556953153 ], [ -79.291455000930242, 43.763863485707262 ], [ -79.29096115559723, 43.762490083494392 ], [ -79.281507089097602, 43.739327954002448 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35203403", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 126, "HOOD": "Dorset Park", "FULLHOOD": "Dorset Park (126)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.264447987723159, 43.749674288465812 ], [ -79.263993475666311, 43.748581139020878 ], [ -79.272205301880206, 43.743390247040281 ], [ -79.281507089097602, 43.739327954002448 ], [ -79.29096115559723, 43.762490083494392 ], [ -79.291455000930242, 43.763863485707262 ], [ -79.29138337302075, 43.765693556953153 ], [ -79.294356945673243, 43.772670317791466 ], [ -79.274731799924282, 43.77721254957094 ], [ -79.271408512773448, 43.769073901093101 ], [ -79.270793366524728, 43.766544372049601 ], [ -79.265761603401216, 43.753646911647607 ], [ -79.264447987723159, 43.749674288465812 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35203465", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 125, "HOOD": "Ionview", "FULLHOOD": "Ionview (125)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.267968927908299, 43.732242463035419 ], [ -79.267438666833598, 43.730983623092101 ], [ -79.269990414231145, 43.72844648171175 ], [ -79.27419888995648, 43.723711118485653 ], [ -79.27482830686597, 43.722618882342296 ], [ -79.277670441964858, 43.729215169011674 ], [ -79.278015202838461, 43.730648054176214 ], [ -79.281507089097602, 43.739327954002448 ], [ -79.272205301880206, 43.743390247040281 ], [ -79.268272876878399, 43.745915616164829 ], [ -79.262950195878901, 43.733450876241356 ], [ -79.267968927908299, 43.732242463035419 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35203439", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 124, "HOOD": "Kennedy Park", "FULLHOOD": "Kennedy Park (124)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.247651916369406, 43.727914419321188 ], [ -79.254208656583543, 43.718132602317816 ], [ -79.265681218846424, 43.715568859507663 ], [ -79.271120640684586, 43.714192677561101 ], [ -79.27482830686597, 43.722618882342296 ], [ -79.27419888995648, 43.723711118485653 ], [ -79.269990414231145, 43.72844648171175 ], [ -79.267438666833598, 43.730983623092101 ], [ -79.267968927908299, 43.732242463035419 ], [ -79.261501594938579, 43.733799101145024 ], [ -79.248084118331107, 43.736684323990389 ], [ -79.245447283962733, 43.73052813377938 ], [ -79.247651916369406, 43.727914419321188 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35203270", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 123, "HOOD": "Cliffcrest", "FULLHOOD": "Cliffcrest (123)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.225310872623126, 43.731387728412074 ], [ -79.224815048492829, 43.731157054927039 ], [ -79.22462617576133, 43.730406790292101 ], [ -79.223981450228678, 43.729955596346819 ], [ -79.223115868324726, 43.729834123762558 ], [ -79.222591841244167, 43.72950182169199 ], [ -79.220817993038779, 43.729023957054842 ], [ -79.220345481601356, 43.728629523627518 ], [ -79.218624243741473, 43.728053423795842 ], [ -79.216563820277514, 43.72761612631674 ], [ -79.215000117680461, 43.727591720982375 ], [ -79.214165606278897, 43.727263533651858 ], [ -79.213820969943967, 43.726777991822942 ], [ -79.214722044438389, 43.726495006776105 ], [ -79.216495002636918, 43.724671994134859 ], [ -79.217404951363235, 43.723304045089598 ], [ -79.218517027944074, 43.72207498613782 ], [ -79.219689989850409, 43.72157502295989 ], [ -79.222682981709312, 43.719344038085268 ], [ -79.224174047735445, 43.717781984987163 ], [ -79.225688044120062, 43.715477975429266 ], [ -79.226638955371641, 43.713381976169437 ], [ -79.226627003150583, 43.712954022763178 ], [ -79.225207018273821, 43.71238701484792 ], [ -79.22561796615571, 43.712110015545221 ], [ -79.225770975881787, 43.711693984141206 ], [ -79.22500900201544, 43.711060037955015 ], [ -79.225132960820119, 43.710810000584225 ], [ -79.225678021825473, 43.710549035899795 ], [ -79.226466039524411, 43.708899970814073 ], [ -79.226318047971006, 43.708482959250702 ], [ -79.225823051041019, 43.708101971363654 ], [ -79.225984969232243, 43.707365971498106 ], [ -79.226237991226981, 43.707243961484693 ], [ -79.226503975058577, 43.708039981627522 ], [ -79.227802989166349, 43.708064986933984 ], [ -79.2280889666755, 43.708307968986354 ], [ -79.227190004258915, 43.708766989916022 ], [ -79.226735021096303, 43.709736995176826 ], [ -79.226289018946147, 43.711255980891067 ], [ -79.226594015466986, 43.71238198342693 ], [ -79.228135999897958, 43.712643991876462 ], [ -79.229394964765888, 43.712568978022411 ], [ -79.229976996997181, 43.712181999420125 ], [ -79.230506994857478, 43.711528027582808 ], [ -79.230565013069452, 43.7111109694291 ], [ -79.230363013020394, 43.71071599198649 ], [ -79.230127959168072, 43.710473984108788 ], [ -79.229536027161785, 43.710310976916681 ], [ -79.229132954773775, 43.710544003342427 ], [ -79.229109028531823, 43.711736018488182 ], [ -79.228066959294324, 43.711755969164329 ], [ -79.227190004858173, 43.71150796518841 ], [ -79.227270020539336, 43.711230958647015 ], [ -79.228234025215414, 43.710934978768272 ], [ -79.228041953669589, 43.710908957135295 ], [ -79.228035038330532, 43.710472980090941 ], [ -79.228282005329646, 43.709959020952461 ], [ -79.227810002544786, 43.709640960989404 ], [ -79.227896955149134, 43.709368022268372 ], [ -79.228218962485485, 43.709273992780957 ], [ -79.229158975093227, 43.70963899962549 ], [ -79.229684033780458, 43.709215042315513 ], [ -79.229149949956479, 43.708784043370855 ], [ -79.22851104145731, 43.709083988915737 ], [ -79.228416029418398, 43.7087859953985 ], [ -79.229224001048465, 43.708437988686214 ], [ -79.229445025520704, 43.708171986319371 ], [ -79.22947604969842, 43.707695008134444 ], [ -79.229768028208483, 43.707762002553643 ], [ -79.229904953338746, 43.708462036889877 ], [ -79.231015989197857, 43.708768013633197 ], [ -79.231409990421326, 43.708432038894649 ], [ -79.231834970613818, 43.708515038386778 ], [ -79.231360953007439, 43.709498000570768 ], [ -79.230106038732458, 43.710050017361553 ], [ -79.230636983073026, 43.710477002368144 ], [ -79.231124042696621, 43.710596972708174 ], [ -79.231610003988848, 43.710420042744317 ], [ -79.233039962813052, 43.709299007013257 ], [ -79.233311031107363, 43.708352959973105 ], [ -79.233195955245549, 43.708117043201007 ], [ -79.23345604434536, 43.707590042653472 ], [ -79.231857022355115, 43.706723018873326 ], [ -79.231086017301109, 43.706626024183358 ], [ -79.231061036756813, 43.70639996096444 ], [ -79.229770022745214, 43.705884965211872 ], [ -79.229518993033693, 43.705971006499404 ], [ -79.228764960150272, 43.706886968488419 ], [ -79.228617950030753, 43.707375022105317 ], [ -79.22757898364263, 43.707386014674839 ], [ -79.227661037482164, 43.707109039263479 ], [ -79.228358973240148, 43.706872035927177 ], [ -79.229065954589572, 43.705617957948718 ], [ -79.229159952140535, 43.705379964414568 ], [ -79.228939993540962, 43.704764970448409 ], [ -79.229196031562196, 43.704679007986378 ], [ -79.230131037762618, 43.705125036250024 ], [ -79.231110953448606, 43.705325010630432 ], [ -79.231525038712803, 43.705272994780842 ], [ -79.232152960983115, 43.704832973234488 ], [ -79.232535031063946, 43.705275021105898 ], [ -79.2332109872616, 43.705244961125459 ], [ -79.233304978871729, 43.705404036311243 ], [ -79.232991028095839, 43.705629001856025 ], [ -79.233098011673377, 43.705864973889696 ], [ -79.232712005652616, 43.706312971387632 ], [ -79.232657041968466, 43.706685969077519 ], [ -79.23306000734388, 43.706877006110567 ], [ -79.233452013835674, 43.706779002613153 ], [ -79.233802035363226, 43.706883971279794 ], [ -79.233872958987476, 43.706633014806457 ], [ -79.234128037782739, 43.706646046989789 ], [ -79.2339690018959, 43.706390998085183 ], [ -79.234367006663959, 43.706343044434284 ], [ -79.233592001115966, 43.705814005428529 ], [ -79.233954018255631, 43.705374006067331 ], [ -79.23410604213754, 43.705424964466111 ], [ -79.23576597557151, 43.704482981898202 ], [ -79.236527037566574, 43.703270019889899 ], [ -79.23638795060333, 43.702403964983553 ], [ -79.235416014144306, 43.701664046783215 ], [ -79.235631982664913, 43.701244022037038 ], [ -79.23637604268211, 43.7013050129693 ], [ -79.236842020871478, 43.701883999262293 ], [ -79.237437011821896, 43.702213010359088 ], [ -79.238171978893902, 43.702211016358234 ], [ -79.238603032740329, 43.701892960934742 ], [ -79.23913803447789, 43.702041001499261 ], [ -79.239049986102842, 43.702475965984149 ], [ -79.238486991841029, 43.702459011030534 ], [ -79.237779977094746, 43.702830964671733 ], [ -79.237541004570957, 43.703579026916834 ], [ -79.236776968924744, 43.704156958098785 ], [ -79.236660956707553, 43.704626956626392 ], [ -79.237389967148289, 43.705053004596863 ], [ -79.238584015846385, 43.704598989843561 ], [ -79.23831595285499, 43.70432003242076 ], [ -79.237589046785956, 43.704321971538711 ], [ -79.237659012986157, 43.70416596752473 ], [ -79.238599040649504, 43.70425697033761 ], [ -79.239305992643978, 43.704051995416464 ], [ -79.239715954257164, 43.703738021972448 ], [ -79.239030038604795, 43.703601972632093 ], [ -79.238148035944974, 43.702993990091606 ], [ -79.239366966207072, 43.703472043875024 ], [ -79.240118968496802, 43.703482992349542 ], [ -79.241909039662715, 43.702250002315353 ], [ -79.244113625550156, 43.701128762965382 ], [ -79.245331400340078, 43.704209446476852 ], [ -79.245473859898638, 43.704399141806675 ], [ -79.246211850225748, 43.704589332403501 ], [ -79.24678818145253, 43.70493268155149 ], [ -79.247031799963352, 43.705929323290029 ], [ -79.247558339882957, 43.706805715700369 ], [ -79.247510239006232, 43.707128955512644 ], [ -79.246816588270306, 43.707667524137207 ], [ -79.251312634507087, 43.718771310744906 ], [ -79.254208656583543, 43.718132602317816 ], [ -79.247475578737877, 43.728175469990134 ], [ -79.246288900058588, 43.729696855763464 ], [ -79.245023148736919, 43.73094695998855 ], [ -79.242786120639096, 43.732713322299233 ], [ -79.228879789173391, 43.741442927025332 ], [ -79.228821153505663, 43.740996608919595 ], [ -79.228182712010721, 43.740622682140149 ], [ -79.22455985075355, 43.732080819890662 ], [ -79.225310872623126, 43.731387728412074 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35203289", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 138, "HOOD": "Eglinton East", "FULLHOOD": "Eglinton East (138)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.229265426440463, 43.742354663272181 ], [ -79.228879789173391, 43.741442927025332 ], [ -79.242786120639096, 43.732713322299233 ], [ -79.245447283962733, 43.73052813377938 ], [ -79.248084118331107, 43.736684323990389 ], [ -79.262950195878901, 43.733450876241356 ], [ -79.266635428195926, 43.742053325592416 ], [ -79.261695570642331, 43.743068707370163 ], [ -79.261486684564773, 43.742561339126155 ], [ -79.260292614826895, 43.742694944367869 ], [ -79.257750240826653, 43.742113866195282 ], [ -79.255973318270179, 43.742330180323968 ], [ -79.255460433275218, 43.741812221641389 ], [ -79.254405540571042, 43.741716542490352 ], [ -79.25319987811362, 43.741822711083223 ], [ -79.250607143891855, 43.742152228288738 ], [ -79.250987112897761, 43.743041480428879 ], [ -79.249853580366604, 43.743293106260118 ], [ -79.248562309047756, 43.744560859563819 ], [ -79.248160035892695, 43.744725820165037 ], [ -79.247644190248366, 43.744528785997446 ], [ -79.246636994943799, 43.745422705366359 ], [ -79.246172937897882, 43.745577709484721 ], [ -79.244837767808633, 43.745791264960083 ], [ -79.244441524540392, 43.74574917336632 ], [ -79.244192725145851, 43.74534018090133 ], [ -79.242441540449093, 43.745340276431378 ], [ -79.241553031575194, 43.745146486535766 ], [ -79.241194591330668, 43.745510136571035 ], [ -79.240199934710702, 43.745972015007631 ], [ -79.240019620687363, 43.747463899032986 ], [ -79.23971001688534, 43.747855301508643 ], [ -79.239580138058571, 43.748474516020707 ], [ -79.239156726553645, 43.748936178707737 ], [ -79.238736747579708, 43.748857694495506 ], [ -79.23857187493293, 43.748972177641797 ], [ -79.238636103312331, 43.749747502297765 ], [ -79.238332357527426, 43.750787299756787 ], [ -79.237715041471787, 43.751507019724293 ], [ -79.237846070368221, 43.751698167097217 ], [ -79.238179148135814, 43.751775315196859 ], [ -79.237982099885343, 43.752141441387188 ], [ -79.237511126519436, 43.752107175697972 ], [ -79.237617016423229, 43.752306847496286 ], [ -79.238156453127516, 43.752549298999753 ], [ -79.238272623399197, 43.752821142896984 ], [ -79.23739725741801, 43.75344695595885 ], [ -79.236680800959917, 43.753309881931465 ], [ -79.235921899904469, 43.753352184095725 ], [ -79.234427752938657, 43.753049971953111 ], [ -79.233832625988768, 43.753158792234196 ], [ -79.229265426440463, 43.742354663272181 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35203384", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 127, "HOOD": "Bendale", "FULLHOOD": "Bendale (127)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.244601411367427, 43.745766121523538 ], [ -79.245247186525745, 43.745806551994264 ], [ -79.246636994943799, 43.745422705366359 ], [ -79.247644190248366, 43.744528785997446 ], [ -79.248160035892695, 43.744725820165037 ], [ -79.248562309047756, 43.744560859563819 ], [ -79.249853580366604, 43.743293106260118 ], [ -79.250987112897761, 43.743041480428879 ], [ -79.250607143891855, 43.742152228288738 ], [ -79.254405540571042, 43.741716542490352 ], [ -79.255460433275218, 43.741812221641389 ], [ -79.255973318270179, 43.742330180323968 ], [ -79.257750240826653, 43.742113866195282 ], [ -79.260292614826895, 43.742694944367869 ], [ -79.261486684564773, 43.742561339126155 ], [ -79.261695570642331, 43.743068707370163 ], [ -79.266635428195926, 43.742053325592416 ], [ -79.268272876878399, 43.745915616164829 ], [ -79.263993475666311, 43.748581139020878 ], [ -79.265761603401216, 43.753646911647607 ], [ -79.270793366524728, 43.766544372049601 ], [ -79.271408512773448, 43.769073901093101 ], [ -79.274731799924282, 43.77721254957094 ], [ -79.254940107233722, 43.781135029571061 ], [ -79.252649162087152, 43.775742011319394 ], [ -79.250368725765469, 43.769087686839327 ], [ -79.24509199711629, 43.755599022390612 ], [ -79.243229424038091, 43.756003759939624 ], [ -79.24290947906934, 43.755665686762988 ], [ -79.242273324086611, 43.755755016604439 ], [ -79.240997053835855, 43.755222103930265 ], [ -79.240077723750005, 43.755225957876128 ], [ -79.238269777570082, 43.754189730192678 ], [ -79.2381598401779, 43.753701759583002 ], [ -79.237609322055576, 43.753414218385679 ], [ -79.238272623399197, 43.752821142896984 ], [ -79.238156453127516, 43.752549298999753 ], [ -79.237617016423229, 43.752306847496286 ], [ -79.237511126519436, 43.752107175697972 ], [ -79.237982099885343, 43.752141441387188 ], [ -79.238179148135814, 43.751775315196859 ], [ -79.237846070368221, 43.751698167097217 ], [ -79.237715041471787, 43.751507019724293 ], [ -79.238332357527426, 43.750787299756787 ], [ -79.238636103312331, 43.749747502297765 ], [ -79.23857187493293, 43.748972177641797 ], [ -79.238736747579708, 43.748857694495506 ], [ -79.239156726553645, 43.748936178707737 ], [ -79.239580138058571, 43.748474516020707 ], [ -79.23971001688534, 43.747855301508643 ], [ -79.240019620687363, 43.747463899032986 ], [ -79.240199934710702, 43.745972015007631 ], [ -79.241194591330668, 43.745510136571035 ], [ -79.241553031575194, 43.745146486535766 ], [ -79.242441540449093, 43.745340276431378 ], [ -79.244192725145851, 43.74534018090133 ], [ -79.244320081853957, 43.745657290237943 ], [ -79.244601411367427, 43.745766121523538 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35203305", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 139, "HOOD": "Scarborough Village", "FULLHOOD": "Scarborough Village (139)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.208888200263701, 43.740614473298457 ], [ -79.20831973072589, 43.739257904235977 ], [ -79.208334219741573, 43.737785795103022 ], [ -79.207620567501863, 43.736065793703148 ], [ -79.205869087045045, 43.737748933198354 ], [ -79.204734971939175, 43.734986025277834 ], [ -79.205020037668774, 43.735071968110795 ], [ -79.204967973282905, 43.735269010490597 ], [ -79.205282981409397, 43.735333008306355 ], [ -79.206056042050662, 43.735070046890954 ], [ -79.208683949632885, 43.733149039548948 ], [ -79.212891031786043, 43.728527996457181 ], [ -79.21329597640802, 43.727872961894633 ], [ -79.21335502686658, 43.727256989513414 ], [ -79.213820969943967, 43.726777991822942 ], [ -79.214165606278897, 43.727263533651858 ], [ -79.215000117680461, 43.727591720982375 ], [ -79.216563820277514, 43.72761612631674 ], [ -79.218624243741473, 43.728053423795842 ], [ -79.220345481601356, 43.728629523627518 ], [ -79.220817993038779, 43.729023957054842 ], [ -79.222591841244167, 43.72950182169199 ], [ -79.223115868324726, 43.729834123762558 ], [ -79.223981450228678, 43.729955596346819 ], [ -79.224445064247732, 43.730232942778208 ], [ -79.224815048492829, 43.731157054927039 ], [ -79.225310872623126, 43.731387728412074 ], [ -79.22455985075355, 43.732080819890662 ], [ -79.228182712010721, 43.740622682140149 ], [ -79.228821153505663, 43.740996608919595 ], [ -79.228879789173391, 43.741442927025332 ], [ -79.224987250664554, 43.744242158057311 ], [ -79.220899931435468, 43.747841364073324 ], [ -79.219857302075326, 43.748457059173276 ], [ -79.217745780607729, 43.749297513114854 ], [ -79.213815399603817, 43.750316563284819 ], [ -79.211302344005844, 43.751170245543619 ], [ -79.211104929517035, 43.749995124397415 ], [ -79.20787495312608, 43.742525429878235 ], [ -79.208351330130256, 43.742152030645101 ], [ -79.208888200263701, 43.740614473298457 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35203297", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 137, "HOOD": "Woburn", "FULLHOOD": "Woburn (137)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.205642243891489, 43.764045259820591 ], [ -79.202036541560418, 43.764873657106612 ], [ -79.201394047036104, 43.764023415588078 ], [ -79.201569714671137, 43.763134825141698 ], [ -79.202730731825056, 43.762531873551602 ], [ -79.201828005392215, 43.761563310024378 ], [ -79.201772157471325, 43.760941129772938 ], [ -79.202421614928667, 43.760411148532881 ], [ -79.202942434491675, 43.758366484415184 ], [ -79.203488791994218, 43.757761511578231 ], [ -79.202891949171786, 43.756034142350671 ], [ -79.203979821107538, 43.755676495734718 ], [ -79.203448556085561, 43.753975904220241 ], [ -79.20647592474208, 43.753190867922683 ], [ -79.212599649582373, 43.750684727215685 ], [ -79.217745780607729, 43.749297513114854 ], [ -79.219857302075326, 43.748457059173276 ], [ -79.221670095065619, 43.747215749996741 ], [ -79.224987250664554, 43.744242158057311 ], [ -79.228879789173391, 43.741442927025332 ], [ -79.233832625988768, 43.753158792234196 ], [ -79.234427752938657, 43.753049971953111 ], [ -79.235921899904469, 43.753352184095725 ], [ -79.237696772006515, 43.753397562985846 ], [ -79.2381598401779, 43.753701759583002 ], [ -79.238269777570082, 43.754189730192678 ], [ -79.240077723750005, 43.755225957876128 ], [ -79.240997053835855, 43.755222103930265 ], [ -79.242273324086611, 43.755755016604439 ], [ -79.24290947906934, 43.755665686762988 ], [ -79.243229424038091, 43.756003759939624 ], [ -79.24509199711629, 43.755599022390612 ], [ -79.250368725765469, 43.769087686839327 ], [ -79.252649162087152, 43.775742011319394 ], [ -79.254940107233722, 43.781135029571061 ], [ -79.244992256913619, 43.783092473066375 ], [ -79.237737079591824, 43.784868519626222 ], [ -79.228837417055487, 43.78764438298893 ], [ -79.225402934587706, 43.789230060956328 ], [ -79.224451542418592, 43.788387848124046 ], [ -79.224208859764687, 43.788609211566403 ], [ -79.223909588542199, 43.788640568917032 ], [ -79.221941125665822, 43.787961662203905 ], [ -79.222011837464805, 43.787674706732652 ], [ -79.222814464628428, 43.787011878291302 ], [ -79.222959373120148, 43.785897646273803 ], [ -79.222334465043161, 43.786014044102529 ], [ -79.222316341159797, 43.7857886289124 ], [ -79.221387617825854, 43.785675163037951 ], [ -79.220554570238519, 43.785266031819013 ], [ -79.220245572269718, 43.784793041091412 ], [ -79.220743860647985, 43.784332527934957 ], [ -79.219890850852124, 43.783761049868112 ], [ -79.219836136384458, 43.783093889316753 ], [ -79.219412895547748, 43.782700222667877 ], [ -79.218954893592098, 43.782638987083516 ], [ -79.217952663393731, 43.783325682524342 ], [ -79.217856982045319, 43.783621338128135 ], [ -79.218182458945023, 43.783959566220929 ], [ -79.217927277853363, 43.784180631622817 ], [ -79.216170870448849, 43.783901097335352 ], [ -79.215470797118499, 43.783205948504317 ], [ -79.214125581917372, 43.783725133995212 ], [ -79.213772560817219, 43.783476481297491 ], [ -79.213459166566281, 43.782733261394434 ], [ -79.212778737281411, 43.782632607591218 ], [ -79.212457483398609, 43.782150402345259 ], [ -79.211747823197584, 43.781779143190256 ], [ -79.211142890221581, 43.781229483828227 ], [ -79.22220725764582, 43.778566008122645 ], [ -79.218664417813329, 43.769822275791761 ], [ -79.212706514908859, 43.771133101107409 ], [ -79.210253107081925, 43.771189593412274 ], [ -79.208774923204544, 43.771468358937739 ], [ -79.205642243891489, 43.764045259820591 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35203314", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 140, "HOOD": "Guildwood", "FULLHOOD": "Guildwood (140)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.170626139354852, 43.755661143403486 ], [ -79.175060970691661, 43.754067963385289 ], [ -79.17894500192368, 43.752265997808287 ], [ -79.180225998565732, 43.751422047416511 ], [ -79.181670019022789, 43.750841997259755 ], [ -79.182760951141077, 43.750076010664891 ], [ -79.183260025736885, 43.749413040096776 ], [ -79.185773964932096, 43.748188034012678 ], [ -79.186343982687518, 43.747683976972233 ], [ -79.187544019797429, 43.747419003455732 ], [ -79.188928033163663, 43.746635998333517 ], [ -79.189640002673542, 43.746093035295466 ], [ -79.189843973072215, 43.745700006271576 ], [ -79.190444018807966, 43.745376980014974 ], [ -79.193504002995198, 43.742894971765985 ], [ -79.194083052168281, 43.742791958470299 ], [ -79.194504048284045, 43.742505959910012 ], [ -79.195194030909107, 43.741412964344782 ], [ -79.19556301580883, 43.741167008821272 ], [ -79.195761994983357, 43.741241983886511 ], [ -79.196136005574644, 43.740924001363823 ], [ -79.197531970426596, 43.739136027582717 ], [ -79.202364030987823, 43.735724002929587 ], [ -79.204734971939175, 43.734986025277834 ], [ -79.205869087045045, 43.737748933198354 ], [ -79.207620567501863, 43.736065793703148 ], [ -79.208334219741573, 43.737785795103022 ], [ -79.20831973072589, 43.739257904235977 ], [ -79.208888200263701, 43.740614473298457 ], [ -79.208351330130256, 43.742152030645101 ], [ -79.20787495312608, 43.742525429878235 ], [ -79.211104929517035, 43.749995124397415 ], [ -79.211302344005844, 43.751170245543619 ], [ -79.20647592474208, 43.753190867922683 ], [ -79.204021483470072, 43.753854561201493 ], [ -79.177210677220486, 43.759036219531623 ], [ -79.175156253786596, 43.757907927099588 ], [ -79.174255197046065, 43.757686588703777 ], [ -79.172700088869419, 43.756950421076745 ], [ -79.171625858891048, 43.756735205318947 ], [ -79.171414237222166, 43.756344654452171 ], [ -79.170626139354852, 43.755661143403486 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35203331", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 135, "HOOD": "Morningside", "FULLHOOD": "Morningside (135)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.193335546691813, 43.785334076704316 ], [ -79.190636433216099, 43.778913838166226 ], [ -79.191704433247807, 43.778429431613255 ], [ -79.193000241506908, 43.778314897127061 ], [ -79.193038404023554, 43.777874325248725 ], [ -79.192673894370344, 43.777184250474271 ], [ -79.193283351958812, 43.776752709684843 ], [ -79.193668177143024, 43.776767793146234 ], [ -79.194597184212, 43.777277745389654 ], [ -79.195146946813523, 43.777178316156728 ], [ -79.195000692389058, 43.775843479232961 ], [ -79.19537442152091, 43.775399202893915 ], [ -79.195881745812272, 43.775470223188449 ], [ -79.19674111976444, 43.776231107818049 ], [ -79.197973084223932, 43.77616952004616 ], [ -79.198831229308126, 43.775732867907003 ], [ -79.198932221234699, 43.775266278559847 ], [ -79.198572080077383, 43.774432263174255 ], [ -79.198691916809111, 43.774164009297316 ], [ -79.199551004537483, 43.773691359429087 ], [ -79.199611762439005, 43.772908984466071 ], [ -79.198839909116018, 43.771717416245941 ], [ -79.198788377688331, 43.771365446070845 ], [ -79.19962175031543, 43.770505224945701 ], [ -79.199996778270872, 43.769601774135332 ], [ -79.200663594282261, 43.768909955579886 ], [ -79.200789455960972, 43.768029584831481 ], [ -79.201413038659354, 43.767535209821339 ], [ -79.203042785643973, 43.767047650775446 ], [ -79.203475494084557, 43.766703293565406 ], [ -79.203328915869051, 43.766205803213211 ], [ -79.202036541560418, 43.764873657106612 ], [ -79.205642243891489, 43.764045259820591 ], [ -79.208774923204544, 43.771468358937739 ], [ -79.210253107081925, 43.771189593412274 ], [ -79.212706514908859, 43.771133101107409 ], [ -79.218664417813329, 43.769822275791761 ], [ -79.22220725764582, 43.778566008122645 ], [ -79.211142890221581, 43.781229483828227 ], [ -79.211747823197584, 43.781779143190256 ], [ -79.212457483398609, 43.782150402345259 ], [ -79.212778737281411, 43.782632607591218 ], [ -79.213459166566281, 43.782733261394434 ], [ -79.213772560817219, 43.783476481297491 ], [ -79.214125581917372, 43.783725133995212 ], [ -79.215470797118499, 43.783205948504317 ], [ -79.216170870448849, 43.783901097335352 ], [ -79.217927277853363, 43.784180631622817 ], [ -79.218182458945023, 43.783959566220929 ], [ -79.217856982045319, 43.783621338128135 ], [ -79.217952663393731, 43.783325682524342 ], [ -79.218954893592098, 43.782638987083516 ], [ -79.219412895547748, 43.782700222667877 ], [ -79.219836136384458, 43.783093889316753 ], [ -79.219890850852124, 43.783761049868112 ], [ -79.220743860647985, 43.784332527934957 ], [ -79.220245572269718, 43.784793041091412 ], [ -79.220554570238519, 43.785266031819013 ], [ -79.221387617825854, 43.785675163037951 ], [ -79.222316341159797, 43.7857886289124 ], [ -79.222334465043161, 43.786014044102529 ], [ -79.222959373120148, 43.785897646273803 ], [ -79.222814464628428, 43.787011878291302 ], [ -79.222011837464805, 43.787674706732652 ], [ -79.221941125665822, 43.787961662203905 ], [ -79.223909588542199, 43.788640568917032 ], [ -79.224208859764687, 43.788609211566403 ], [ -79.224451542418592, 43.788387848124046 ], [ -79.225402934587706, 43.789230060956328 ], [ -79.22221751701332, 43.791075607877609 ], [ -79.219713435247144, 43.792301467960868 ], [ -79.215270302804143, 43.793676148296107 ], [ -79.208358817554782, 43.794819806340691 ], [ -79.197305282951717, 43.796224019317435 ], [ -79.193678781215226, 43.787689491527445 ], [ -79.19353155896026, 43.785794912367599 ], [ -79.193335546691813, 43.785334076704316 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35203324", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 136, "HOOD": "West Hill", "FULLHOOD": "West Hill (136)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.157600485489723, 43.774869614635143 ], [ -79.15465338581248, 43.772540045510432 ], [ -79.153981786062573, 43.772179213884918 ], [ -79.153187709063246, 43.772083030997571 ], [ -79.152670824426878, 43.772435198276249 ], [ -79.152201236363481, 43.772388990798071 ], [ -79.151598616534457, 43.771781622456572 ], [ -79.151231268936527, 43.770887570284671 ], [ -79.150900098315915, 43.770682194939582 ], [ -79.150172469670707, 43.770701388057581 ], [ -79.149802427341115, 43.770926383667614 ], [ -79.148744423566853, 43.770860734344133 ], [ -79.147470798373249, 43.770288743877536 ], [ -79.147149867642824, 43.769918071667789 ], [ -79.14651144221456, 43.77027391208243 ], [ -79.146148892264378, 43.770259211055119 ], [ -79.145190889371065, 43.769189026342929 ], [ -79.145467474067445, 43.768540257797355 ], [ -79.145251574414601, 43.767559435852156 ], [ -79.144700511536684, 43.766623493629908 ], [ -79.146447961328192, 43.765533016018544 ], [ -79.147741951128694, 43.764375032701679 ], [ -79.149845979844301, 43.762283974435505 ], [ -79.151503981852017, 43.760144976696601 ], [ -79.152993007850796, 43.759080013831436 ], [ -79.155627984669906, 43.758974030332197 ], [ -79.159598019640057, 43.758546971542579 ], [ -79.163337003583862, 43.757526987308367 ], [ -79.167268974862552, 43.756825036246696 ], [ -79.170587307775563, 43.755674924780102 ], [ -79.171414237222166, 43.756344654452171 ], [ -79.171625858891048, 43.756735205318947 ], [ -79.172700088869419, 43.756950421076745 ], [ -79.174255197046065, 43.757686588703777 ], [ -79.175156253786596, 43.757907927099588 ], [ -79.177210677220486, 43.759036219531623 ], [ -79.203448556085561, 43.753975904220241 ], [ -79.203979821107538, 43.755676495734718 ], [ -79.202891949171786, 43.756034142350671 ], [ -79.203488791994218, 43.757761511578231 ], [ -79.202942434491675, 43.758366484415184 ], [ -79.202421614928667, 43.760411148532881 ], [ -79.201772157471325, 43.760941129772938 ], [ -79.201828005392215, 43.761563310024378 ], [ -79.202730731825056, 43.762531873551602 ], [ -79.201569714671137, 43.763134825141698 ], [ -79.201375361913762, 43.763816081116602 ], [ -79.20215885163482, 43.765034911932574 ], [ -79.203328915869051, 43.766205803213211 ], [ -79.203475494084557, 43.766703293565406 ], [ -79.203042785643973, 43.767047650775446 ], [ -79.201413038659354, 43.767535209821339 ], [ -79.200789455960972, 43.768029584831481 ], [ -79.200663594282261, 43.768909955579886 ], [ -79.199996778270872, 43.769601774135332 ], [ -79.19962175031543, 43.770505224945701 ], [ -79.198788377688331, 43.771365446070845 ], [ -79.198922537513909, 43.771862746137039 ], [ -79.199557255038997, 43.772656077057015 ], [ -79.199551004537483, 43.773691359429087 ], [ -79.198613576424066, 43.774288889210254 ], [ -79.198935433296668, 43.775572478434277 ], [ -79.198324137465463, 43.776067032773305 ], [ -79.19674111976444, 43.776231107818049 ], [ -79.195881745812272, 43.775470223188449 ], [ -79.19537442152091, 43.775399202893915 ], [ -79.195000692389058, 43.775843479232961 ], [ -79.195146946813523, 43.777178316156728 ], [ -79.194597184212, 43.777277745389654 ], [ -79.193494810945879, 43.776747049973459 ], [ -79.192841911130017, 43.776970865114677 ], [ -79.192670640992517, 43.777292309914742 ], [ -79.193092343467512, 43.778145320036955 ], [ -79.192886061562533, 43.778394107739295 ], [ -79.191704433247807, 43.778429431613255 ], [ -79.189442440450932, 43.779266974194876 ], [ -79.186983703297884, 43.779209999734078 ], [ -79.18654690153943, 43.779680252800205 ], [ -79.18609892751428, 43.780933657597913 ], [ -79.185606665525071, 43.781186985275198 ], [ -79.185234857736617, 43.781153987800792 ], [ -79.18406446500353, 43.780406170235452 ], [ -79.182777589734954, 43.780223598027987 ], [ -79.181465213802781, 43.781292206302126 ], [ -79.181228678589079, 43.781306446443615 ], [ -79.17991170976191, 43.780889228117161 ], [ -79.179239831411252, 43.780914624932095 ], [ -79.178289496133175, 43.780701355363824 ], [ -79.176234779180191, 43.780839623828214 ], [ -79.174251853865655, 43.779439436135554 ], [ -79.173038019972367, 43.779717099101454 ], [ -79.172461879296151, 43.77945584079098 ], [ -79.172014804974182, 43.779448692112652 ], [ -79.171252204055378, 43.780003693153631 ], [ -79.170577696534977, 43.780118924222137 ], [ -79.169739103349471, 43.779502294015302 ], [ -79.170082619214412, 43.778832483990328 ], [ -79.169686174999441, 43.778384961873222 ], [ -79.167915661401508, 43.778986809425085 ], [ -79.167934026393851, 43.779899249024588 ], [ -79.167569882865834, 43.780176336419927 ], [ -79.165688209441754, 43.77971533344585 ], [ -79.16557863482754, 43.779501764341859 ], [ -79.165958669790001, 43.778191629654643 ], [ -79.165525181429743, 43.777914621636128 ], [ -79.164852802142562, 43.7781282420152 ], [ -79.163876985332593, 43.779069365393894 ], [ -79.163513436187031, 43.779159123439818 ], [ -79.163146879780399, 43.7788783208374 ], [ -79.163153836656008, 43.777254610491262 ], [ -79.16294736050861, 43.777040381780715 ], [ -79.161334881740359, 43.777001493397961 ], [ -79.159914528425858, 43.77662847034231 ], [ -79.158581797040199, 43.775784610324955 ], [ -79.157600485489723, 43.774869614635143 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200001", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 131, "HOOD": "Rouge", "FULLHOOD": "Rouge (131)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.124873893951388, 43.784917968151078 ], [ -79.126798023143536, 43.782634996441459 ], [ -79.126702017611493, 43.782142019419425 ], [ -79.126965027559237, 43.782182966513069 ], [ -79.12726401284371, 43.78202997533959 ], [ -79.12835000354454, 43.780723970347509 ], [ -79.128562971365497, 43.780709994017734 ], [ -79.129724032474797, 43.779716034057877 ], [ -79.132897031139962, 43.77651297435991 ], [ -79.13471796520389, 43.775101977315252 ], [ -79.143492681130908, 43.795996932893004 ], [ -79.144346718259982, 43.797375278580262 ], [ -79.146222630603006, 43.79896715231947 ], [ -79.15147314904705, 43.795568707793642 ], [ -79.153915922887734, 43.795672098664198 ], [ -79.155785430557444, 43.796038580955191 ], [ -79.166016608819788, 43.7995466088257 ], [ -79.16835376195688, 43.799972957684048 ], [ -79.170025149750543, 43.800040056076178 ], [ -79.17354721878543, 43.799686271775137 ], [ -79.197305282951717, 43.796224019317435 ], [ -79.199806328627403, 43.802029929831718 ], [ -79.200404696337969, 43.804127296965 ], [ -79.201668086913415, 43.807050318706096 ], [ -79.204059184003029, 43.811783376307865 ], [ -79.206292316162049, 43.813350439113968 ], [ -79.215460471925013, 43.818982900835799 ], [ -79.21788850740792, 43.819900786764222 ], [ -79.218189425096341, 43.819819421901236 ], [ -79.219503245049239, 43.818060351718977 ], [ -79.219744440096136, 43.817980122797657 ], [ -79.243019632021046, 43.812984697863314 ], [ -79.250624452955165, 43.83059548558019 ], [ -79.250881829082317, 43.831844445815904 ], [ -79.251156776543098, 43.83664501223285 ], [ -79.22409909050252, 43.842986805290749 ], [ -79.206121941431604, 43.846893641096152 ], [ -79.170316174558664, 43.855447865543361 ], [ -79.159535914212995, 43.831748466533348 ], [ -79.156380098844068, 43.824414906248947 ], [ -79.152932870956235, 43.817155487180308 ], [ -79.152145193977347, 43.814677017317727 ], [ -79.151730089650755, 43.813976996635112 ], [ -79.151218756713476, 43.813874209468381 ], [ -79.14945982543972, 43.812472719789504 ], [ -79.148213704061448, 43.812312922040554 ], [ -79.146659508049026, 43.811333373886178 ], [ -79.146115603054014, 43.810829370985054 ], [ -79.146119501309826, 43.810577297169502 ], [ -79.14639152656693, 43.810473688771928 ], [ -79.146082726327791, 43.810059014075989 ], [ -79.143624919174215, 43.810055129442695 ], [ -79.143415708333194, 43.810610015566979 ], [ -79.143183184018071, 43.810692654538009 ], [ -79.142863629965149, 43.810069767671763 ], [ -79.143137985740012, 43.809619550187634 ], [ -79.142452105585463, 43.809437373746547 ], [ -79.141959500141823, 43.80963190491827 ], [ -79.14123065727432, 43.808904331053299 ], [ -79.140685386643739, 43.808773849757536 ], [ -79.140627361661117, 43.808439843648095 ], [ -79.139315520431651, 43.808346392340589 ], [ -79.13893347600272, 43.807984606008006 ], [ -79.138397682076601, 43.807948875764659 ], [ -79.138150946068322, 43.807485591106207 ], [ -79.137870170494537, 43.807494609716322 ], [ -79.137598685571419, 43.807854754592867 ], [ -79.137037733942307, 43.807701586187555 ], [ -79.136247838297876, 43.808066869680452 ], [ -79.135879927696351, 43.808029364130022 ], [ -79.134086697879965, 43.806847618967304 ], [ -79.133896495115081, 43.806196302640132 ], [ -79.134408649552725, 43.804496773513257 ], [ -79.133659250007526, 43.802955603022767 ], [ -79.134167983629567, 43.802212087658212 ], [ -79.13539311300238, 43.80107068190194 ], [ -79.135243411435326, 43.800663073590528 ], [ -79.134257311831817, 43.800863022275969 ], [ -79.132150585994737, 43.801625444213812 ], [ -79.131014774546429, 43.801773408914308 ], [ -79.129850422537459, 43.801439304994098 ], [ -79.127670817759395, 43.800278141004831 ], [ -79.125166262793385, 43.800120065127125 ], [ -79.124588678027663, 43.799633410152758 ], [ -79.124213687999003, 43.799001459273931 ], [ -79.124342167375573, 43.797725057352075 ], [ -79.124212812835466, 43.797416787009148 ], [ -79.123461383319594, 43.797170408835825 ], [ -79.121919244472409, 43.797392626875236 ], [ -79.121161256672181, 43.797015601267653 ], [ -79.120293559492183, 43.796145994121851 ], [ -79.120259730910036, 43.795609656932761 ], [ -79.121218334438836, 43.79519324624993 ], [ -79.120990424009889, 43.79473032331115 ], [ -79.119308251559602, 43.794788173614279 ], [ -79.118223461555871, 43.794423754199848 ], [ -79.117425257164882, 43.794334005868095 ], [ -79.115798391901066, 43.794833978493926 ], [ -79.115232035296586, 43.794604009387875 ], [ -79.11836004980583, 43.792849985638902 ], [ -79.12017104967228, 43.791200967074658 ], [ -79.124873893951388, 43.784917968151078 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35203677", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 133, "HOOD": "Centennial Scarborough", "FULLHOOD": "Centennial Scarborough (133)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.13471796520389, 43.775101977315252 ], [ -79.136523955605767, 43.773110005508862 ], [ -79.138491986703656, 43.771337044993572 ], [ -79.141209039611226, 43.769495036816579 ], [ -79.142991969806332, 43.767759044900806 ], [ -79.144700511536684, 43.766623493629908 ], [ -79.145251574414601, 43.767559435852156 ], [ -79.145467474067445, 43.768540257797355 ], [ -79.145190889371065, 43.769189026342929 ], [ -79.146148892264378, 43.770259211055119 ], [ -79.14651144221456, 43.77027391208243 ], [ -79.147149867642824, 43.769918071667789 ], [ -79.147470798373249, 43.770288743877536 ], [ -79.148744423566853, 43.770860734344133 ], [ -79.149802427341115, 43.770926383667614 ], [ -79.150172469670707, 43.770701388057581 ], [ -79.150900098315915, 43.770682194939582 ], [ -79.151231268936527, 43.770887570284671 ], [ -79.151598616534457, 43.771781622456572 ], [ -79.152201236363481, 43.772388990798071 ], [ -79.152670824426878, 43.772435198276249 ], [ -79.153187709063246, 43.772083030997571 ], [ -79.153981786062573, 43.772179213884918 ], [ -79.156938688424319, 43.774308219794676 ], [ -79.158581797040199, 43.775784610324955 ], [ -79.159914528425858, 43.77662847034231 ], [ -79.161334881740359, 43.777001493397961 ], [ -79.16294736050861, 43.777040381780715 ], [ -79.163153836656008, 43.777254610491262 ], [ -79.163146879780399, 43.7788783208374 ], [ -79.163513436187031, 43.779159123439818 ], [ -79.163876985332593, 43.779069365393894 ], [ -79.164852802142562, 43.7781282420152 ], [ -79.165525181429743, 43.777914621636128 ], [ -79.165958669790001, 43.778191629654643 ], [ -79.16557863482754, 43.779501764341859 ], [ -79.165688209441754, 43.77971533344585 ], [ -79.166610162943115, 43.779993605167341 ], [ -79.167569882865834, 43.780176336419927 ], [ -79.167813515339517, 43.780100756524156 ], [ -79.167915661401508, 43.778986809425085 ], [ -79.169686174999441, 43.778384961873222 ], [ -79.170082619214412, 43.778832483990328 ], [ -79.169739103349471, 43.779502294015302 ], [ -79.170577696534977, 43.780118924222137 ], [ -79.171252204055378, 43.780003693153631 ], [ -79.172014804974182, 43.779448692112652 ], [ -79.172461879296151, 43.77945584079098 ], [ -79.173038019972367, 43.779717099101454 ], [ -79.174251853865655, 43.779439436135554 ], [ -79.175246143833817, 43.780238283412842 ], [ -79.172959504090201, 43.781885800892546 ], [ -79.146222630603006, 43.79896715231947 ], [ -79.144346718259982, 43.797375278580262 ], [ -79.143492681130908, 43.795996932893004 ], [ -79.13471796520389, 43.775101977315252 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35203688", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 134, "HOOD": "Highland Creek", "FULLHOOD": "Highland Creek (134)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.159042515406853, 43.790747042001989 ], [ -79.172959504090201, 43.781885800892546 ], [ -79.175246143833817, 43.780238283412842 ], [ -79.176432219561704, 43.780887782454933 ], [ -79.178289496133175, 43.780701355363824 ], [ -79.179239831411252, 43.780914624932095 ], [ -79.17991170976191, 43.780889228117161 ], [ -79.181228678589079, 43.781306446443615 ], [ -79.181465213802781, 43.781292206302126 ], [ -79.182677148362842, 43.780258008131533 ], [ -79.183100806398528, 43.780219734216999 ], [ -79.1843593577169, 43.780518875410053 ], [ -79.185234857736617, 43.781153987800792 ], [ -79.185606665525071, 43.781186985275198 ], [ -79.18609892751428, 43.780933657597913 ], [ -79.18654690153943, 43.779680252800205 ], [ -79.186983703297884, 43.779209999734078 ], [ -79.189442440450932, 43.779266974194876 ], [ -79.190636433216099, 43.778913838166226 ], [ -79.19353155896026, 43.785794912367599 ], [ -79.193609868736189, 43.787336795193418 ], [ -79.193847579895944, 43.788142244983952 ], [ -79.197305282951717, 43.796224019317435 ], [ -79.171146868542451, 43.799976903709478 ], [ -79.169167481531346, 43.800019480487315 ], [ -79.167182487933147, 43.799809345346958 ], [ -79.16509465031379, 43.799248798944866 ], [ -79.155785430557444, 43.796038580955191 ], [ -79.153915922887734, 43.795672098664198 ], [ -79.15147314904705, 43.795568707793642 ], [ -79.159042515406853, 43.790747042001989 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200009", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 132, "HOOD": "Malvern", "FULLHOOD": "Malvern (132)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.199074687306634, 43.800316722470505 ], [ -79.197305282951717, 43.796224019317435 ], [ -79.209976669088903, 43.794578972199893 ], [ -79.214834571644985, 43.793780065381831 ], [ -79.21757449188631, 43.793039312608087 ], [ -79.219713435247144, 43.792301467960868 ], [ -79.227226440650284, 43.788320555288493 ], [ -79.230512325786691, 43.787061445270474 ], [ -79.235294628566294, 43.785551698715416 ], [ -79.238757378799278, 43.793867432402692 ], [ -79.239592206186586, 43.794982193202102 ], [ -79.23992078327683, 43.795731065333257 ], [ -79.241055127857621, 43.798584697985511 ], [ -79.242100585845776, 43.802404095463565 ], [ -79.24378706636216, 43.806221629419731 ], [ -79.243923616747722, 43.807800736356448 ], [ -79.242824763104437, 43.811192074528471 ], [ -79.242800869666596, 43.812171812329886 ], [ -79.243019632021046, 43.812984697863314 ], [ -79.219744440096136, 43.817980122797657 ], [ -79.219503245049239, 43.818060351718977 ], [ -79.218189425096341, 43.819819421901236 ], [ -79.21788850740792, 43.819900786764222 ], [ -79.215460471925013, 43.818982900835799 ], [ -79.204359921015609, 43.812111261794421 ], [ -79.201668086913415, 43.807050318706096 ], [ -79.200404696337969, 43.804127296965 ], [ -79.199806328627403, 43.802029929831718 ], [ -79.199074687306634, 43.800316722470505 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200320", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 48, "HOOD": "Hillcrest Village", "FULLHOOD": "Hillcrest Village (48)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.344533516427973, 43.799623956132287 ], [ -79.343541786985341, 43.795123301891387 ], [ -79.365300849020684, 43.79032776013679 ], [ -79.367011348514964, 43.790003028795105 ], [ -79.367993520208003, 43.790033077735373 ], [ -79.371839699800063, 43.805915871960075 ], [ -79.371559334778723, 43.806092543260363 ], [ -79.371722470747457, 43.807409390172687 ], [ -79.371486638556974, 43.807856207402999 ], [ -79.371769763674024, 43.808707303314492 ], [ -79.355112911766938, 43.812384588578894 ], [ -79.34130925779057, 43.815615413278728 ], [ -79.335592957740474, 43.802545899593412 ], [ -79.337318771657124, 43.802141991920863 ], [ -79.344533516427973, 43.799623956132287 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200165", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 116, "HOOD": "Steeles", "FULLHOOD": "Steeles (116)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.306642050185317, 43.808989106925374 ], [ -79.310765382882764, 43.807916977984576 ], [ -79.33549139342837, 43.802327028923436 ], [ -79.34130925779057, 43.815615413278728 ], [ -79.30707326439358, 43.823702752167357 ], [ -79.30099737834702, 43.81013462312594 ], [ -79.306642050185317, 43.808989106925374 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200143", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 117, "HOOD": "L'Amoreaux", "FULLHOOD": "L'Amoreaux (117)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.293436471426588, 43.795138363544183 ], [ -79.294875553047135, 43.794799679200274 ], [ -79.295926697194858, 43.794344292866235 ], [ -79.297565541517187, 43.792064716825664 ], [ -79.298265310400922, 43.791477780726538 ], [ -79.301458031018612, 43.790603036702954 ], [ -79.306359375192287, 43.789524886231568 ], [ -79.306713891937406, 43.789339481152219 ], [ -79.307470937170194, 43.788759637840457 ], [ -79.308080268327529, 43.786609858645292 ], [ -79.308611054467036, 43.786107404154023 ], [ -79.315846751385223, 43.7843352982919 ], [ -79.317292779975418, 43.783508357444674 ], [ -79.318948071774898, 43.782083428194525 ], [ -79.320164563106744, 43.781695781447837 ], [ -79.317766202130784, 43.776514114926478 ], [ -79.323010129004004, 43.775261511006903 ], [ -79.33549139342837, 43.802327028923436 ], [ -79.310765382882764, 43.807916977984576 ], [ -79.305905547077145, 43.80918064282001 ], [ -79.30099737834702, 43.81013462312594 ], [ -79.297335372067593, 43.802183557029586 ], [ -79.296593959598965, 43.801253975132227 ], [ -79.291599799178258, 43.802480734529937 ], [ -79.290822132425106, 43.801383861535633 ], [ -79.288526539454963, 43.796097996161627 ], [ -79.29180348403716, 43.795266822333652 ], [ -79.293436471426588, 43.795138363544183 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200092", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 128, "HOOD": "Agincourt South-Malvern West", "FULLHOOD": "Agincourt South-Malvern West (128)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.237055547186515, 43.789579150370166 ], [ -79.235294628566294, 43.785551698715416 ], [ -79.244992256913619, 43.783092473066375 ], [ -79.270087395096269, 43.778183772552239 ], [ -79.284577377446695, 43.77494689738306 ], [ -79.287373403436717, 43.781690089677504 ], [ -79.288724082253424, 43.784143670892583 ], [ -79.291663930199604, 43.791096302386954 ], [ -79.286849155796489, 43.792183580351612 ], [ -79.290445852368819, 43.800630911485932 ], [ -79.291599799178258, 43.802480734529937 ], [ -79.286278054487994, 43.803791841436173 ], [ -79.283438304542898, 43.797032415632579 ], [ -79.278367290703613, 43.798129168529549 ], [ -79.274234490472452, 43.798226269835752 ], [ -79.273378770338311, 43.798447482470209 ], [ -79.269335914211283, 43.789029494292791 ], [ -79.260570392556474, 43.79347229922616 ], [ -79.253411292268837, 43.796874529347953 ], [ -79.251538235397888, 43.797593127434119 ], [ -79.242016996243947, 43.802174706519914 ], [ -79.241055127857621, 43.798584697985511 ], [ -79.239592206186586, 43.794982193202102 ], [ -79.238757378799278, 43.793867432402692 ], [ -79.238295586915271, 43.792828628539674 ], [ -79.237055547186515, 43.789579150370166 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200094", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 130, "HOOD": "Milliken", "FULLHOOD": "Milliken (130)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.267107750516573, 43.818282554098516 ], [ -79.291313827487471, 43.812766861997098 ], [ -79.288757827575608, 43.807070239967629 ], [ -79.286689659607759, 43.80469224232192 ], [ -79.286278054487994, 43.803791841436173 ], [ -79.296593959598965, 43.801253975132227 ], [ -79.297335372067593, 43.802183557029586 ], [ -79.298829316329886, 43.80527592740571 ], [ -79.30707326439358, 43.823702752167357 ], [ -79.251156776543098, 43.83664501223285 ], [ -79.250881829082317, 43.831844445815904 ], [ -79.250624452955165, 43.83059548558019 ], [ -79.243019632021046, 43.812984697863314 ], [ -79.257680969786634, 43.809922952466806 ], [ -79.261768968398428, 43.819417351570223 ], [ -79.267107750516573, 43.818282554098516 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200063", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 129, "HOOD": "Agincourt North", "FULLHOOD": "Agincourt North (129)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.257680969786634, 43.809922952466806 ], [ -79.243019632021046, 43.812984697863314 ], [ -79.242800869666596, 43.812171812329886 ], [ -79.242824763104437, 43.811192074528471 ], [ -79.243782447026817, 43.808381788011658 ], [ -79.243955844952112, 43.807064261754867 ], [ -79.243601880292601, 43.805666349228076 ], [ -79.242016996243947, 43.802174706519914 ], [ -79.251538235397888, 43.797593127434119 ], [ -79.253411292268837, 43.796874529347953 ], [ -79.260570392556474, 43.79347229922616 ], [ -79.269335914211283, 43.789029494292791 ], [ -79.273378770338311, 43.798447482470209 ], [ -79.274234490472452, 43.798226269835752 ], [ -79.278367290703613, 43.798129168529549 ], [ -79.283438304542898, 43.797032415632579 ], [ -79.286425238748095, 43.804223339961595 ], [ -79.288757827575608, 43.807070239967629 ], [ -79.291313827487471, 43.812766861997098 ], [ -79.276898167887055, 43.816120722188941 ], [ -79.261768968398428, 43.819417351570223 ], [ -79.257680969786634, 43.809922952466806 ] ] ] } } - -] -} diff --git a/examples/geo_sir/data/TorontoNeighbourhoods.geojson b/examples/geo_sir/data/TorontoNeighbourhoods.geojson deleted file mode 100644 index 86372c68..00000000 --- a/examples/geo_sir/data/TorontoNeighbourhoods.geojson +++ /dev/null @@ -1,16 +0,0 @@ -{ -"type": "FeatureCollection", -"name": "Toronto", -"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, -"features": [ -{ "type": "Feature", "properties": { "DAUID": "35202325", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 103, "HOOD": "Lawrence Park South", "FULLHOOD": "Lawrence Park South (103)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.388979232123205, 43.721308240235665 ], [ -79.388380839335355, 43.719084895560265 ], [ -79.400414151289169, 43.716606883656979 ], [ -79.399785136452493, 43.71365383536812 ], [ -79.411443630677539, 43.711205418207157 ], [ -79.410371345426896, 43.708570333516498 ], [ -79.409628804285433, 43.705776710535716 ], [ -79.408831308223895, 43.705196244441318 ], [ -79.408453245228017, 43.704600007566697 ], [ -79.415941882637327, 43.703011377959236 ], [ -79.41707403747948, 43.707150739141944 ], [ -79.416112961118941, 43.707353564739442 ], [ -79.417607119695376, 43.710399611197914 ], [ -79.419477212009085, 43.710011211194569 ], [ -79.420729510434242, 43.71308114779189 ], [ -79.421980808359393, 43.716958974699047 ], [ -79.418553394317328, 43.717912807448563 ], [ -79.416928509014198, 43.717975118090983 ], [ -79.41550157335908, 43.718337751349502 ], [ -79.414519654720095, 43.718306675263293 ], [ -79.414566433540244, 43.718524359318849 ], [ -79.413731860292174, 43.718907245674309 ], [ -79.414297870931321, 43.722526740794237 ], [ -79.39021430303211, 43.72764188778973 ], [ -79.389682327756503, 43.725649034859309 ], [ -79.389603329162398, 43.724588312367089 ], [ -79.389250653387577, 43.723689098542472 ], [ -79.388979232123205, 43.721308240235665 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202344", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 105, "HOOD": "Lawrence Park North", "FULLHOOD": "Lawrence Park North (105)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.390882155425913, 43.729987722680477 ], [ -79.390358823303401, 43.72870713259811 ], [ -79.39021430303211, 43.72764188778973 ], [ -79.414297870931321, 43.722526740794237 ], [ -79.414681008399029, 43.724945096314627 ], [ -79.41568553405213, 43.727394836840794 ], [ -79.417027760781565, 43.733199737110688 ], [ -79.416349964450035, 43.733504965530749 ], [ -79.404880337349709, 43.73590303370672 ], [ -79.404576298630928, 43.734417896154561 ], [ -79.404184850850044, 43.734355721237094 ], [ -79.392820225983897, 43.736804633178963 ], [ -79.390494544890146, 43.730059232478482 ], [ -79.390882155425913, 43.729987722680477 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200370", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 40, "HOOD": "St.Andrew-Windfields", "FULLHOOD": "St.Andrew-Windfields (40)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.359952422301689, 43.752962799374949 ], [ -79.363196880408907, 43.752933952400944 ], [ -79.365497961172338, 43.75253298731878 ], [ -79.380650002918912, 43.749372301888187 ], [ -79.38257070950452, 43.748911862433872 ], [ -79.383546890659389, 43.748241259716103 ], [ -79.384150548937981, 43.748062285151335 ], [ -79.402014050256057, 43.744234544958964 ], [ -79.402833109260186, 43.744139588534502 ], [ -79.404086379463067, 43.744272763733228 ], [ -79.404331652757108, 43.743786847168067 ], [ -79.406521590880033, 43.743340113546608 ], [ -79.40808285799568, 43.750141688214953 ], [ -79.408068178986881, 43.752466744533621 ], [ -79.408326166010113, 43.753504105570059 ], [ -79.397855741898553, 43.760064744092737 ], [ -79.394524566662042, 43.761499979525055 ], [ -79.390428434237492, 43.76262350965461 ], [ -79.376582688623657, 43.765387975458253 ], [ -79.371750460231326, 43.765846398646666 ], [ -79.359648969676826, 43.766414966764366 ], [ -79.359468999049071, 43.765731038733712 ], [ -79.357844970875504, 43.764858042841581 ], [ -79.357536982066691, 43.764728043328745 ], [ -79.356124028332303, 43.764814045616617 ], [ -79.354928991462003, 43.764618979881867 ], [ -79.354177036164401, 43.763668999757357 ], [ -79.353539050614643, 43.763614984248001 ], [ -79.352658971599013, 43.76383797276771 ], [ -79.351974980780341, 43.763534025940722 ], [ -79.351359050202504, 43.76354999007215 ], [ -79.351141011043737, 43.763972990326515 ], [ -79.350742005209383, 43.764113963917836 ], [ -79.349585011072847, 43.763572011945783 ], [ -79.349254027394792, 43.763165033035655 ], [ -79.349606986650699, 43.762362038086927 ], [ -79.349810000713902, 43.761042965082325 ], [ -79.34896896600948, 43.760696045060449 ], [ -79.348683006090937, 43.760190964845584 ], [ -79.348285031538154, 43.759930014616515 ], [ -79.346503038317792, 43.759534010413809 ], [ -79.346030049794081, 43.758589991060049 ], [ -79.344600996136975, 43.757710985296946 ], [ -79.34383504335355, 43.756489959471843 ], [ -79.359952422301689, 43.752962799374949 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35202608", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 41, "HOOD": "Bridle Path-Sunnybrook-York Mills", "FULLHOOD": "Bridle Path-Sunnybrook-York Mills (41)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.361585608453339, 43.719794166619586 ], [ -79.365769670599292, 43.719268029451932 ], [ -79.378066348250684, 43.716724032604894 ], [ -79.377430659846183, 43.713140546205558 ], [ -79.381863865668834, 43.712017108032072 ], [ -79.385911596028663, 43.711341751088881 ], [ -79.388979232123205, 43.721308240235665 ], [ -79.389250653387577, 43.723689098542472 ], [ -79.389603329162398, 43.724588312367089 ], [ -79.390358823303401, 43.72870713259811 ], [ -79.390882155425913, 43.729987722680477 ], [ -79.390494544890146, 43.730059232478482 ], [ -79.392820225983897, 43.736804633178963 ], [ -79.404184850850044, 43.734355721237094 ], [ -79.404576298630928, 43.734417896154561 ], [ -79.406521590880033, 43.743340113546608 ], [ -79.404331652757108, 43.743786847168067 ], [ -79.404086379463067, 43.744272763733228 ], [ -79.402833109260186, 43.744139588534502 ], [ -79.402014050256057, 43.744234544958964 ], [ -79.384150548937981, 43.748062285151335 ], [ -79.383546890659389, 43.748241259716103 ], [ -79.382661286359394, 43.748849590924543 ], [ -79.382458494459101, 43.748632658332888 ], [ -79.381315718557502, 43.748175304131657 ], [ -79.38116282820458, 43.747398801712571 ], [ -79.380260350184912, 43.747241899743379 ], [ -79.379921264116319, 43.746922030960896 ], [ -79.379915325294789, 43.746678807284987 ], [ -79.379124160622382, 43.746082383829162 ], [ -79.378773679530312, 43.746185436250371 ], [ -79.378379513906211, 43.746062732098665 ], [ -79.37852409015818, 43.745308538589974 ], [ -79.378811070972702, 43.745258597477168 ], [ -79.378807180602294, 43.744943388044959 ], [ -79.37836142302389, 43.744432873244186 ], [ -79.378158583329679, 43.74366465971017 ], [ -79.377940551169004, 43.743463436004362 ], [ -79.376020424829221, 43.742364778095542 ], [ -79.375389943425859, 43.742256710178403 ], [ -79.374897018213673, 43.741655493011926 ], [ -79.37440067041473, 43.741639434644441 ], [ -79.373285887221044, 43.741074375754444 ], [ -79.37301670522784, 43.740467241915901 ], [ -79.372291887524057, 43.740636961434419 ], [ -79.372021940332075, 43.740516093803897 ], [ -79.371987315337194, 43.740875764394538 ], [ -79.371761410188725, 43.740962565643493 ], [ -79.371667475923545, 43.740763187285545 ], [ -79.371382705303603, 43.740732125423953 ], [ -79.371328961979074, 43.740425207203387 ], [ -79.370948993437594, 43.740698850626003 ], [ -79.370625986420222, 43.740703249393043 ], [ -79.370625206800213, 43.740271059900948 ], [ -79.370998834456202, 43.740231375063942 ], [ -79.371144899507101, 43.739882384404154 ], [ -79.371025223640075, 43.739718556079922 ], [ -79.370677590998639, 43.739713602275017 ], [ -79.370597999428668, 43.739442412670634 ], [ -79.371045655866567, 43.739421786412272 ], [ -79.371076384443796, 43.739206089998333 ], [ -79.370419463811302, 43.739160720844097 ], [ -79.370199721281764, 43.738563286759707 ], [ -79.369770801033468, 43.738350128947928 ], [ -79.369543682254445, 43.738481917766393 ], [ -79.369604902309717, 43.738059614158018 ], [ -79.369235680803214, 43.737937324118349 ], [ -79.368918971408277, 43.738166854012114 ], [ -79.368573301524194, 43.738089907063092 ], [ -79.368062230746546, 43.737704445448252 ], [ -79.368008748505758, 43.737388617438242 ], [ -79.368198120944655, 43.737274206560961 ], [ -79.367881483467343, 43.737044640528381 ], [ -79.367426591978685, 43.736876022323308 ], [ -79.367210879561014, 43.737044066817653 ], [ -79.366751690055011, 43.737037507777586 ], [ -79.366642603799747, 43.736936839006901 ], [ -79.366824233407087, 43.736651374729597 ], [ -79.365980907623651, 43.736612318902004 ], [ -79.365489896397349, 43.736857351642456 ], [ -79.364420280429641, 43.736463886805566 ], [ -79.364335437164371, 43.735931474041863 ], [ -79.363770497450574, 43.736157528016392 ], [ -79.363398363213591, 43.736143109543377 ], [ -79.363218541456831, 43.735906487200943 ], [ -79.363640182331864, 43.735471342498592 ], [ -79.363263022662139, 43.73472761199691 ], [ -79.362116738475834, 43.73441404450697 ], [ -79.360880385183918, 43.733306921463814 ], [ -79.36010257598295, 43.733142645671364 ], [ -79.3591938415275, 43.733228627418171 ], [ -79.359084176713679, 43.732695854293119 ], [ -79.359376162787072, 43.732006722256081 ], [ -79.358817036188711, 43.731566518283394 ], [ -79.357682235327815, 43.731289168501654 ], [ -79.357551211760622, 43.731089155473782 ], [ -79.357694873201609, 43.730830165560384 ], [ -79.35702606394625, 43.730766454927732 ], [ -79.357207382327204, 43.7300398203827 ], [ -79.356975262357309, 43.729901366897643 ], [ -79.356168454175702, 43.729889769063924 ], [ -79.35587603418621, 43.729687523347074 ], [ -79.354646266260147, 43.729705838792022 ], [ -79.35446280467761, 43.729604177908158 ], [ -79.354405709208137, 43.729423228996957 ], [ -79.354671556760664, 43.729238016334619 ], [ -79.354089098059362, 43.728743442174718 ], [ -79.353967596970676, 43.728192399680538 ], [ -79.353586085194976, 43.728069882014587 ], [ -79.353344881661528, 43.727355081477917 ], [ -79.352895526779747, 43.726988444158088 ], [ -79.35271571493567, 43.726301622234594 ], [ -79.352169374056871, 43.726302750749873 ], [ -79.351670254588001, 43.725944393134888 ], [ -79.350739362286006, 43.72593096792221 ], [ -79.350070924075553, 43.725408127139758 ], [ -79.350291927537327, 43.724591967122038 ], [ -79.350748362432583, 43.724247389905941 ], [ -79.349941100934998, 43.723803562272487 ], [ -79.349898875389343, 43.72353280695814 ], [ -79.350135399557544, 43.723509214943142 ], [ -79.350176598997393, 43.723365779699392 ], [ -79.349867651633701, 43.723316311604023 ], [ -79.349870863156283, 43.723199243729169 ], [ -79.350247604246405, 43.723042647275378 ], [ -79.350282490209082, 43.72267398428167 ], [ -79.351174601891046, 43.722740865050348 ], [ -79.351465440683484, 43.72254701818332 ], [ -79.351911833636279, 43.722112272730662 ], [ -79.351933935583332, 43.721761428602576 ], [ -79.352484917586594, 43.721589332604289 ], [ -79.352723737894834, 43.721025476318651 ], [ -79.353047624255211, 43.720985133239701 ], [ -79.35353454671197, 43.720433940878912 ], [ -79.353668427484735, 43.721059428174065 ], [ -79.361585608453339, 43.719794166619586 ] ] ] } } -, -{ "type": "Feature", "properties": { "DAUID": "35200376", "PRUID": "35", "CSDUID": "3520005", "HOODNUM": 42, "HOOD": "Banbury-Don Mills", "FULLHOOD": "Banbury-Don Mills (42)" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -79.330149781248252, 43.723153876628579 ], [ -79.352670283743592, 43.716210776284626 ], [ -79.353094553700217, 43.716555989299103 ], [ -79.353606181865388, 43.72041615859866 ], [ -79.353047624255211, 43.720985133239701 ], [ -79.352723737894834, 43.721025476318651 ], [ -79.352484917586594, 43.721589332604289 ], [ -79.351933935583332, 43.721761428602576 ], [ -79.351911833636279, 43.722112272730662 ], [ -79.351465440683484, 43.72254701818332 ], [ -79.351174601891046, 43.722740865050348 ], [ -79.350282490209082, 43.72267398428167 ], [ -79.350247604246405, 43.723042647275378 ], [ -79.349870863156283, 43.723199243729169 ], [ -79.349867651633701, 43.723316311604023 ], [ -79.350176598997393, 43.723365779699392 ], [ -79.350135399557544, 43.723509214943142 ], [ -79.349898875389343, 43.72353280695814 ], [ -79.349941100934998, 43.723803562272487 ], [ -79.350748362432583, 43.724247389905941 ], [ -79.350291927537327, 43.724591967122038 ], [ -79.350067923274835, 43.725065923156066 ], [ -79.350155095549056, 43.725508362304296 ], [ -79.350739362286006, 43.72593096792221 ], [ -79.351670254588001, 43.725944393134888 ], [ -79.352169374056871, 43.726302750749873 ], [ -79.35271571493567, 43.726301622234594 ], [ -79.352895526779747, 43.726988444158088 ], [ -79.353344881661528, 43.727355081477917 ], [ -79.353586085194976, 43.728069882014587 ], [ -79.353967596970676, 43.728192399680538 ], [ -79.354089098059362, 43.728743442174718 ], [ -79.354671556760664, 43.729238016334619 ], [ -79.354405709208137, 43.729423228996957 ], [ -79.35446280467761, 43.729604177908158 ], [ -79.354646266260147, 43.729705838792022 ], [ -79.35587603418621, 43.729687523347074 ], [ -79.356168454175702, 43.729889769063924 ], [ -79.356975262357309, 43.729901366897643 ], [ -79.357207382327204, 43.7300398203827 ], [ -79.35702606394625, 43.730766454927732 ], [ -79.357694873201609, 43.730830165560384 ], [ -79.357551211760622, 43.731089155473782 ], [ -79.357682235327815, 43.731289168501654 ], [ -79.358817036188711, 43.731566518283394 ], [ -79.359376162787072, 43.732006722256081 ], [ -79.359084176713679, 43.732695854293119 ], [ -79.3591938415275, 43.733228627418171 ], [ -79.36010257598295, 43.733142645671364 ], [ -79.360880385183918, 43.733306921463814 ], [ -79.362116738475834, 43.73441404450697 ], [ -79.363263022662139, 43.73472761199691 ], [ -79.363640182331864, 43.735471342498592 ], [ -79.363218541456831, 43.735906487200943 ], [ -79.363398363213591, 43.736143109543377 ], [ -79.363770497450574, 43.736157528016392 ], [ -79.364335437164371, 43.735931474041863 ], [ -79.364420280429641, 43.736463886805566 ], [ -79.365489896397349, 43.736857351642456 ], [ -79.365980907623651, 43.736612318902004 ], [ -79.366824233407087, 43.736651374729597 ], [ -79.366642603799747, 43.736936839006901 ], [ -79.366751690055011, 43.737037507777586 ], [ -79.367210879561014, 43.737044066817653 ], [ -79.367426591978685, 43.736876022323308 ], [ -79.367881483467343, 43.737044640528381 ], [ -79.368198120944655, 43.737274206560961 ], [ -79.368008748505758, 43.737388617438242 ], [ -79.368062230746546, 43.737704445448252 ], [ -79.368573301524194, 43.738089907063092 ], [ -79.368918971408277, 43.738166854012114 ], [ -79.369235680803214, 43.737937324118349 ], [ -79.369604902309717, 43.738059614158018 ], [ -79.369543682254445, 43.738481917766393 ], [ -79.369770801033468, 43.738350128947928 ], [ -79.370199721281764, 43.738563286759707 ], [ -79.370419463811302, 43.739160720844097 ], [ -79.371076384443796, 43.739206089998333 ], [ -79.371045655866567, 43.739421786412272 ], [ -79.370597999428668, 43.739442412670634 ], [ -79.370677590998639, 43.739713602275017 ], [ -79.371025223640075, 43.739718556079922 ], [ -79.371144899507101, 43.739882384404154 ], [ -79.370998834456202, 43.740231375063942 ], [ -79.370625206800213, 43.740271059900948 ], [ -79.370625986420222, 43.740703249393043 ], [ -79.370948993437594, 43.740698850626003 ], [ -79.371328961979074, 43.740425207203387 ], [ -79.371382705303603, 43.740732125423953 ], [ -79.371667475923545, 43.740763187285545 ], [ -79.371761410188725, 43.740962565643493 ], [ -79.371987315337194, 43.740875764394538 ], [ -79.372021940332075, 43.740516093803897 ], [ -79.372291887524057, 43.740636961434419 ], [ -79.37301670522784, 43.740467241915901 ], [ -79.373285887221044, 43.741074375754444 ], [ -79.37440067041473, 43.741639434644441 ], [ -79.374897018213673, 43.741655493011926 ], [ -79.375389943425859, 43.742256710178403 ], [ -79.376020424829221, 43.742364778095542 ], [ -79.377940551169004, 43.743463436004362 ], [ -79.378158583329679, 43.74366465971017 ], [ -79.37836142302389, 43.744432873244186 ], [ -79.378807180602294, 43.744943388044959 ], [ -79.378811070972702, 43.745258597477168 ], [ -79.37852409015818, 43.745308538589974 ], [ -79.378379513906211, 43.746062732098665 ], [ -79.378773679530312, 43.746185436250371 ], [ -79.379124160622382, 43.746082383829162 ], [ -79.379915325294789, 43.746678807284987 ], [ -79.379921264116319, 43.746922030960896 ], [ -79.380260350184912, 43.747241899743379 ], [ -79.38116282820458, 43.747398801712571 ], [ -79.381315718557502, 43.748175304131657 ], [ -79.382458494459101, 43.748632658332888 ], [ -79.382661286359394, 43.748849590924543 ], [ -79.365497961172338, 43.75253298731878 ], [ -79.363196880408907, 43.752933952400944 ], [ -79.359952422301689, 43.752962799374949 ], [ -79.34383504335355, 43.756489959471843 ], [ -79.343608975835579, 43.755181962950978 ], [ -79.34382003884491, 43.755009035569024 ], [ -79.344833969245428, 43.754802005511678 ], [ -79.345570971425573, 43.754302991399008 ], [ -79.345571046958966, 43.753678987322608 ], [ -79.345270024488642, 43.752848984906798 ], [ -79.346389997434628, 43.751518969813468 ], [ -79.345247970896438, 43.751008966062741 ], [ -79.343098033387122, 43.750932997578929 ], [ -79.342541966797896, 43.750780998044867 ], [ -79.342572032434717, 43.749832012730195 ], [ -79.34217403375861, 43.74898502157977 ], [ -79.342392041438558, 43.748166046223368 ], [ -79.342248990800741, 43.747634034558644 ], [ -79.340534963186755, 43.746961035685281 ], [ -79.33933195892871, 43.746727973185948 ], [ -79.339144050571932, 43.746538005453289 ], [ -79.339790990095125, 43.745675035229937 ], [ -79.340167042152132, 43.744856018266866 ], [ -79.340129001982248, 43.744535000848352 ], [ -79.339211957061622, 43.743569018763878 ], [ -79.338039952639079, 43.743498966013235 ], [ -79.337107011812222, 43.743846012907618 ], [ -79.336445985179751, 43.743492976127307 ], [ -79.336206044584983, 43.742896983916999 ], [ -79.336596035912692, 43.7424080083672 ], [ -79.336565972488302, 43.742077023670028 ], [ -79.335603958615778, 43.740855966208485 ], [ -79.334883021169532, 43.740681994682305 ], [ -79.333521991146014, 43.740801961561367 ], [ -79.333123985518327, 43.740959002310888 ], [ -79.332785954744153, 43.741372028258816 ], [ -79.332177051143844, 43.741534001504498 ], [ -79.331168986549287, 43.741539994845702 ], [ -79.330605997915598, 43.741269011700389 ], [ -79.33047795735159, 43.740823981699542 ], [ -79.330839019894796, 43.740172030100275 ], [ -79.330154963813683, 43.739272029152069 ], [ -79.330079967689059, 43.738783034223907 ], [ -79.330312965168659, 43.738251008183987 ], [ -79.331559991405172, 43.737181972291225 ], [ -79.331402024856061, 43.736807980887356 ], [ -79.330672968030456, 43.736368039929403 ], [ -79.331184005120505, 43.735483958623178 ], [ -79.331064045005732, 43.734843976916991 ], [ -79.329974015331885, 43.734099990052414 ], [ -79.32949298641941, 43.733948032541583 ], [ -79.329117032066449, 43.733953970769406 ], [ -79.328583977457427, 43.734285008051614 ], [ -79.328312967011115, 43.734236036321555 ], [ -79.327795004734242, 43.733817977253324 ], [ -79.327591967761393, 43.733015013453894 ], [ -79.326937978456371, 43.73287896862734 ], [ -79.326057977599874, 43.732174025104726 ], [ -79.324772964427225, 43.731685036139758 ], [ -79.32459304599351, 43.731105021208052 ], [ -79.325261968086792, 43.729715035068942 ], [ -79.325103989653769, 43.729519991148557 ], [ -79.323104025240411, 43.729444043637955 ], [ -79.320218045809654, 43.731565989506535 ], [ -79.319744041746731, 43.731592960794821 ], [ -79.319609036287616, 43.731430023502384 ], [ -79.319608979321814, 43.730996043726982 ], [ -79.320119985074712, 43.730524025348174 ], [ -79.320376039524575, 43.729644976462886 ], [ -79.320112988249733, 43.729477007767066 ], [ -79.318993025842772, 43.729324977532301 ], [ -79.318737033848009, 43.72920499929382 ], [ -79.318707033081367, 43.728945034821223 ], [ -79.320120045989015, 43.728461973054351 ], [ -79.320457993959238, 43.72800100267191 ], [ -79.323149003094542, 43.727170025951686 ], [ -79.323127037476695, 43.726231980835465 ], [ -79.322390018403084, 43.725618043909961 ], [ -79.322299951367427, 43.725205967626373 ], [ -79.330149781248252, 43.723153876628579 ] ] ] } } -] -} diff --git a/examples/geo_sir/model.py b/examples/geo_sir/model.py deleted file mode 100644 index cf94f24c..00000000 --- a/examples/geo_sir/model.py +++ /dev/null @@ -1,127 +0,0 @@ -import mesa -from agents import NeighbourhoodAgent, PersonAgent -from shapely.geometry import Point - -import mesa_geo as mg - - -class GeoSir(mesa.Model): - """Model class for a simplistic infection model.""" - - # Geographical parameters for desired map - geojson_regions = "data/TorontoNeighbourhoods.geojson" - unique_id = "HOODNUM" - - def __init__( - self, pop_size=30, init_infected=0.2, exposure_distance=500, infection_risk=0.2 - ): - """ - Create a new InfectedModel - :param pop_size: Size of population - :param init_infected: Probability of a person agent to start as infected - :param exposure_distance: Proximity distance between agents to be exposed to each other - :param infection_risk: Probability of agent to become infected, if it has been exposed to another infected - """ - self.schedule = mesa.time.BaseScheduler(self) - self.space = mg.GeoSpace(warn_crs_conversion=False) - self.steps = 0 - self.counts = None - self.reset_counts() - - # SIR model parameters - self.pop_size = pop_size - self.counts["susceptible"] = pop_size - self.exposure_distance = exposure_distance - self.infection_risk = infection_risk - - self.running = True - self.datacollector = mesa.DataCollector( - { - "infected": get_infected_count, - "susceptible": get_susceptible_count, - "recovered": get_recovered_count, - "dead": get_dead_count, - } - ) - - # Set up the Neighbourhood patches for every region in file (add to schedule later) - ac = mg.AgentCreator(NeighbourhoodAgent, model=self) - neighbourhood_agents = ac.from_file( - self.geojson_regions, unique_id=self.unique_id - ) - self.space.add_agents(neighbourhood_agents) - - # Generate PersonAgent population - ac_population = mg.AgentCreator( - PersonAgent, - model=self, - crs=self.space.crs, - agent_kwargs={"init_infected": init_infected}, - ) - # Generate random location, add agent to grid and scheduler - for i in range(pop_size): - this_neighbourhood = self.random.randint( - 0, len(neighbourhood_agents) - 1 - ) # Region where agent starts - center_x, center_y = neighbourhood_agents[ - this_neighbourhood - ].geometry.centroid.coords.xy - this_bounds = neighbourhood_agents[this_neighbourhood].geometry.bounds - spread_x = int( - this_bounds[2] - this_bounds[0] - ) # Heuristic for agent spread in region - spread_y = int(this_bounds[3] - this_bounds[1]) - this_x = center_x[0] + self.random.randint(0, spread_x) - spread_x / 2 - this_y = center_y[0] + self.random.randint(0, spread_y) - spread_y / 2 - this_person = ac_population.create_agent( - Point(this_x, this_y), "P" + str(i) - ) - self.space.add_agents(this_person) - self.schedule.add(this_person) - - # Add the neighbourhood agents to schedule AFTER person agents, - # to allow them to update their color by using BaseScheduler - for agent in neighbourhood_agents: - self.schedule.add(agent) - - self.datacollector.collect(self) - - def reset_counts(self): - self.counts = { - "susceptible": 0, - "infected": 0, - "recovered": 0, - "dead": 0, - "safe": 0, - "hotspot": 0, - } - - def step(self): - """Run one step of the model.""" - self.steps += 1 - self.reset_counts() - self.schedule.step() - self.space._recreate_rtree() # Recalculate spatial tree, because agents are moving - - self.datacollector.collect(self) - - # Run until no one is infected - if self.counts["infected"] == 0: - self.running = False - - -# Functions needed for datacollector -def get_infected_count(model): - return model.counts["infected"] - - -def get_susceptible_count(model): - return model.counts["susceptible"] - - -def get_recovered_count(model): - return model.counts["recovered"] - - -def get_dead_count(model): - return model.counts["dead"] diff --git a/examples/geo_sir/run.py b/examples/geo_sir/run.py deleted file mode 100644 index a25f3b12..00000000 --- a/examples/geo_sir/run.py +++ /dev/null @@ -1,3 +0,0 @@ -from server import server - -server.launch() diff --git a/examples/geo_sir/server.py b/examples/geo_sir/server.py deleted file mode 100644 index b13b61d4..00000000 --- a/examples/geo_sir/server.py +++ /dev/null @@ -1,64 +0,0 @@ -import mesa -from agents import PersonAgent -from model import GeoSir - -import mesa_geo as mg - - -class InfectedText(mesa.visualization.TextElement): - """ - Display a text count of how many steps have been taken - """ - - def __init__(self): - pass - - def render(self, model): - return "Steps: " + str(model.steps) - - -model_params = { - "pop_size": mesa.visualization.Slider("Population size", 30, 10, 100, 10), - "init_infected": mesa.visualization.Slider( - "Fraction initial infection", 0.2, 0.00, 1.0, 0.05 - ), - "exposure_distance": mesa.visualization.Slider( - "Exposure distance", 500, 100, 1000, 100 - ), -} - - -def infected_draw(agent): - """ - Portrayal Method for canvas - """ - portrayal = {} - if isinstance(agent, PersonAgent): - portrayal["radius"] = "2" - if agent.atype in ["hotspot", "infected"]: - portrayal["color"] = "Red" - elif agent.atype in ["safe", "susceptible"]: - portrayal["color"] = "Green" - elif agent.atype in ["recovered"]: - portrayal["color"] = "Blue" - elif agent.atype in ["dead"]: - portrayal["color"] = "Black" - return portrayal - - -infected_text = InfectedText() -map_element = mg.visualization.MapModule(infected_draw) -infected_chart = mesa.visualization.ChartModule( - [ - {"Label": "infected", "Color": "Red"}, - {"Label": "susceptible", "Color": "Green"}, - {"Label": "recovered", "Color": "Blue"}, - {"Label": "dead", "Color": "Black"}, - ] -) -server = mesa.visualization.ModularServer( - GeoSir, - [map_element, infected_text, infected_chart], - "Basic agent-based SIR model", - model_params, -) diff --git a/examples/population/README.md b/examples/population/README.md deleted file mode 100644 index d427e999..00000000 --- a/examples/population/README.md +++ /dev/null @@ -1,25 +0,0 @@ -# Population Model - -[![](https://img.youtube.com/vi/0k8tsYPVwQs/0.jpg)](https://www.youtube.com/watch?v=0k8tsYPVwQs) - -## Summary - -This is an implementation of the [Uganda Example](https://github.com/abmgis/abmgis/tree/master/Chapter05-GIS/Models/UgandaExample) in Python, using [Mesa](https://github.com/projectmesa/mesa) and [Mesa-Geo](https://github.com/projectmesa/mesa-geo). - -### GeoSpace - -The GeoSpace consists of both a raster and a vector layer. The raster layer contains population data for each cell, and it is this data that is used for model initialisation, in the sense creating the agents. The vector layer shown in blue color represents a lake in Uganda. It overlays with the raster layer to mask out the cells that agents cannot move into. - -### GeoAgent - -The GeoAgents are people, created based on the population data. As this is a simple example model, the agents only move randomly to neighboring cells at each time step. To make the simulation more realistic and visually appealing, the agents in the same cell have a randomized position within the cell, so that they don’t stand on top of each other at exactly the same coordinate. - -## How to run - -To run the model interactively, run `mesa runserver` in this directory. e.g. - -```bash -mesa runserver -``` - -Then open your browser to [http://127.0.0.1:8521/](http://127.0.0.1:8521/) and press `Start`. diff --git a/examples/population/data/clip.zip b/examples/population/data/clip.zip deleted file mode 100644 index af32bbd4..00000000 Binary files a/examples/population/data/clip.zip and /dev/null differ diff --git a/examples/population/data/lake.zip b/examples/population/data/lake.zip deleted file mode 100644 index cf23a3ba..00000000 Binary files a/examples/population/data/lake.zip and /dev/null differ diff --git a/examples/population/data/popu.asc.gz b/examples/population/data/popu.asc.gz deleted file mode 100755 index 50f16f99..00000000 Binary files a/examples/population/data/popu.asc.gz and /dev/null differ diff --git a/examples/population/population/model.py b/examples/population/population/model.py deleted file mode 100644 index 0dd48f50..00000000 --- a/examples/population/population/model.py +++ /dev/null @@ -1,91 +0,0 @@ -import math -import random -import uuid - -import mesa -import numpy as np -from shapely.geometry import Point - -import mesa_geo as mg - -from .space import UgandaArea - - -class Person(mg.GeoAgent): - MOBILITY_RANGE_X = 0.0 - MOBILITY_RANGE_Y = 0.0 - - def __init__(self, unique_id, model, geometry, crs, img_coord): - super().__init__(unique_id, model, geometry, crs) - self.img_coord = img_coord - - def set_random_world_coord(self): - world_coord_point = Point( - self.model.space.population_layer.transform * self.img_coord - ) - random_world_coord_x = world_coord_point.x + np.random.uniform( - -self.MOBILITY_RANGE_X, self.MOBILITY_RANGE_X - ) - random_world_coord_y = world_coord_point.y + np.random.uniform( - -self.MOBILITY_RANGE_Y, self.MOBILITY_RANGE_Y - ) - self.geometry = Point(random_world_coord_x, random_world_coord_y) - - def step(self): - neighborhood = self.model.space.population_layer.get_neighborhood( - self.img_coord, moore=True - ) - found = False - while neighborhood and not found: - next_img_coord = random.choice(neighborhood) - world_coord_point = Point( - self.model.space.population_layer.transform * next_img_coord - ) - if world_coord_point.within(self.model.space.lake): - neighborhood.remove(next_img_coord) - continue - else: - found = True - self.img_coord = next_img_coord - self.set_random_world_coord() - - -class Population(mesa.Model): - def __init__( - self, - population_gzip_file="data/popu.asc.gz", - lake_zip_file="data/lake.zip", - world_zip_file="data/clip.zip", - ): - super().__init__() - self.space = UgandaArea(crs="epsg:4326") - self.space.load_data(population_gzip_file, lake_zip_file, world_zip_file) - pixel_size_x, pixel_size_y = self.space.population_layer.resolution - Person.MOBILITY_RANGE_X = pixel_size_x / 2.0 - Person.MOBILITY_RANGE_Y = pixel_size_y / 2.0 - - self.schedule = mesa.time.RandomActivation(self) - self._create_agents() - - def _create_agents(self): - num_agents = 0 - for cell in self.space.population_layer: - popu_round = math.ceil(cell.population) - if popu_round > 0: - for _ in range(popu_round): - num_agents += 1 - point = Point(self.space.population_layer.transform * cell.indices) - if not point.within(self.space.lake): - person = Person( - unique_id=uuid.uuid4().int, - model=self, - crs=self.space.crs, - geometry=point, - img_coord=cell.indices, - ) - person.set_random_world_coord() - self.space.add_agents(person) - self.schedule.add(person) - - def step(self): - self.schedule.step() diff --git a/examples/population/population/server.py b/examples/population/population/server.py deleted file mode 100644 index ac97bb29..00000000 --- a/examples/population/population/server.py +++ /dev/null @@ -1,41 +0,0 @@ -import mesa -from shapely.geometry import Point, Polygon - -import mesa_geo as mg - -from .model import Population -from .space import UgandaCell - - -class NumAgentsElement(mesa.visualization.TextElement): - def __init__(self): - super().__init__() - - def render(self, model): - return f"Number of Agents: {len(model.space.agents)}" - - -def agent_portrayal(agent): - if isinstance(agent, mg.GeoAgent): - if isinstance(agent.geometry, Point): - return { - "stroke": False, - "color": "Green", - "radius": 2, - "fillOpacity": 0.3, - } - elif isinstance(agent.geometry, Polygon): - return { - "fillColor": "Blue", - "fillOpacity": 1.0, - } - elif isinstance(agent, UgandaCell): - return (agent.population, agent.population, agent.population, 1) - - -geospace_element = mg.visualization.MapModule(agent_portrayal) -num_agents_element = NumAgentsElement() - -server = mesa.visualization.ModularServer( - Population, [geospace_element, num_agents_element], "Population Model" -) diff --git a/examples/population/population/space.py b/examples/population/population/space.py deleted file mode 100644 index f634aab4..00000000 --- a/examples/population/population/space.py +++ /dev/null @@ -1,51 +0,0 @@ -from __future__ import annotations - -import gzip -import uuid - -import geopandas as gpd -import mesa - -from mesa_geo.geoagent import GeoAgent -from mesa_geo.geospace import GeoSpace -from mesa_geo.raster_layers import Cell, RasterLayer - - -class UgandaCell(Cell): - population: float | None - - def __init__( - self, - pos: mesa.space.Coordinate | None = None, - indices: mesa.space.Coordinate | None = None, - ): - super().__init__(pos, indices) - self.population = None - - def step(self): - pass - - -class Lake(GeoAgent): - pass - - -class UgandaArea(GeoSpace): - def __init__(self, crs): - super().__init__(crs=crs) - - def load_data(self, population_gzip_file, lake_zip_file, world_zip_file): - world_size = gpd.GeoDataFrame.from_file(world_zip_file) - with gzip.open(population_gzip_file, "rb") as population_file: - raster_layer = RasterLayer.from_file( - population_file, cell_cls=UgandaCell, attr_name="population" - ) - raster_layer.crs = world_size.crs - raster_layer.total_bounds = world_size.total_bounds - self.add_layer(raster_layer) - self.lake = gpd.GeoDataFrame.from_file(lake_zip_file).geometry[0] - self.add_agents(GeoAgent(uuid.uuid4().int, None, self.lake, self.crs)) - - @property - def population_layer(self): - return self.layers[0] diff --git a/examples/population/run.py b/examples/population/run.py deleted file mode 100644 index 00246200..00000000 --- a/examples/population/run.py +++ /dev/null @@ -1,3 +0,0 @@ -from population.server import server - -server.launch() diff --git a/examples/rainfall/README.md b/examples/rainfall/README.md deleted file mode 100644 index 11f22f0e..00000000 --- a/examples/rainfall/README.md +++ /dev/null @@ -1,25 +0,0 @@ -# Rainfall Model - -[![](https://img.youtube.com/vi/T2FQwFnPDR8/0.jpg)](https://www.youtube.com/watch?v=T2FQwFnPDR8) - -## Summary - -This is an implementation of the [Rainfall Model](https://github.com/abmgis/abmgis/tree/master/Chapter06-IntegratingABMandGIS/Models/Rainfall) in Python, using [Mesa](https://github.com/projectmesa/mesa) and [Mesa-Geo](https://github.com/projectmesa/mesa-geo). Inspired by the NetLogo [Grand Canyon model](http://ccl.northwestern.edu/netlogo/models/GrandCanyon), this is an example of how a digital elevation model (DEM) can be used to create an artificial world. - -### GeoSpace - -The GeoSpace contains a raster layer representing elevations. It is this elevation value that impacts how the raindrops move over the terrain. Apart from `elevation`, each cell of the raster layer also has a `water_level` attribute that is used to track the amount of water it contains. - -### GeoAgent - -In this example, the raindrops are the GeoAgents. At each time step, raindrops are randomly created across the landscape to simulate rainfall. The raindrops flow from cells of higher elevation to lower elevation based on their eight surrounding cells (i.e., Moore neighbourhood). The raindrop also has its own height, which allows them to accumulate, gain height and flow if they are trapped at places such as potholes, pools, or depressions. When they reach the boundary of the GeoSpace, they are removed from the model as outflow. - -## How to run - -To run the model interactively, run `mesa runserver` in this directory. e.g. - -```bash -mesa runserver -``` - -Then open your browser to [http://127.0.0.1:8521/](http://127.0.0.1:8521/) and press `Start`. diff --git a/examples/rainfall/data/elevation.asc.gz b/examples/rainfall/data/elevation.asc.gz deleted file mode 100755 index fe7e1141..00000000 Binary files a/examples/rainfall/data/elevation.asc.gz and /dev/null differ diff --git a/examples/rainfall/rainfall/model.py b/examples/rainfall/rainfall/model.py deleted file mode 100644 index f0795049..00000000 --- a/examples/rainfall/rainfall/model.py +++ /dev/null @@ -1,120 +0,0 @@ -import uuid - -import mesa -import numpy as np -from shapely.geometry import Point - -import mesa_geo as mg - -from .space import CraterLake - - -class RaindropAgent(mg.GeoAgent): - def __init__(self, unique_id, model, pos): - super().__init__( - unique_id, - model, - geometry=None, - crs=model.space.crs, - ) - self.pos = pos - self.is_at_boundary = False - - @property - def pos(self): - return self._pos - - @property - def indices(self): - return self._indices - - @pos.setter - def pos(self, pos): - self._pos = pos - if pos is not None: - x, y = self.pos - row_idx = self.model.space.raster_layer.height - y - 1 - col_idx = x - self._indices = row_idx, col_idx - self.geometry = Point( - self.model.space.raster_layer.transform * self.indices - ) - else: - self.geometry = None - - def step(self): - if self.is_at_boundary: - self.model.schedule.remove(self) - else: - lowest_pos = min( - self.model.space.raster_layer.get_neighboring_cells( - pos=self.pos, moore=True, include_center=True - ), - key=lambda cell: cell.elevation + cell.water_level, - ).pos - if lowest_pos != self.pos: - self.model.space.move_raindrop(self, lowest_pos) - - -class Rainfall(mesa.Model): - def __init__(self, rain_rate=500, water_height=5, export_data=False, num_steps=20): - super().__init__() - self.rain_rate = rain_rate - self.water_amount = 0 - self.export_data = export_data - self.num_steps = num_steps - - self.space = CraterLake(crs="epsg:4326", water_height=water_height) - self.schedule = mesa.time.RandomActivation(self) - self.datacollector = mesa.DataCollector( - { - "Total Amount of Water": "water_amount", - "Total Contained": "contained", - "Total Outflow": "outflow", - } - ) - - self.space.set_elevation_layer("data/elevation.asc.gz", crs="epsg:4326") - - @property - def contained(self): - return self.water_amount - self.outflow - - @property - def outflow(self): - return self.space.outflow - - def export_water_level_to_file(self): - self.space.raster_layer.to_file( - raster_file="data/water_level.asc", - attr_name="water_level", - driver="AAIGrid", - ) - - def step(self): - for _ in range(self.rain_rate): - random_x = np.random.randint(0, self.space.raster_layer.width) - random_y = np.random.randint(0, self.space.raster_layer.height) - raindrop = RaindropAgent( - unique_id=uuid.uuid4().int, - model=self, - pos=(random_x, random_y), - ) - self.space.add_raindrop(raindrop) - self.schedule.add(raindrop) - self.water_amount += 1 - - self.schedule.step() - self.datacollector.collect(self) - - current_water_level = self.space.raster_layer.get_raster("water_level") - self.space.raster_layer.apply_raster( - current_water_level / current_water_level.max(), - "water_level_normalized", - ) - - self.num_steps -= 1 - if self.num_steps == 0: - self.running = False - if not self.running and self.export_data: - self.export_water_level_to_file() diff --git a/examples/rainfall/rainfall/server.py b/examples/rainfall/rainfall/server.py deleted file mode 100644 index c798ec2b..00000000 --- a/examples/rainfall/rainfall/server.py +++ /dev/null @@ -1,48 +0,0 @@ -from typing import Tuple - -import mesa - -import mesa_geo as mg - -from .model import Rainfall -from .space import LakeCell - -model_params = { - "rain_rate": mesa.visualization.Slider("rain rate", 500, 0, 500, 5), - "water_height": mesa.visualization.Slider("water height", 5, 1, 5, 1), - "num_steps": mesa.visualization.Slider("total number of steps", 20, 1, 100, 1), - "export_data": mesa.visualization.Checkbox("export data after simulation", False), -} - - -def cell_portrayal(cell: LakeCell) -> Tuple[float, float, float, float]: - if cell.water_level == 0: - return cell.elevation, cell.elevation, cell.elevation, 1 - else: - # return a blue color gradient based on the normalized water level - # from the lowest water level colored as RGBA: (74, 141, 255, 1) - # to the highest water level colored as RGBA: (0, 0, 255, 1) - return ( - (1 - cell.water_level_normalized) * 74, - (1 - cell.water_level_normalized) * 141, - 255, - 1, - ) - - -map_module = mg.visualization.MapModule( - portrayal_method=cell_portrayal, - map_height=341, - map_width=498, -) -water_chart = mesa.visualization.ChartModule( - [ - {"Label": "Total Amount of Water", "Color": "Black"}, - {"Label": "Total Contained", "Color": "Blue"}, - {"Label": "Total Outflow", "Color": "Orange"}, - ] -) - -server = mesa.visualization.ModularServer( - Rainfall, [map_module, water_chart], "Rainfall Model", model_params -) diff --git a/examples/rainfall/rainfall/space.py b/examples/rainfall/rainfall/space.py deleted file mode 100644 index a52f51c3..00000000 --- a/examples/rainfall/rainfall/space.py +++ /dev/null @@ -1,76 +0,0 @@ -from __future__ import annotations - -import gzip - -import mesa -import numpy as np - -import mesa_geo as mg - - -class LakeCell(mg.Cell): - elevation: int | None - water_level: int | None - water_level_normalized: float | None - - def __init__( - self, - pos: mesa.space.Coordinate | None = None, - indices: mesa.space.Coordinate | None = None, - ): - super().__init__(pos, indices) - self.elevation = None - self.water_level = None - self.water_level_normalized = None - - def step(self): - pass - - -class CraterLake(mg.GeoSpace): - def __init__(self, crs, water_height): - super().__init__(crs=crs) - self.water_height = water_height - self.outflow = 0 - - def set_elevation_layer(self, elevation_gzip_file, crs): - with gzip.open(elevation_gzip_file, "rb") as elevation_file: - raster_layer = mg.RasterLayer.from_file( - elevation_file, cell_cls=LakeCell, attr_name="elevation" - ) - raster_layer.crs = crs - raster_layer.apply_raster( - data=np.zeros(shape=(1, raster_layer.height, raster_layer.width)), - attr_name="water_level", - ) - super().add_layer(raster_layer) - - @property - def raster_layer(self): - return self.layers[0] - - def is_at_boundary(self, row_idx, col_idx): - return ( - row_idx == 0 - or row_idx == self.raster_layer.height - or col_idx == 0 - or col_idx == self.raster_layer.width - ) - - def move_raindrop(self, raindrop, new_pos): - self.remove_raindrop(raindrop) - raindrop.pos = new_pos - self.add_raindrop(raindrop) - - def add_raindrop(self, raindrop): - x, y = raindrop.pos - row_ind, col_ind = raindrop.indices - if self.is_at_boundary(row_ind, col_ind): - raindrop.is_at_boundary = True - self.outflow += 1 - else: - self.raster_layer.cells[x][y].water_level += self.water_height - - def remove_raindrop(self, raindrop): - x, y = raindrop.pos - self.raster_layer.cells[x][y].water_level -= self.water_height diff --git a/examples/rainfall/run.py b/examples/rainfall/run.py deleted file mode 100644 index 77a56d26..00000000 --- a/examples/rainfall/run.py +++ /dev/null @@ -1,3 +0,0 @@ -from rainfall.server import server - -server.launch() diff --git a/examples/urban_growth/README.md b/examples/urban_growth/README.md deleted file mode 100644 index eca178e3..00000000 --- a/examples/urban_growth/README.md +++ /dev/null @@ -1,17 +0,0 @@ -# Urban Growth Model - -[![](https://img.youtube.com/vi/UNtTJL5N83g/0.jpg)](https://www.youtube.com/watch?v=UNtTJL5N83g) - -## Summary - -This is an implementation of the [UrbanGrowth Model](https://github.com/abmgis/abmgis/tree/master/Chapter06-IntegratingABMandGIS/Models/UrbanGrowth) in Python, using [Mesa](https://github.com/projectmesa/mesa) and [Mesa-Geo](https://github.com/projectmesa/mesa-geo). - -## How to run - -To run the model interactively, run `mesa runserver` in this directory. e.g. - -```bash -mesa runserver -``` - -Then open your browser to [http://127.0.0.1:8521/](http://127.0.0.1:8521/) and press `Start`. diff --git a/examples/urban_growth/data/excluded_santafe.asc.gz b/examples/urban_growth/data/excluded_santafe.asc.gz deleted file mode 100755 index 43e7e2cb..00000000 Binary files a/examples/urban_growth/data/excluded_santafe.asc.gz and /dev/null differ diff --git a/examples/urban_growth/data/landuse_santafe.asc.gz b/examples/urban_growth/data/landuse_santafe.asc.gz deleted file mode 100755 index 5de1a72b..00000000 Binary files a/examples/urban_growth/data/landuse_santafe.asc.gz and /dev/null differ diff --git a/examples/urban_growth/data/road1_santafe.asc.gz b/examples/urban_growth/data/road1_santafe.asc.gz deleted file mode 100755 index 6971459f..00000000 Binary files a/examples/urban_growth/data/road1_santafe.asc.gz and /dev/null differ diff --git a/examples/urban_growth/data/slope_santafe.asc.gz b/examples/urban_growth/data/slope_santafe.asc.gz deleted file mode 100755 index 4697b913..00000000 Binary files a/examples/urban_growth/data/slope_santafe.asc.gz and /dev/null differ diff --git a/examples/urban_growth/data/urban_santafe.asc.gz b/examples/urban_growth/data/urban_santafe.asc.gz deleted file mode 100755 index 85f72aed..00000000 Binary files a/examples/urban_growth/data/urban_santafe.asc.gz and /dev/null differ diff --git a/examples/urban_growth/run.py b/examples/urban_growth/run.py deleted file mode 100644 index 7291302e..00000000 --- a/examples/urban_growth/run.py +++ /dev/null @@ -1,3 +0,0 @@ -from urban_growth.server import server - -server.launch() diff --git a/examples/urban_growth/urban_growth/model.py b/examples/urban_growth/urban_growth/model.py deleted file mode 100644 index b3f2b3b3..00000000 --- a/examples/urban_growth/urban_growth/model.py +++ /dev/null @@ -1,126 +0,0 @@ -import mesa -import numpy as np - -from .space import City - - -class UrbanGrowth(mesa.Model): - def __init__( - self, - world_width=531, - world_height=394, - max_coefficient=100, - dispersion_coefficient=20, - spread_coefficient=27, - breed_coefficient=5, - rg_coefficient=10, - slope_coefficient=50, - critical_slope=25, - road_influence=False, - ): - super().__init__() - self.world_width = world_width - self.world_height = world_height - self.max_coefficient = max_coefficient - self.dispersion_coefficient = dispersion_coefficient - self.spread_coefficient = spread_coefficient - self.breed_coefficient = breed_coefficient - self.rg_coefficient = rg_coefficient - self.slope_coefficient = slope_coefficient - self.critical_slope = critical_slope - self.road_influence = road_influence - self.schedule = mesa.time.RandomActivation(self) - - self.dispersion_value = (dispersion_coefficient * 0.005) * ( - world_width**2 + world_height**2 - ) ** 0.5 - self.rg_value = ( - rg_coefficient / max_coefficient * ((world_width + world_height) / 16.0) - ) - self.max_search = 4 * (self.rg_value * (1 + self.rg_value)) - - self._load_data() - self._check_suitability() - self.space.check_road() - for cell in self.space.raster_layer: - if cell.road: - cell.run_value = cell.road_1 / 4 * self.dispersion_coefficient - cell.road_found = False - cell.road_pixel = None - cell.model = self - self.schedule.add(cell) - - self.initialize_data_collector( - model_reporters={"Percentage Urbanized": "pct_urbanized"} - ) - - @property - def pct_urbanized(self) -> float: - total_urban = sum([cell.urban for cell in self.space.raster_layer]) - return total_urban / (self.world_width * self.world_height) * 100.0 - - def _load_data(self) -> None: - self.space = City( - width=self.world_width, - height=self.world_height, - crs="epsg:3857", - total_bounds=[-901575.0, 1442925.0, -885645.0, 1454745.0], - ) - self.space.load_datasets( - urban_data="data/urban_santafe.asc.gz", - slope_data="data/slope_santafe.asc.gz", - road_data="data/road1_santafe.asc.gz", - excluded_data="data/excluded_santafe.asc.gz", - land_use_data="data/landuse_santafe.asc.gz", - ) - - def _check_suitability(self) -> None: - max_slope = max([cell.slope for cell in self.space.raster_layer]) - - prob_to_build = [] - - i = 0 - while i <= self.critical_slope: - i += 1 - val = (self.critical_slope - i) / self.critical_slope - prob_to_build.append(val ** (self.slope_coefficient / 200)) - - j = 1 - while j <= (max_slope - self.critical_slope): - prob_to_build.append(0) - j += 1 - - pct_suitable = 0 - - for cell in self.space.raster_layer: - if ( - int(cell.slope) != -9999 - and np.random.uniform() >= prob_to_build[int(cell.slope)] - ) or (cell.excluded == 0.0): - cell.suitable = False - else: - cell.suitable = True - pct_suitable += 1 - - pct_suitable = pct_suitable / (self.world_width * self.world_height) * 100 - - def step(self): - self._spontaneous_growth() - self.schedule.step() - if self.road_influence: - self._road_influenced_growth() - self.datacollector.collect(self) - - def _spontaneous_growth(self) -> None: - i = 0 - while i < self.dispersion_value: - i += 1 - w = np.random.randint(self.world_width) - h = np.random.randint(self.world_height) - random_cell = self.space.raster_layer.cells[w][h] - if (not random_cell.urban) and random_cell.suitable: - random_cell.urban = True - random_cell.new_urbanized = True - - def _road_influenced_growth(self) -> None: - pass diff --git a/examples/urban_growth/urban_growth/server.py b/examples/urban_growth/urban_growth/server.py deleted file mode 100644 index ecc48488..00000000 --- a/examples/urban_growth/urban_growth/server.py +++ /dev/null @@ -1,64 +0,0 @@ -from typing import Tuple - -import mesa - -import mesa_geo as mg - -from .model import UrbanGrowth -from .space import UrbanCell - - -def cell_portrayal(cell: UrbanCell) -> Tuple[float, float, float, float]: - if cell.urban: - if cell.old_urbanized: - return 0, 0, 255, 1 - else: - return 255, 0, 0, 1 - else: - return 0, 0, 0, 0 - - -class UrbanizedText(mesa.visualization.TextElement): - def render(self, model): - return f"Percentage Urbanized: {model.pct_urbanized:.2f}%" - - -model_params = { - "max_coefficient": mesa.visualization.NumberInput("max_coefficient", 100), - "dispersion_coefficient": mesa.visualization.Slider( - "dispersion_coefficient", 20, 0, 100, 1 - ), - "spread_coefficient": mesa.visualization.Slider( - "spread_coefficient", 27, 0, 100, 1 - ), - "breed_coefficient": mesa.visualization.Slider("breed_coefficient", 5, 0, 100, 1), - "rg_coefficient": mesa.visualization.Slider("rg_coefficient", 10, 0, 100, 1), - "slope_coefficient": mesa.visualization.Slider("slope_coefficient", 50, 0, 100, 1), - "critical_slope": mesa.visualization.Slider("critical_slope", 25, 0, 100, 1), - "road_influence": mesa.visualization.Choice( - "road_influence", False, choices=[True, False] - ), -} - - -map_module = mg.visualization.MapModule( - portrayal_method=cell_portrayal, - view=[12.904598815296707, -8.027435210420451], - zoom=12.1, - map_height=394, - map_width=531, - scale_options={"imperial": False}, -) -urbanized_text = UrbanizedText() -urbanized_chart = mesa.visualization.ChartModule( - [ - {"Label": "Percentage Urbanized", "Color": "Black"}, - ] -) - -server = mesa.visualization.ModularServer( - UrbanGrowth, - [map_module, urbanized_text, urbanized_chart], - "Urban Growth Model", - model_params, -) diff --git a/examples/urban_growth/urban_growth/space.py b/examples/urban_growth/urban_growth/space.py deleted file mode 100644 index bb48f3a2..00000000 --- a/examples/urban_growth/urban_growth/space.py +++ /dev/null @@ -1,122 +0,0 @@ -from __future__ import annotations - -import gzip -import random - -import mesa -import numpy as np -import rasterio as rio - -import mesa_geo as mg - - -class UrbanCell(mg.Cell): - urban: bool | None - slope: int | None - road_1: int | None - excluded: int | None - land_use: int | None - - suitable: bool | None - road: bool | None - run_value: int | None - road_found: bool | None - road_pixel: UrbanCell | None - - new_urbanized: bool | None - old_urbanized: bool | None - - def __init__( - self, - pos: mesa.space.Coordinate | None = None, - indices: mesa.space.Coordinate | None = None, - ): - super().__init__(pos, indices) - self.urban = None - self.slope = None - self.road_1 = None - self.excluded = None - self.land_use = None - - self.suitable = None - self.road = None - self.run_value = None - self.road_found = None - self.road_pixel = None - self.new_urbanized = None - self.old_urbanized = None - - def step(self): - self._new_spreading_center_growth() - self._edge_growth() - - def _new_spreading_center_growth(self) -> None: - if self.new_urbanized: - x = np.random.randint(self.model.max_coefficient) - if x < self.model.breed_coefficient: - neighbors = self.model.space.raster_layer.get_neighboring_cells( - self.pos, moore=True - ) - for random_neighbor in random.choices(neighbors, k=2): - if (not random_neighbor.urban) and random_neighbor.suitable: - random_neighbor.urban = True - random_neighbor.new_urbanized = True - self.new_urbanized = False - - def _edge_growth(self) -> None: - if self.urban: - x = np.random.randint(self.model.max_coefficient) - if x < self.model.spread_coefficient: - neighbors = self.model.space.raster_layer.get_neighboring_cells( - self.pos, moore=True - ) - urban_neighbors = [c for c in neighbors if c.urban] - non_urban_neighbors = [c for c in neighbors if not c.urban] - if len(urban_neighbors) > 1 and len(non_urban_neighbors) > 0: - random_non_urban_neighbor = random.choice(non_urban_neighbors) - if random_non_urban_neighbor.suitable: - random_non_urban_neighbor.urban = True - random_non_urban_neighbor.new_urbanized = True - - -class City(mg.GeoSpace): - def __init__(self, width, height, crs, total_bounds): - super().__init__(crs=crs) - self.add_layer( - mg.RasterLayer(width, height, crs, total_bounds, cell_cls=UrbanCell) - ) - - def load_datasets( - self, urban_data, slope_data, road_data, excluded_data, land_use_data - ): - data = { - "urban": urban_data, - "slope": slope_data, - "road_1": road_data, - "excluded": excluded_data, - "land_use": land_use_data, - } - for attribute_name, data_file in data.items(): - with gzip.open(data_file, "rb") as f, rio.open(f, "r") as dataset: - values = dataset.read() - self.raster_layer.apply_raster(values, attr_name=attribute_name) - - for cell in self.raster_layer: - cell.urban = cell.urban == 2 - cell.old_urbanized = cell.urban - - def check_road(self): - for cell in self.raster_layer: - cell.road = cell.road_1 > 0 - - @property - def raster_layer(self): - return self.layers[0] - - def is_at_boundary(self, row_idx, col_idx): - return ( - row_idx == 0 - or row_idx == self.raster_layer.height - or col_idx == 0 - or col_idx == self.raster_layer.width - ) diff --git a/setup.cfg b/setup.cfg index b3b8edcd..45dfef38 100644 --- a/setup.cfg +++ b/setup.cfg @@ -34,9 +34,7 @@ install_requires = geopandas libpysal rtree - # unpin rasterio version when the following issue is fixed: - # https://github.com/rasterio/rasterio/issues/2863 - rasterio==1.3.7 + rasterio shapely numpy pyproj diff --git a/tests/test_Examples.py b/tests/test_Examples.py deleted file mode 100644 index 6983dfba..00000000 --- a/tests/test_Examples.py +++ /dev/null @@ -1,66 +0,0 @@ -import contextlib -import importlib -import os -import sys -import unittest -from pathlib import Path - - -def classcase(name): - return "".join(x.capitalize() for x in name.replace("-", "_").split("_")) - - -class TestExamples(unittest.TestCase): - """ - Test examples' models. This creates a model object and iterates it through - some steps. The idea is to get code coverage, rather than to test the - details of each example's model. - """ - - EXAMPLES = (Path(__file__).parent / "../examples").resolve() - - @contextlib.contextmanager - def active_example_dir(self, example): - "save and restore sys.path and sys.modules" - old_sys_path = sys.path[:] - old_sys_modules = sys.modules.copy() - old_cwd = Path.cwd() - example_path = self.EXAMPLES / example - try: - sys.path.insert(0, str(example_path)) - os.chdir(example_path) - yield - finally: - os.chdir(old_cwd) - added = [m for m in sys.modules if m not in old_sys_modules] - for mod in added: - del sys.modules[mod] - sys.modules.update(old_sys_modules) - sys.path[:] = old_sys_path - - def test_examples(self): - for example in os.listdir(self.EXAMPLES): - if not os.path.isdir(os.path.join(self.EXAMPLES, example)): - continue - if hasattr(self, f"test_{example.replace('-', '_')}"): - # non-standard example; tested below - continue - - print(f"testing example {example!r}") - with self.active_example_dir(example): - try: - # model.py at the top level - mod = importlib.import_module("model") - server = importlib.import_module("server") - server.server.render_model() - except ImportError: - # /model.py - mod = importlib.import_module(f"{example.replace('-', '_')}.model") - server = importlib.import_module( - f"{example.replace('-', '_')}.server" - ) - server.server.render_model() - model_class = getattr(mod, classcase(example)) - model = model_class() - for _ in range(10): - model.step()