gregor 0.0.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (47) hide show
  1. gregor-0.0.1/.flake8 +3 -0
  2. gregor-0.0.1/.github/workflows/publish-pypi.yaml +36 -0
  3. gregor-0.0.1/.github/workflows/publish-test-pypi.yaml +38 -0
  4. gregor-0.0.1/.gitignore +7 -0
  5. gregor-0.0.1/.pre-commit-config.yaml +23 -0
  6. gregor-0.0.1/.readthedocs.yaml +14 -0
  7. gregor-0.0.1/CHANGELOG.md +6 -0
  8. gregor-0.0.1/CITATION.cff +15 -0
  9. gregor-0.0.1/LICENSE.txt +22 -0
  10. gregor-0.0.1/PKG-INFO +51 -0
  11. gregor-0.0.1/README.md +25 -0
  12. gregor-0.0.1/docs/Changelog.md +2 -0
  13. gregor-0.0.1/docs/api.md +11 -0
  14. gregor-0.0.1/docs/examples/cli.md +8 -0
  15. gregor-0.0.1/docs/examples/data/boundaries_NUTS0.geojson +9 -0
  16. gregor-0.0.1/docs/examples/data/boundaries_NUTS3.geojson +91 -0
  17. gregor-0.0.1/docs/examples/data/demand.csv +4 -0
  18. gregor-0.0.1/docs/examples/data/demand.geojson +9 -0
  19. gregor-0.0.1/docs/examples/data/population_small.tif +0 -0
  20. gregor-0.0.1/docs/examples/disaggregate.py +96 -0
  21. gregor-0.0.1/docs/img/gregor.svg +89 -0
  22. gregor-0.0.1/docs/img/gregor_black.svg +89 -0
  23. gregor-0.0.1/docs/index.md +1 -0
  24. gregor-0.0.1/mkdocs.yml +92 -0
  25. gregor-0.0.1/pyproject.toml +71 -0
  26. gregor-0.0.1/requirements/base.txt +9 -0
  27. gregor-0.0.1/requirements/dev.txt +4 -0
  28. gregor-0.0.1/setup.cfg +4 -0
  29. gregor-0.0.1/src/gregor/__init__.py +1 -0
  30. gregor-0.0.1/src/gregor/aggregate.py +127 -0
  31. gregor-0.0.1/src/gregor/cli.py +55 -0
  32. gregor-0.0.1/src/gregor/disaggregate.py +146 -0
  33. gregor-0.0.1/src/gregor/raster.py +74 -0
  34. gregor-0.0.1/src/gregor.egg-info/PKG-INFO +51 -0
  35. gregor-0.0.1/src/gregor.egg-info/SOURCES.txt +45 -0
  36. gregor-0.0.1/src/gregor.egg-info/dependency_links.txt +1 -0
  37. gregor-0.0.1/src/gregor.egg-info/entry_points.txt +2 -0
  38. gregor-0.0.1/src/gregor.egg-info/requires.txt +9 -0
  39. gregor-0.0.1/src/gregor.egg-info/top_level.txt +1 -0
  40. gregor-0.0.1/test/_files/create_test_data.py +84 -0
  41. gregor-0.0.1/test/_files/points.geojson +16 -0
  42. gregor-0.0.1/test/_files/raster.tif +0 -0
  43. gregor-0.0.1/test/_files/segmentation_2x2.geojson +10 -0
  44. gregor-0.0.1/test/_files/segmentation_3x3.geojson +15 -0
  45. gregor-0.0.1/test/_files/test.png +0 -0
  46. gregor-0.0.1/test/test_aggregate.py +95 -0
  47. gregor-0.0.1/test/test_disaggregate.py +47 -0
gregor-0.0.1/.flake8 ADDED
@@ -0,0 +1,3 @@
1
+ [flake8]
2
+ exclude = meta/migrations/, docs/
3
+ max-line-length=100
@@ -0,0 +1,36 @@
1
+ name: ⚠️ Build production package and release on pypi
2
+
3
+ on:
4
+ release:
5
+ types: [published]
6
+
7
+ jobs:
8
+ build-and-publish:
9
+ name: Build and publish Python distributions to PyPI
10
+ runs-on: ubuntu-latest
11
+ environment: pypi-publish
12
+ steps:
13
+ - uses: actions/checkout@main
14
+ - name: Set up Python 3.10
15
+ uses: actions/setup-python@v3
16
+ with:
17
+ python-version: "3.10"
18
+
19
+ - name: Install pypa/build
20
+ run: >-
21
+ python -m
22
+ pip install
23
+ build
24
+ --user
25
+ - name: Build a binary wheel and a source tarball
26
+ run: >-
27
+ python -m
28
+ build
29
+ --sdist
30
+ --wheel
31
+ --outdir dist/
32
+ - name: Publish distribution to PyPI
33
+ if: startsWith(github.ref, 'refs/tags')
34
+ uses: pypa/gh-action-pypi-publish@release/v1
35
+ with:
36
+ password: ${{ secrets.PYPI }}
@@ -0,0 +1,38 @@
1
+ name: Build and release on test pypi
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ push:
6
+ branches:
7
+ - test-release # update pyproject.toml version number
8
+
9
+ jobs:
10
+ build-and-publish:
11
+ name: Build and publish Python distributions to TestPyPI
12
+ runs-on: ubuntu-latest
13
+ environment: pypi-publish
14
+ steps:
15
+ - uses: actions/checkout@main
16
+ - name: Set up Python 3.10
17
+ uses: actions/setup-python@v3
18
+ with:
19
+ python-version: "3.10"
20
+
21
+ - name: Install pypa/build
22
+ run: >-
23
+ python -m
24
+ pip install
25
+ build
26
+ --user
27
+ - name: Build a binary wheel and a source tarball
28
+ run: >-
29
+ python -m
30
+ build
31
+ --sdist
32
+ --wheel
33
+ --outdir dist/
34
+ - name: Publish distribution to Test PyPI
35
+ uses: pypa/gh-action-pypi-publish@release/v1
36
+ with:
37
+ password: ${{ secrets.PYPI_TEST }}
38
+ repository_url: https://test.pypi.org/legacy/
@@ -0,0 +1,7 @@
1
+ .idea/
2
+ .vscode/
3
+ .snakemake/
4
+ __pycache__/
5
+ *.egg-info/
6
+ build/
7
+ data/
@@ -0,0 +1,23 @@
1
+ exclude: 'docs|node_modules|migrations|.git|.tox'
2
+ default_stages: [commit]
3
+ fail_fast: true
4
+
5
+ repos:
6
+ - repo: https://github.com/pre-commit/pre-commit-hooks
7
+ rev: v4.5.0
8
+ hooks:
9
+ - id: trailing-whitespace
10
+ files: (^|/)a/.+\.(py|html|sh|css|js)$
11
+ - id: check-added-large-files
12
+ args: ["--maxkb=2000"]
13
+
14
+ # Linting with ruff
15
+ - repo: https://github.com/charliermarsh/ruff-pre-commit
16
+ # Ruff version.
17
+ rev: 'v0.1.6'
18
+ hooks:
19
+ - id: ruff
20
+ types_or: [ python, pyi, jupyter ]
21
+ args: [--fix, --exit-non-zero-on-fix]
22
+ - id: ruff-format
23
+ types_or: [ python, pyi, jupyter ]
@@ -0,0 +1,14 @@
1
+ version: 2
2
+ conda:
3
+ environment: requirements/base.txt
4
+ build:
5
+ os: ubuntu-22.04
6
+ tools:
7
+ python: mambaforge-4.10
8
+ jobs:
9
+ post_create_environment:
10
+ - conda install python=3.12 --file requirements/dev.txt
11
+ - pip install --no-deps .
12
+
13
+ mkdocs:
14
+ configuration: mkdocs.yml
@@ -0,0 +1,6 @@
1
+ Changelog
2
+ =========
3
+
4
+ v0.0.1 (2024)
5
+ ------------------------------------------------------------
6
+ - Initial release
@@ -0,0 +1,15 @@
1
+ cff-version: 1.2.0
2
+ message: "If you use this software, please cite it using these metadata."
3
+ authors:
4
+ - family-names: "Launer"
5
+ given-names: "Jann"
6
+ alias: "@jnnr"
7
+ affiliation: "TU Delft"
8
+ orcid: "https://orcid.org/0009-0007-2187-1488"
9
+ title: "Gregor"
10
+ type: software
11
+ license: MIT
12
+ version: 0.0.1
13
+ doi:
14
+ date-released:
15
+ url: "https://github.com/jnnr/gregor"
@@ -0,0 +1,22 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright 2024 Jann Launer
4
+
5
+
6
+ Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ of this software and associated documentation files (the “Software”), to deal
8
+ in the Software without restriction, including without limitation the rights
9
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ copies of the Software, and to permit persons to whom the Software is
11
+ furnished to do so, subject to the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be included in
14
+ all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22
+ THE SOFTWARE.
gregor-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,51 @@
1
+ Metadata-Version: 2.1
2
+ Name: gregor
3
+ Version: 0.0.1
4
+ Summary: A library for spatial aggregation and disaggregation
5
+ Author-email: Jann Launer <j.a.c.launer@tudelft.nl>
6
+ Project-URL: changelog, https://github.com/jnnr/gregor/blob/main/CHANGELOG.md
7
+ Project-URL: homepage, https://gregor.readthedocs.io/en/latest/
8
+ Project-URL: repository, https://github.com/jnnr/gregor.git
9
+ Keywords: gis
10
+ Classifier: Programming Language :: Python :: 3.8
11
+ Classifier: Programming Language :: Python :: 3.9
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Requires-Python: <4,>=3.8
15
+ Description-Content-Type: text/markdown
16
+ License-File: LICENSE.txt
17
+ Requires-Dist: pandas>=1.2
18
+ Requires-Dist: numpy
19
+ Requires-Dist: matplotlib
20
+ Requires-Dist: geopandas
21
+ Requires-Dist: xarray
22
+ Requires-Dist: rasterio
23
+ Requires-Dist: rioxarray
24
+ Requires-Dist: rasterstats
25
+ Requires-Dist: click
26
+
27
+ # Gregor: Aggregation and disaggregation of spatial data
28
+
29
+ Gregor is a tool that makes your life easier when aggregating and dis-aggregating spatial data. It has been developed in the context of preparing data for energy system modeling, but can be applied in any situation involving spatial data.
30
+
31
+ ## Installation
32
+
33
+ Install the latest release from pypi using conda.
34
+
35
+ conda install gregor
36
+
37
+ Or, using pip.
38
+
39
+ pip install gregor
40
+
41
+ Alternatively, install an editable local version in an environment by cloning the repository and running:
42
+
43
+ pip install -e <path-to-repo>
44
+
45
+ ## Usage
46
+
47
+ Please have a look at the examples presented in the [documentation](https://gregor.readthedocs.io/en/latest/).
48
+
49
+ ## Development
50
+
51
+ If you encounter a bug, consider opening an issue on [GitHub](https://github.com/jnnr/gregor/issues).
gregor-0.0.1/README.md ADDED
@@ -0,0 +1,25 @@
1
+ # Gregor: Aggregation and disaggregation of spatial data
2
+
3
+ Gregor is a tool that makes your life easier when aggregating and dis-aggregating spatial data. It has been developed in the context of preparing data for energy system modeling, but can be applied in any situation involving spatial data.
4
+
5
+ ## Installation
6
+
7
+ Install the latest release from pypi using conda.
8
+
9
+ conda install gregor
10
+
11
+ Or, using pip.
12
+
13
+ pip install gregor
14
+
15
+ Alternatively, install an editable local version in an environment by cloning the repository and running:
16
+
17
+ pip install -e <path-to-repo>
18
+
19
+ ## Usage
20
+
21
+ Please have a look at the examples presented in the [documentation](https://gregor.readthedocs.io/en/latest/).
22
+
23
+ ## Development
24
+
25
+ If you encounter a bug, consider opening an issue on [GitHub](https://github.com/jnnr/gregor/issues).
@@ -0,0 +1,2 @@
1
+
2
+ --8<-- "CHANGELOG.md"
@@ -0,0 +1,11 @@
1
+ ::: gregor.aggregate
2
+ options:
3
+ show_source: false
4
+
5
+ ::: gregor.disaggregate
6
+ options:
7
+ show_source: false
8
+
9
+ ::: gregor.raster
10
+ options:
11
+ show_source: false
@@ -0,0 +1,8 @@
1
+ It is also possible to run Gregor via the command line interface, without writing any python code. With Gregor installed in your python environment, you
2
+ can for example disaggregate the example data:
3
+
4
+ gregor disagg docs/examples/data/demand.geojson FC_OTH_HH_E docs/examples/data/population_small.tif disaggregated.tif
5
+
6
+ And then aggregate the disaggregated raster data.
7
+
8
+ gregor agg disaggregated.tif docs/examples/data/boundaries_NUTS3.geojson aggregated.geojson
@@ -0,0 +1,9 @@
1
+ {
2
+ "type": "FeatureCollection",
3
+ "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
4
+ "features": [
5
+ { "type": "Feature", "properties": { "NUTS_ID": "BE", "LEVL_CODE": 0, "CNTR_CODE": "BE", "NAME_LATN": "Belgique/België", "NUTS_NAME": "Belgique/België", "MOUNT_TYPE": 0.0, "URBN_TYPE": 0, "COAST_TYPE": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.828632453000068, 51.480263619000027 ], [ 4.841045910000048, 51.427809988000035 ], [ 4.899390513000071, 51.405887428000028 ], [ 5.041508126000053, 51.47912345900005 ], [ 5.10218, 51.429004999000028 ], [ 5.087797335000062, 51.382296376000056 ], [ 5.144811685000036, 51.32092401400007 ], [ 5.225900459000059, 51.309463060000041 ], [ 5.237716500000033, 51.261600499000053 ], [ 5.498431442000026, 51.295818243000042 ], [ 5.547684841000034, 51.268815084000039 ], [ 5.566283500000054, 51.220836499000029 ], [ 5.835203339000032, 51.156247888000053 ], [ 5.798274, 51.059853499000042 ], [ 5.766125500000044, 51.008715499000061 ], [ 5.732599490000041, 50.92736713100004 ], [ 5.653808039000069, 50.865605727000059 ], [ 5.687622, 50.811923999000044 ], [ 5.682000500000072, 50.757446499000082 ], [ 5.773966918000042, 50.774515059000066 ], [ 5.892073, 50.755237499000032 ], [ 6.020999, 50.754295499000079 ], [ 6.118585524000025, 50.71241445000004 ], [ 6.183820236000031, 50.638426841000069 ], [ 6.256062154000062, 50.622096697000075 ], [ 6.189312500000028, 50.566093999000032 ], [ 6.192200500000069, 50.521055499000056 ], [ 6.315556, 50.497042499000031 ], [ 6.367783069000041, 50.445171952000067 ], [ 6.354699608000033, 50.379104384000073 ], [ 6.405028500000071, 50.323308499000063 ], [ 6.314800928000068, 50.313061020000077 ], [ 6.193273631000068, 50.240504416000078 ], [ 6.137662500000033, 50.129951499000072 ], [ 6.02489950000006, 50.182779499000048 ], [ 5.901236449000066, 50.108460293000064 ], [ 5.868830156000058, 50.047352903000046 ], [ 5.775859837000041, 49.94787296800007 ], [ 5.746319, 49.853594999000052 ], [ 5.758952342000043, 49.801697051000076 ], [ 5.871447311000054, 49.715090101000044 ], [ 5.899069892000057, 49.657414507000055 ], [ 5.860815182000067, 49.573523841000053 ], [ 5.818117, 49.546310499000072 ], [ 5.734556, 49.545690499000045 ], [ 5.470883, 49.497237999000049 ], [ 5.393511, 49.617110999000033 ], [ 5.319951273000072, 49.621279646000062 ], [ 5.290618184000039, 49.679847576000043 ], [ 5.153738500000031, 49.717925999000045 ], [ 4.969431, 49.801825999000073 ], [ 4.864433605000045, 49.811490994000053 ], [ 4.878603489000056, 49.91254660900006 ], [ 4.801696917000072, 49.965331778000063 ], [ 4.835768158000064, 50.047352903000046 ], [ 4.869070423000039, 50.14438244300004 ], [ 4.796697, 50.148677999000029 ], [ 4.697388444000069, 50.085044468000035 ], [ 4.695205733000023, 50.047352903000046 ], [ 4.677657750000037, 49.996282164000036 ], [ 4.432494, 49.941615999000078 ], [ 4.233133, 49.957828499000072 ], [ 4.140853, 49.978759999000033 ], [ 4.20852919500004, 50.078787749000071 ], [ 4.148795006000057, 50.150555392000058 ], [ 4.198192552000023, 50.250051176000056 ], [ 4.055430664000028, 50.340758471000072 ], [ 4.027774500000021, 50.358330499000033 ], [ 3.894067842000027, 50.332536185000038 ], [ 3.770233474000065, 50.350434464000045 ], [ 3.707888852000053, 50.322367108000037 ], [ 3.666697997000028, 50.355751208000072 ], [ 3.65551, 50.461735499000042 ], [ 3.615081500000031, 50.490398999000035 ], [ 3.523995140000068, 50.497477096000068 ], [ 3.490983560000075, 50.527156538000042 ], [ 3.385811585000056, 50.495033195000076 ], [ 3.303302081000027, 50.522422882000058 ], [ 3.245294, 50.713009499000066 ], [ 3.195384601000058, 50.755354623000073 ], [ 3.176996, 50.756164499000079 ], [ 3.098481, 50.779018999000073 ], [ 3.018708500000059, 50.773532999000054 ], [ 2.908104693000041, 50.701741492000053 ], [ 2.863276, 50.70834349900008 ], [ 2.706694563000042, 50.809928680000041 ], [ 2.636143225000069, 50.820798952000075 ], [ 2.607036, 50.912689499000066 ], [ 2.622620769000036, 50.956608231000075 ], [ 2.546011, 51.089381999000068 ], [ 2.604628, 51.110095999000066 ], [ 2.651029188000052, 51.129147854000053 ], [ 2.679293830000063, 51.136120518000041 ], [ 2.703774, 51.144825499000035 ], [ 2.749051500000064, 51.161769999000057 ], [ 3.110688500000037, 51.312259499000049 ], [ 3.195384601000058, 51.355015307000031 ], [ 3.365787500000067, 51.369835499000033 ], [ 3.380661, 51.274299499000051 ], [ 3.500282427000059, 51.246750655000028 ], [ 3.534311144000071, 51.28951247100008 ], [ 3.601747522000039, 51.300566880000076 ], [ 3.856339500000047, 51.211055999000052 ], [ 3.977666500000055, 51.225131999000041 ], [ 4.105211423000071, 51.265399184000046 ], [ 4.165755500000046, 51.292728499000077 ], [ 4.215951889000053, 51.333092815000043 ], [ 4.234817500000077, 51.348253999000065 ], [ 4.242049, 51.353966999000079 ], [ 4.243669500000067, 51.374729499000068 ], [ 4.279565, 51.376017499000056 ], [ 4.405944964000071, 51.365157236000073 ], [ 4.389655381000068, 51.443983095000078 ], [ 4.486173741000073, 51.477654543000028 ], [ 4.527887926000062, 51.475647653000067 ], [ 4.548223534000044, 51.42923219000005 ], [ 4.669544, 51.426383999000052 ], [ 4.759926, 51.502464499000041 ], [ 4.828632453000068, 51.480263619000027 ] ], [ [ 4.746438548000071, 51.438228277000064 ], [ 4.788102604000073, 51.39572254400008 ], [ 4.830543589000058, 51.414826600000026 ], [ 4.781879322000066, 51.445428090000064 ], [ 4.746438548000071, 51.438228277000064 ] ] ] } },
6
+ { "type": "Feature", "properties": { "NUTS_ID": "NL", "LEVL_CODE": 0, "CNTR_CODE": "NL", "NAME_LATN": "Nederland", "NUTS_NAME": "Nederland", "MOUNT_TYPE": 0.0, "URBN_TYPE": 0, "COAST_TYPE": 0 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.874905, 53.40801299900005 ], [ 6.918358349000073, 53.345293868000056 ], [ 6.993024153000022, 53.312396300000046 ], [ 7.078399067000021, 53.298750725000048 ], [ 7.092712500000061, 53.257017499000028 ], [ 7.208935, 53.24306449900007 ], [ 7.202794500000039, 53.113281499000038 ], [ 7.201083249000021, 52.985502139000062 ], [ 7.092692, 52.838200999000037 ], [ 7.072659804000068, 52.81168819800007 ], [ 7.053421775000061, 52.657171615000038 ], [ 7.006229500000074, 52.638762999000051 ], [ 6.70973250000003, 52.627823499000044 ], [ 6.729771095000046, 52.574150486000065 ], [ 6.697865500000034, 52.486285999000074 ], [ 6.924121396000032, 52.441626039000028 ], [ 6.995875519000037, 52.454409569000063 ], [ 7.063051747000031, 52.373042514000076 ], [ 7.034425620000036, 52.291487026000027 ], [ 7.065685, 52.241372999000077 ], [ 6.991689886000074, 52.222239122000076 ], [ 6.858584230000076, 52.126693615000079 ], [ 6.760465, 52.118569499000046 ], [ 6.695295429000055, 52.050816737000048 ], [ 6.819483496000032, 51.990481412000065 ], [ 6.769627628000023, 51.921280187000036 ], [ 6.418819289000055, 51.861259912000037 ], [ 6.407779500000061, 51.828091999000037 ], [ 6.167766, 51.90080449900006 ], [ 6.153173302000027, 51.845999833000064 ], [ 6.061328113000059, 51.85874812600008 ], [ 5.965693764000036, 51.829295221000052 ], [ 5.979736423000077, 51.770876795000049 ], [ 5.953192, 51.747845999000049 ], [ 6.102653047000047, 51.656227620000038 ], [ 6.105893465000065, 51.600734715000044 ], [ 6.204204436000055, 51.518716052000059 ], [ 6.224405, 51.364978999000073 ], [ 6.072657, 51.242587499000081 ], [ 6.089336081000056, 51.17901841500003 ], [ 6.174812, 51.184513499000047 ], [ 5.963342438000041, 51.048076754000078 ], [ 5.900039583000023, 51.058977766000055 ], [ 5.877085, 51.032100999000079 ], [ 5.909806912000022, 50.986444076000055 ], [ 6.00912829300006, 50.981923595000069 ], [ 6.030686148000029, 50.93437655200006 ], [ 6.086947500000065, 50.913134999000079 ], [ 6.071928093000054, 50.858410953000032 ], [ 6.010228014000063, 50.803566077000028 ], [ 6.020999, 50.754295499000079 ], [ 5.892073, 50.755237499000032 ], [ 5.773966918000042, 50.774515059000066 ], [ 5.682000500000072, 50.757446499000082 ], [ 5.687622, 50.811923999000044 ], [ 5.653808039000069, 50.865605727000059 ], [ 5.732599490000041, 50.92736713100004 ], [ 5.766125500000044, 51.008715499000061 ], [ 5.798274, 51.059853499000042 ], [ 5.835203339000032, 51.156247888000053 ], [ 5.566283500000054, 51.220836499000029 ], [ 5.547684841000034, 51.268815084000039 ], [ 5.498431442000026, 51.295818243000042 ], [ 5.237716500000033, 51.261600499000053 ], [ 5.225900459000059, 51.309463060000041 ], [ 5.144811685000036, 51.32092401400007 ], [ 5.087797335000062, 51.382296376000056 ], [ 5.10218, 51.429004999000028 ], [ 5.041508126000053, 51.47912345900005 ], [ 4.899390513000071, 51.405887428000028 ], [ 4.841045910000048, 51.427809988000035 ], [ 4.828632453000068, 51.480263619000027 ], [ 4.759926, 51.502464499000041 ], [ 4.669544, 51.426383999000052 ], [ 4.548223534000044, 51.42923219000005 ], [ 4.527887926000062, 51.475647653000067 ], [ 4.486173741000073, 51.477654543000028 ], [ 4.389655381000068, 51.443983095000078 ], [ 4.405944964000071, 51.365157236000073 ], [ 4.279565, 51.376017499000056 ], [ 4.243669500000067, 51.374729499000068 ], [ 3.974970904000031, 51.452968085000066 ], [ 3.826961920000031, 51.39267903700005 ], [ 3.704043524000042, 51.44982936100007 ], [ 3.563542933000065, 51.447317815000076 ], [ 3.459761712000045, 51.530035720000058 ], [ 3.560867765000069, 51.585079829000051 ], [ 3.81102254700005, 51.599783077000041 ], [ 4.115813739000032, 51.444172902000048 ], [ 4.208037096000055, 51.445937718000039 ], [ 4.182627771000057, 51.506777993000071 ], [ 4.006757980000032, 51.575348155000029 ], [ 4.039716166000062, 51.62010659200007 ], [ 3.831095294000022, 51.682933996000031 ], [ 3.70103096400004, 51.691162390000045 ], [ 3.723859904000051, 51.729810014000066 ], [ 3.839083, 51.758296999000038 ], [ 3.892700799000067, 51.817605745000037 ], [ 4.040544810000029, 51.843004672000063 ], [ 4.043194181000047, 51.897601337000026 ], [ 3.997377965000055, 51.960636095000041 ], [ 4.127788500000065, 52.000542499000062 ], [ 4.162827788000072, 52.029529963000073 ], [ 4.198018500000046, 52.054144499000074 ], [ 4.374232500000062, 52.187089999000079 ], [ 4.493847500000072, 52.328259999000068 ], [ 4.560596500000031, 52.437425999000027 ], [ 4.609676500000035, 52.573400999000057 ], [ 4.649071, 52.756177499000046 ], [ 4.680109802000061, 52.81168819800007 ], [ 4.739581050000027, 52.958852087000082 ], [ 4.885117972000046, 52.894060489000026 ], [ 5.164383500000042, 53.000910499000042 ], [ 5.352741761000061, 53.087111702000072 ], [ 5.41122850000005, 53.151724499000068 ], [ 5.442230036000069, 53.210447599000076 ], [ 5.601125223000054, 53.303584508000029 ], [ 5.632482665000055, 53.312396300000046 ], [ 5.894864195000025, 53.38612844000005 ], [ 6.191301500000066, 53.410937999000055 ], [ 6.313622756000029, 53.401282385000059 ], [ 6.762261867000063, 53.464748326000063 ], [ 6.86023113300007, 53.44672158700007 ], [ 6.874905, 53.40801299900005 ] ] ], [ [ [ 6.262201789000073, 53.475940186000059 ], [ 6.140507060000061, 53.472230505000027 ], [ 6.130956764000075, 53.480401985000071 ], [ 6.147398482000028, 53.502674069000079 ], [ 6.271657068000025, 53.510180959000081 ], [ 6.383995737000021, 53.519091391000075 ], [ 6.395298177000029, 53.511953008000035 ], [ 6.262201789000073, 53.475940186000059 ] ] ], [ [ [ 5.642902248000041, 53.470904475000054 ], [ 5.751844598000048, 53.461123107000049 ], [ 5.866414201000055, 53.465404653000064 ], [ 5.969969522000042, 53.467932979000068 ], [ 5.968779792000021, 53.454251079000073 ], [ 5.868371055000068, 53.446551151000051 ], [ 5.809914035000077, 53.437276753000049 ], [ 5.726780012000063, 53.441754144000072 ], [ 5.642902248000041, 53.423883351000029 ], [ 5.606893580000076, 53.447997027000042 ], [ 5.642902248000041, 53.470904475000054 ] ] ], [ [ [ 5.384223157000065, 53.401159895000035 ], [ 5.291894704000072, 53.369542549000073 ], [ 5.258239540000034, 53.371764001000031 ], [ 5.169256343000029, 53.34789018400005 ], [ 5.14922122300004, 53.356267178000053 ], [ 5.196188168000049, 53.395421359000068 ], [ 5.39085981300002, 53.425196289000041 ], [ 5.494505306000065, 53.445326290000082 ], [ 5.517030646000023, 53.428906742000038 ], [ 5.442214751000051, 53.404009071000075 ], [ 5.384223157000065, 53.401159895000035 ] ] ], [ [ [ 5.077163598000027, 53.288255903000049 ], [ 5.001473213000054, 53.264299267000069 ], [ 4.988570788000061, 53.281769467000061 ], [ 5.054582013000072, 53.313731479000069 ], [ 5.077163598000027, 53.288255903000049 ] ] ], [ [ [ 4.984088658000076, 53.25412308500006 ], [ 4.921909914000025, 53.215388544000064 ], [ 4.884828070000026, 53.228789818000052 ], [ 4.890543487000059, 53.238288848000082 ], [ 4.972511944000075, 53.271351910000078 ], [ 4.984088658000076, 53.25412308500006 ] ] ], [ [ [ 4.819370258000049, 53.02916459000005 ], [ 4.784451661000048, 53.001323143000036 ], [ 4.751459123000075, 53.009298497000032 ], [ 4.720496076000074, 52.98402881700008 ], [ 4.708326158000034, 53.022169330000054 ], [ 4.71970275700005, 53.060948045000032 ], [ 4.75120455800004, 53.098988200000065 ], [ 4.841301015000056, 53.183408012000029 ], [ 4.861123450000036, 53.183403493000071 ], [ 4.908793900000035, 53.135042073000079 ], [ 4.897134116000075, 53.077489247000074 ], [ 4.861518603000036, 53.042296520000036 ], [ 4.819370258000049, 53.02916459000005 ] ] ], [ [ [ 4.88648114800003, 53.22611777000003 ], [ 4.876974367000059, 53.196984110000074 ], [ 4.832375131000049, 53.204647153000053 ], [ 4.864102219000074, 53.239602885000068 ], [ 4.88648114800003, 53.22611777000003 ] ] ], [ [ [ 4.830543589000058, 51.414826600000026 ], [ 4.788102604000073, 51.39572254400008 ], [ 4.746438548000071, 51.438228277000064 ], [ 4.781879322000066, 51.445428090000064 ], [ 4.830543589000058, 51.414826600000026 ] ] ], [ [ [ 3.516326481000021, 51.404424763000065 ], [ 3.859267985000031, 51.339096606000055 ], [ 3.993924801000048, 51.398114172000078 ], [ 4.105211423000071, 51.356199171000071 ], [ 4.192037867000067, 51.370154977000027 ], [ 4.234817500000077, 51.348253999000065 ], [ 4.215951889000053, 51.333092815000043 ], [ 4.165755500000046, 51.292728499000077 ], [ 4.105211423000071, 51.265399184000046 ], [ 3.977666500000055, 51.225131999000041 ], [ 3.856339500000047, 51.211055999000052 ], [ 3.601747522000039, 51.300566880000076 ], [ 3.534311144000071, 51.28951247100008 ], [ 3.500282427000059, 51.246750655000028 ], [ 3.380661, 51.274299499000051 ], [ 3.365787500000067, 51.369835499000033 ], [ 3.516326481000021, 51.404424763000065 ] ] ] ] } },
7
+ { "type": "Feature", "properties": { "NUTS_ID": "LU", "LEVL_CODE": 0, "CNTR_CODE": "LU", "NAME_LATN": "Luxembourg", "NUTS_NAME": "Luxembourg", "MOUNT_TYPE": 0.0, "URBN_TYPE": 0, "COAST_TYPE": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.137662500000033, 50.129951499000072 ], [ 6.127918174000058, 50.047352903000046 ], [ 6.253362131000074, 49.890930227000069 ], [ 6.326713396000059, 49.844969192000065 ], [ 6.474962500000061, 49.821274999000082 ], [ 6.51109198000006, 49.782800645000066 ], [ 6.501011628000072, 49.718714840000075 ], [ 6.432772165000074, 49.66199954800004 ], [ 6.380052500000033, 49.551104999000074 ], [ 6.367107500000031, 49.469506999000032 ], [ 6.215615252000021, 49.507609727000045 ], [ 6.101659580000046, 49.460353532000056 ], [ 5.999935611000069, 49.456224155000029 ], [ 5.893386, 49.496944499000051 ], [ 5.818117, 49.546310499000072 ], [ 5.860815182000067, 49.573523841000053 ], [ 5.899069892000057, 49.657414507000055 ], [ 5.871447311000054, 49.715090101000044 ], [ 5.758952342000043, 49.801697051000076 ], [ 5.746319, 49.853594999000052 ], [ 5.775859837000041, 49.94787296800007 ], [ 5.868830156000058, 50.047352903000046 ], [ 5.901236449000066, 50.108460293000064 ], [ 6.02489950000006, 50.182779499000048 ], [ 6.137662500000033, 50.129951499000072 ] ] ] } }
8
+ ]
9
+ }
@@ -0,0 +1,91 @@
1
+ {
2
+ "type": "FeatureCollection",
3
+ "crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } },
4
+ "features": [
5
+ { "type": "Feature", "properties": { "NUTS_ID": "BE100", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. de Bruxelles-Capitale/Arr. Brussel-Hoofdstad", "NUTS_NAME": "Arr. de Bruxelles-Capitale/Arr. Brussel-Hoofdstad", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.476783500000067, 50.820377499000074 ], [ 4.480476500000066, 50.794257999000081 ], [ 4.371403134000047, 50.76824504800004 ], [ 4.258377456000062, 50.822434289000057 ], [ 4.307760760000065, 50.890416631000051 ], [ 4.401441737000027, 50.906147777000058 ], [ 4.476783500000067, 50.820377499000074 ] ] ] } },
6
+ { "type": "Feature", "properties": { "NUTS_ID": "BE211", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Antwerpen", "NUTS_NAME": "Arr. Antwerpen", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.669544, 51.426383999000052 ], [ 4.773720962000027, 51.295392901000071 ], [ 4.694647, 51.178405999000063 ], [ 4.54184086600003, 51.158905441000059 ], [ 4.451851388000023, 51.075120936000076 ], [ 4.307828500000028, 51.125034499000037 ], [ 4.327238931000068, 51.169901068000058 ], [ 4.306697151000037, 51.276833373000045 ], [ 4.242049, 51.353966999000079 ], [ 4.243669500000067, 51.374729499000068 ], [ 4.279565, 51.376017499000056 ], [ 4.405944964000071, 51.365157236000073 ], [ 4.389655381000068, 51.443983095000078 ], [ 4.486173741000073, 51.477654543000028 ], [ 4.527887926000062, 51.475647653000067 ], [ 4.548223534000044, 51.42923219000005 ], [ 4.669544, 51.426383999000052 ] ] ] } },
7
+ { "type": "Feature", "properties": { "NUTS_ID": "BE212", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Mechelen", "NUTS_NAME": "Arr. Mechelen", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.789319, 51.038928999000063 ], [ 4.528663, 50.992264499000044 ], [ 4.240999, 51.036868999000035 ], [ 4.200686670000039, 51.044339792000073 ], [ 4.175792, 51.101211499000044 ], [ 4.307828500000028, 51.125034499000037 ], [ 4.451851388000023, 51.075120936000076 ], [ 4.54184086600003, 51.158905441000059 ], [ 4.694647, 51.178405999000063 ], [ 4.727479415000062, 51.125048700000036 ], [ 4.80322075600003, 51.106326073000048 ], [ 4.789319, 51.038928999000063 ] ] ] } },
8
+ { "type": "Feature", "properties": { "NUTS_ID": "BE213", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Turnhout", "NUTS_NAME": "Arr. Turnhout", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.828632453000068, 51.480263619000027 ], [ 4.841045910000048, 51.427809988000035 ], [ 4.899390513000071, 51.405887428000028 ], [ 5.041508126000053, 51.47912345900005 ], [ 5.10218, 51.429004999000028 ], [ 5.087797335000062, 51.382296376000056 ], [ 5.144811685000036, 51.32092401400007 ], [ 5.225900459000059, 51.309463060000041 ], [ 5.237716500000033, 51.261600499000053 ], [ 5.219441446000076, 51.225822789000063 ], [ 5.261073500000066, 51.146964999000033 ], [ 5.020244329000036, 51.07216528500004 ], [ 4.981574500000022, 51.03488549900004 ], [ 4.829276431000039, 51.01502451500005 ], [ 4.789319, 51.038928999000063 ], [ 4.80322075600003, 51.106326073000048 ], [ 4.727479415000062, 51.125048700000036 ], [ 4.694647, 51.178405999000063 ], [ 4.773720962000027, 51.295392901000071 ], [ 4.669544, 51.426383999000052 ], [ 4.759926, 51.502464499000041 ], [ 4.828632453000068, 51.480263619000027 ] ], [ [ 4.746438548000071, 51.438228277000064 ], [ 4.788102604000073, 51.39572254400008 ], [ 4.830543589000058, 51.414826600000026 ], [ 4.781879322000066, 51.445428090000064 ], [ 4.746438548000071, 51.438228277000064 ] ] ] } },
9
+ { "type": "Feature", "properties": { "NUTS_ID": "BE224", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Hasselt", "NUTS_NAME": "Arr. Hasselt", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.504225542000029, 51.018950027000074 ], [ 5.622395, 50.999236999000061 ], [ 5.600438427000029, 50.903687460000071 ], [ 5.487861492000036, 50.917862599000046 ], [ 5.407805981000024, 50.87814785300003 ], [ 5.260672069000066, 50.892861551000067 ], [ 5.274447210000062, 50.829544575000057 ], [ 5.236913, 50.727272999000036 ], [ 5.103480500000046, 50.70906399900008 ], [ 5.168050987000072, 50.886300239000036 ], [ 5.063702797000076, 50.940884069000049 ], [ 5.121158865000041, 51.020076909000068 ], [ 4.981574500000022, 51.03488549900004 ], [ 5.020244329000036, 51.07216528500004 ], [ 5.261073500000066, 51.146964999000033 ], [ 5.334422413000027, 51.082639359000041 ], [ 5.356948880000061, 51.016491519000056 ], [ 5.471918038000069, 51.005355698000074 ], [ 5.504225542000029, 51.018950027000074 ] ] ] } },
10
+ { "type": "Feature", "properties": { "NUTS_ID": "BE225", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Maaseik", "NUTS_NAME": "Arr. Maaseik", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.798274, 51.059853499000042 ], [ 5.766125500000044, 51.008715499000061 ], [ 5.622395, 50.999236999000061 ], [ 5.504225542000029, 51.018950027000074 ], [ 5.471918038000069, 51.005355698000074 ], [ 5.356948880000061, 51.016491519000056 ], [ 5.334422413000027, 51.082639359000041 ], [ 5.261073500000066, 51.146964999000033 ], [ 5.219441446000076, 51.225822789000063 ], [ 5.237716500000033, 51.261600499000053 ], [ 5.498431442000026, 51.295818243000042 ], [ 5.547684841000034, 51.268815084000039 ], [ 5.566283500000054, 51.220836499000029 ], [ 5.835203339000032, 51.156247888000053 ], [ 5.798274, 51.059853499000042 ] ] ] } },
11
+ { "type": "Feature", "properties": { "NUTS_ID": "BE223", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Tongeren", "NUTS_NAME": "Arr. Tongeren", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.887123837000047, 50.71852777600003 ], [ 5.819052, 50.71455749900008 ], [ 5.769941927000048, 50.746652147000077 ], [ 5.682000500000072, 50.757446499000082 ], [ 5.773966918000042, 50.774515059000066 ], [ 5.892073, 50.755237499000032 ], [ 5.887123837000047, 50.71852777600003 ] ] ], [ [ [ 5.732599490000041, 50.92736713100004 ], [ 5.653808039000069, 50.865605727000059 ], [ 5.687622, 50.811923999000044 ], [ 5.431686500000069, 50.71980299900008 ], [ 5.377119783000069, 50.745477433000076 ], [ 5.236913, 50.727272999000036 ], [ 5.274447210000062, 50.829544575000057 ], [ 5.260672069000066, 50.892861551000067 ], [ 5.407805981000024, 50.87814785300003 ], [ 5.487861492000036, 50.917862599000046 ], [ 5.600438427000029, 50.903687460000071 ], [ 5.622395, 50.999236999000061 ], [ 5.766125500000044, 51.008715499000061 ], [ 5.732599490000041, 50.92736713100004 ] ] ] ] } },
12
+ { "type": "Feature", "properties": { "NUTS_ID": "BE231", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Aalst", "NUTS_NAME": "Arr. Aalst", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.147153, 50.969398499000079 ], [ 4.156586646000051, 50.929291115000069 ], [ 4.136884818000055, 50.919428692000054 ], [ 4.105211423000071, 50.929446702000064 ], [ 4.059373975000028, 50.796890954000048 ], [ 3.895736500000055, 50.732944499000041 ], [ 3.815390500000035, 50.750724999000056 ], [ 3.86915715400005, 50.811164169000051 ], [ 3.783125669000071, 50.825695189000044 ], [ 3.746936, 50.907943499000055 ], [ 3.814829089000057, 50.908417004000057 ], [ 3.847701, 50.952754999000035 ], [ 4.037116639000033, 50.989293563000047 ], [ 4.105211423000071, 50.973662250000075 ], [ 4.147153, 50.969398499000079 ] ] ] } },
13
+ { "type": "Feature", "properties": { "NUTS_ID": "BE232", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Dendermonde", "NUTS_NAME": "Arr. Dendermonde", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.175792, 51.101211499000044 ], [ 4.200686670000039, 51.044339792000073 ], [ 4.240999, 51.036868999000035 ], [ 4.147153, 50.969398499000079 ], [ 4.105211423000071, 50.973662250000075 ], [ 4.037116639000033, 50.989293563000047 ], [ 3.847701, 50.952754999000035 ], [ 3.833386988000029, 51.041773510000041 ], [ 3.923106500000074, 51.07601149900006 ], [ 4.01190867300005, 51.086689485000079 ], [ 4.035866021000061, 51.137163824000027 ], [ 4.105211423000071, 51.135318006000034 ], [ 4.175792, 51.101211499000044 ] ] ] } },
14
+ { "type": "Feature", "properties": { "NUTS_ID": "BE233", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Eeklo", "NUTS_NAME": "Arr. Eeklo", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.856339500000047, 51.211055999000052 ], [ 3.505300152000075, 51.150567072000058 ], [ 3.41093, 51.159888999000032 ], [ 3.380661, 51.274299499000051 ], [ 3.500282427000059, 51.246750655000028 ], [ 3.534311144000071, 51.28951247100008 ], [ 3.601747522000039, 51.300566880000076 ], [ 3.856339500000047, 51.211055999000052 ] ] ] } },
15
+ { "type": "Feature", "properties": { "NUTS_ID": "BE234", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Gent", "NUTS_NAME": "Arr. Gent", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.923106500000074, 51.07601149900006 ], [ 3.833386988000029, 51.041773510000041 ], [ 3.847701, 50.952754999000035 ], [ 3.814829089000057, 50.908417004000057 ], [ 3.746936, 50.907943499000055 ], [ 3.533186745000023, 50.940666775000068 ], [ 3.466746500000056, 50.902096499000038 ], [ 3.419824, 50.910934999000062 ], [ 3.448829964000026, 50.94026391400007 ], [ 3.439757166000049, 51.025948639000035 ], [ 3.331306, 51.098872999000037 ], [ 3.41093, 51.159888999000032 ], [ 3.505300152000075, 51.150567072000058 ], [ 3.856339500000047, 51.211055999000052 ], [ 3.977666500000055, 51.225131999000041 ], [ 3.976964396000028, 51.170739934000039 ], [ 3.904554171000029, 51.123091483000053 ], [ 3.923106500000074, 51.07601149900006 ] ] ] } },
16
+ { "type": "Feature", "properties": { "NUTS_ID": "BE235", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Oudenaarde", "NUTS_NAME": "Arr. Oudenaarde", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.746936, 50.907943499000055 ], [ 3.783125669000071, 50.825695189000044 ], [ 3.86915715400005, 50.811164169000051 ], [ 3.815390500000035, 50.750724999000056 ], [ 3.775676500000031, 50.747892499000045 ], [ 3.719250698000053, 50.775024376000033 ], [ 3.629244429000039, 50.726433335000081 ], [ 3.541272500000048, 50.733700499000065 ], [ 3.460305500000061, 50.765898999000058 ], [ 3.513324886000021, 50.808235812000078 ], [ 3.466746500000056, 50.902096499000038 ], [ 3.533186745000023, 50.940666775000068 ], [ 3.746936, 50.907943499000055 ] ] ] } },
17
+ { "type": "Feature", "properties": { "NUTS_ID": "BE236", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Sint-Niklaas", "NUTS_NAME": "Arr. Sint-Niklaas", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.306697151000037, 51.276833373000045 ], [ 4.327238931000068, 51.169901068000058 ], [ 4.307828500000028, 51.125034499000037 ], [ 4.175792, 51.101211499000044 ], [ 4.105211423000071, 51.135318006000034 ], [ 4.035866021000061, 51.137163824000027 ], [ 4.01190867300005, 51.086689485000079 ], [ 3.923106500000074, 51.07601149900006 ], [ 3.904554171000029, 51.123091483000053 ], [ 3.976964396000028, 51.170739934000039 ], [ 3.977666500000055, 51.225131999000041 ], [ 4.105211423000071, 51.265399184000046 ], [ 4.165755500000046, 51.292728499000077 ], [ 4.215951889000053, 51.333092815000043 ], [ 4.234817500000077, 51.348253999000065 ], [ 4.242049, 51.353966999000079 ], [ 4.306697151000037, 51.276833373000045 ] ] ] } },
18
+ { "type": "Feature", "properties": { "NUTS_ID": "BE241", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Halle-Vilvoorde", "NUTS_NAME": "Arr. Halle-Vilvoorde", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.528663, 50.992264499000044 ], [ 4.606198726000059, 50.945220389000042 ], [ 4.529813080000054, 50.901300233000029 ], [ 4.52477602600004, 50.84542719500007 ], [ 4.476783500000067, 50.820377499000074 ], [ 4.401441737000027, 50.906147777000058 ], [ 4.307760760000065, 50.890416631000051 ], [ 4.258377456000062, 50.822434289000057 ], [ 4.371403134000047, 50.76824504800004 ], [ 4.480476500000066, 50.794257999000081 ], [ 4.597269, 50.763534499000059 ], [ 4.272625355000059, 50.696171414000048 ], [ 4.105211423000071, 50.707545730000049 ], [ 3.93947815000007, 50.691163808000056 ], [ 3.895736500000055, 50.732944499000041 ], [ 4.059373975000028, 50.796890954000048 ], [ 4.105211423000071, 50.929446702000064 ], [ 4.136884818000055, 50.919428692000054 ], [ 4.156586646000051, 50.929291115000069 ], [ 4.147153, 50.969398499000079 ], [ 4.240999, 51.036868999000035 ], [ 4.528663, 50.992264499000044 ] ] ] } },
19
+ { "type": "Feature", "properties": { "NUTS_ID": "BE242", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Leuven", "NUTS_NAME": "Arr. Leuven", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.981574500000022, 51.03488549900004 ], [ 5.121158865000041, 51.020076909000068 ], [ 5.063702797000076, 50.940884069000049 ], [ 5.168050987000072, 50.886300239000036 ], [ 5.103480500000046, 50.70906399900008 ], [ 5.019566500000053, 50.750761999000076 ], [ 4.758841337000035, 50.802515321000044 ], [ 4.663417674000073, 50.788489982000044 ], [ 4.628439431000061, 50.749574044000042 ], [ 4.597269, 50.763534499000059 ], [ 4.480476500000066, 50.794257999000081 ], [ 4.476783500000067, 50.820377499000074 ], [ 4.52477602600004, 50.84542719500007 ], [ 4.529813080000054, 50.901300233000029 ], [ 4.606198726000059, 50.945220389000042 ], [ 4.528663, 50.992264499000044 ], [ 4.789319, 51.038928999000063 ], [ 4.829276431000039, 51.01502451500005 ], [ 4.981574500000022, 51.03488549900004 ] ] ] } },
20
+ { "type": "Feature", "properties": { "NUTS_ID": "BE251", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Brugge", "NUTS_NAME": "Arr. Brugge", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.380661, 51.274299499000051 ], [ 3.41093, 51.159888999000032 ], [ 3.331306, 51.098872999000037 ], [ 3.195384601000058, 51.07166787400007 ], [ 3.163075, 51.065200999000069 ], [ 3.069538500000021, 51.015464999000073 ], [ 3.043536, 51.060661499000048 ], [ 3.070744894000029, 51.133973345000072 ], [ 3.050029037000058, 51.206700536000028 ], [ 3.110688500000037, 51.312259499000049 ], [ 3.195384601000058, 51.355015307000031 ], [ 3.365787500000067, 51.369835499000033 ], [ 3.380661, 51.274299499000051 ] ] ] } },
21
+ { "type": "Feature", "properties": { "NUTS_ID": "BE252", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Diksmuide", "NUTS_NAME": "Arr. Diksmuide", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.043536, 51.060661499000048 ], [ 3.069538500000021, 51.015464999000073 ], [ 2.959001500000056, 50.953147999000066 ], [ 2.805284408000034, 50.909686366000074 ], [ 2.721005500000047, 50.950469499000064 ], [ 2.767062722000048, 51.075608745000068 ], [ 2.820953, 51.102599999000063 ], [ 2.977144, 51.120037122000042 ], [ 3.043536, 51.060661499000048 ] ] ] } },
22
+ { "type": "Feature", "properties": { "NUTS_ID": "BE253", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Ieper", "NUTS_NAME": "Arr. Ieper", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.102455, 50.838073499000075 ], [ 3.098481, 50.779018999000073 ], [ 3.018708500000059, 50.773532999000054 ], [ 3.00188150300005, 50.805183783000075 ], [ 2.95436782500002, 50.797476891000031 ], [ 2.941700869000044, 50.769000841000036 ], [ 2.852976651000063, 50.750477080000053 ], [ 2.863276, 50.70834349900008 ], [ 2.706694563000042, 50.809928680000041 ], [ 2.636143225000069, 50.820798952000075 ], [ 2.607036, 50.912689499000066 ], [ 2.721005500000047, 50.950469499000064 ], [ 2.805284408000034, 50.909686366000074 ], [ 2.959001500000056, 50.953147999000066 ], [ 3.041474082000036, 50.919936914000061 ], [ 3.041994762000058, 50.879853612000034 ], [ 3.102455, 50.838073499000075 ] ] ] } },
23
+ { "type": "Feature", "properties": { "NUTS_ID": "BE254", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Kortrijk", "NUTS_NAME": "Arr. Kortrijk", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.466746500000056, 50.902096499000038 ], [ 3.513324886000021, 50.808235812000078 ], [ 3.460305500000061, 50.765898999000058 ], [ 3.324118, 50.722308999000063 ], [ 3.296718818000045, 50.750891633000037 ], [ 3.195384601000058, 50.755354623000073 ], [ 3.176996, 50.756164499000079 ], [ 3.098481, 50.779018999000073 ], [ 3.102455, 50.838073499000075 ], [ 3.195384601000058, 50.871453262000045 ], [ 3.28706550000004, 50.904384499000059 ], [ 3.419824, 50.910934999000062 ], [ 3.466746500000056, 50.902096499000038 ] ] ] } },
24
+ { "type": "Feature", "properties": { "NUTS_ID": "BE255", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Oostende", "NUTS_NAME": "Arr. Oostende", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.043536, 51.060661499000048 ], [ 2.977144, 51.120037122000042 ], [ 2.820953, 51.102599999000063 ], [ 2.749051500000064, 51.161769999000057 ], [ 3.110688500000037, 51.312259499000049 ], [ 3.050029037000058, 51.206700536000028 ], [ 3.070744894000029, 51.133973345000072 ], [ 3.043536, 51.060661499000048 ] ] ] } },
25
+ { "type": "Feature", "properties": { "NUTS_ID": "BE256", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Roeselare", "NUTS_NAME": "Arr. Roeselare", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.28706550000004, 50.904384499000059 ], [ 3.195384601000058, 50.871453262000045 ], [ 3.102455, 50.838073499000075 ], [ 3.041994762000058, 50.879853612000034 ], [ 3.041474082000036, 50.919936914000061 ], [ 2.959001500000056, 50.953147999000066 ], [ 3.069538500000021, 51.015464999000073 ], [ 3.163075, 51.065200999000069 ], [ 3.174962941000047, 50.962904339000033 ], [ 3.195384601000058, 50.957415208000043 ], [ 3.264215834000026, 50.938914084000032 ], [ 3.28706550000004, 50.904384499000059 ] ] ] } },
26
+ { "type": "Feature", "properties": { "NUTS_ID": "BE257", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Tielt", "NUTS_NAME": "Arr. Tielt", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.419824, 50.910934999000062 ], [ 3.28706550000004, 50.904384499000059 ], [ 3.264215834000026, 50.938914084000032 ], [ 3.195384601000058, 50.957415208000043 ], [ 3.174962941000047, 50.962904339000033 ], [ 3.163075, 51.065200999000069 ], [ 3.195384601000058, 51.07166787400007 ], [ 3.331306, 51.098872999000037 ], [ 3.439757166000049, 51.025948639000035 ], [ 3.448829964000026, 50.94026391400007 ], [ 3.419824, 50.910934999000062 ] ] ] } },
27
+ { "type": "Feature", "properties": { "NUTS_ID": "BE258", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Veurne", "NUTS_NAME": "Arr. Veurne", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 2.820953, 51.102599999000063 ], [ 2.767062722000048, 51.075608745000068 ], [ 2.721005500000047, 50.950469499000064 ], [ 2.607036, 50.912689499000066 ], [ 2.622620769000036, 50.956608231000075 ], [ 2.546011, 51.089381999000068 ], [ 2.604628, 51.110095999000066 ], [ 2.651029188000052, 51.129147854000053 ], [ 2.679293830000063, 51.136120518000041 ], [ 2.703774, 51.144825499000035 ], [ 2.749051500000064, 51.161769999000057 ], [ 2.820953, 51.102599999000063 ] ] ] } },
28
+ { "type": "Feature", "properties": { "NUTS_ID": "BE310", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Nivelles", "NUTS_NAME": "Arr. Nivelles", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.019566500000053, 50.750761999000076 ], [ 4.983341, 50.642242499000076 ], [ 4.671892992000039, 50.596734213000047 ], [ 4.577538, 50.542285999000057 ], [ 4.500592175000065, 50.530874235000056 ], [ 4.336713623000037, 50.573073803000057 ], [ 4.247219500000028, 50.596118999000055 ], [ 4.18121953800005, 50.644498198000065 ], [ 4.10762551800002, 50.645292821000055 ], [ 4.106423606000021, 50.676286855000058 ], [ 4.105211423000071, 50.707545730000049 ], [ 4.272625355000059, 50.696171414000048 ], [ 4.597269, 50.763534499000059 ], [ 4.628439431000061, 50.749574044000042 ], [ 4.663417674000073, 50.788489982000044 ], [ 4.758841337000035, 50.802515321000044 ], [ 5.019566500000053, 50.750761999000076 ] ] ] } },
29
+ { "type": "Feature", "properties": { "NUTS_ID": "BE32A", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Ath", "NUTS_NAME": "Arr. Ath", "MOUNT_TYPE": 4.0, "URBN_TYPE": 3, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 3.719250698000053, 50.775024376000033 ], [ 3.775676500000031, 50.747892499000045 ], [ 3.815390500000035, 50.750724999000056 ], [ 3.895736500000055, 50.732944499000041 ], [ 3.93947815000007, 50.691163808000056 ], [ 4.105211423000071, 50.707545730000049 ], [ 4.106423606000021, 50.676286855000058 ], [ 4.093853793000051, 50.671046740000065 ], [ 3.978322500000047, 50.621082499000067 ], [ 3.959678032000056, 50.590204262000043 ], [ 3.95606546700003, 50.594865816000038 ], [ 3.904207, 50.61555499900004 ], [ 3.892696354000066, 50.579129563000038 ], [ 3.754453644000023, 50.52217647100008 ], [ 3.741137024000068, 50.452484333000029 ], [ 3.65551, 50.461735499000042 ], [ 3.615081500000031, 50.490398999000035 ], [ 3.621043472000053, 50.538984869000046 ], [ 3.679213415000049, 50.572194327000034 ], [ 3.691774641000052, 50.61141303800008 ], [ 3.661060633000034, 50.638364097000078 ], [ 3.546318621000069, 50.649201462000065 ], [ 3.50981026900007, 50.695949008000071 ], [ 3.541272500000048, 50.733700499000065 ], [ 3.629244429000039, 50.726433335000081 ], [ 3.719250698000053, 50.775024376000033 ] ] ] } },
30
+ { "type": "Feature", "properties": { "NUTS_ID": "BE32B", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Charleroi", "NUTS_NAME": "Arr. Charleroi", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.257324120000021, 50.461598301000038 ], [ 4.265714226000057, 50.467845111000031 ], [ 4.287067500000035, 50.50819799900006 ], [ 4.322748500000046, 50.529738999000074 ], [ 4.336713623000037, 50.573073803000057 ], [ 4.500592175000065, 50.530874235000056 ], [ 4.577538, 50.542285999000057 ], [ 4.607538956000042, 50.411931432000074 ], [ 4.588662500000055, 50.321315999000035 ], [ 4.474987, 50.32760999900006 ], [ 4.447151308000059, 50.357694774000038 ], [ 4.308966392000059, 50.377271478000068 ], [ 4.281744332000073, 50.435736797000061 ], [ 4.270281509000029, 50.460355713000069 ], [ 4.257324120000021, 50.461598301000038 ] ] ] } },
31
+ { "type": "Feature", "properties": { "NUTS_ID": "BE323", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Mons", "NUTS_NAME": "Arr. Mons", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.075613, 50.440604999000072 ], [ 4.027774500000021, 50.358330499000033 ], [ 3.894067842000027, 50.332536185000038 ], [ 3.770233474000065, 50.350434464000045 ], [ 3.707888852000053, 50.322367108000037 ], [ 3.666697997000028, 50.355751208000072 ], [ 3.65551, 50.461735499000042 ], [ 3.741137024000068, 50.452484333000029 ], [ 3.754453644000023, 50.52217647100008 ], [ 3.892696354000066, 50.579129563000038 ], [ 3.904207, 50.61555499900004 ], [ 3.95606546700003, 50.594865816000038 ], [ 3.959678032000056, 50.590204262000043 ], [ 4.061409369000046, 50.458932970000035 ], [ 4.075613, 50.440604999000072 ] ] ] } },
32
+ { "type": "Feature", "properties": { "NUTS_ID": "BE328", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Tournai-Mouscron", "NUTS_NAME": "Arr. Tournai-Mouscron", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 3.541272500000048, 50.733700499000065 ], [ 3.50981026900007, 50.695949008000071 ], [ 3.546318621000069, 50.649201462000065 ], [ 3.661060633000034, 50.638364097000078 ], [ 3.691774641000052, 50.61141303800008 ], [ 3.679213415000049, 50.572194327000034 ], [ 3.621043472000053, 50.538984869000046 ], [ 3.615081500000031, 50.490398999000035 ], [ 3.523995140000068, 50.497477096000068 ], [ 3.490983560000075, 50.527156538000042 ], [ 3.385811585000056, 50.495033195000076 ], [ 3.303302081000027, 50.522422882000058 ], [ 3.245294, 50.713009499000066 ], [ 3.195384601000058, 50.755354623000073 ], [ 3.296718818000045, 50.750891633000037 ], [ 3.324118, 50.722308999000063 ], [ 3.460305500000061, 50.765898999000058 ], [ 3.541272500000048, 50.733700499000065 ] ] ], [ [ [ 3.018708500000059, 50.773532999000054 ], [ 2.908104693000041, 50.701741492000053 ], [ 2.863276, 50.70834349900008 ], [ 2.852976651000063, 50.750477080000053 ], [ 2.941700869000044, 50.769000841000036 ], [ 2.95436782500002, 50.797476891000031 ], [ 3.00188150300005, 50.805183783000075 ], [ 3.018708500000059, 50.773532999000054 ] ] ] ] } },
33
+ { "type": "Feature", "properties": { "NUTS_ID": "BE32C", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Soignies", "NUTS_NAME": "Arr. Soignies", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.336713623000037, 50.573073803000057 ], [ 4.322748500000046, 50.529738999000074 ], [ 4.287067500000035, 50.50819799900006 ], [ 4.265714226000057, 50.467845111000031 ], [ 4.257324120000021, 50.461598301000038 ], [ 4.217754, 50.465392999000073 ], [ 4.19756546800005, 50.532862391000037 ], [ 4.166841, 50.517600999000081 ], [ 4.110443, 50.492633999000077 ], [ 4.074363731000062, 50.464642887000082 ], [ 4.061409369000046, 50.458932970000035 ], [ 3.959678032000056, 50.590204262000043 ], [ 3.978322500000047, 50.621082499000067 ], [ 4.093853793000051, 50.671046740000065 ], [ 4.106423606000021, 50.676286855000058 ], [ 4.10762551800002, 50.645292821000055 ], [ 4.18121953800005, 50.644498198000065 ], [ 4.247219500000028, 50.596118999000055 ], [ 4.336713623000037, 50.573073803000057 ] ] ] } },
34
+ { "type": "Feature", "properties": { "NUTS_ID": "BE32D", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Thuin", "NUTS_NAME": "Arr. Thuin", "MOUNT_TYPE": 4.0, "URBN_TYPE": 3, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.055430664000028, 50.340758471000072 ], [ 4.071342, 50.349918499000069 ], [ 4.13483750000006, 50.331908999000063 ], [ 4.229350500000066, 50.357101499000066 ], [ 4.270530156000063, 50.431066645000044 ], [ 4.281744332000073, 50.435736797000061 ], [ 4.308966392000059, 50.377271478000068 ], [ 4.447151308000059, 50.357694774000038 ], [ 4.474987, 50.32760999900006 ], [ 4.331408906000036, 50.257907032000048 ], [ 4.384901812000066, 50.218753803000027 ], [ 4.378275048000035, 50.14747612900004 ], [ 4.432494, 49.941615999000078 ], [ 4.233133, 49.957828499000072 ], [ 4.140853, 49.978759999000033 ], [ 4.20852919500004, 50.078787749000071 ], [ 4.148795006000057, 50.150555392000058 ], [ 4.198192552000023, 50.250051176000056 ], [ 4.055430664000028, 50.340758471000072 ] ] ] } },
35
+ { "type": "Feature", "properties": { "NUTS_ID": "BE331", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Huy", "NUTS_NAME": "Arr. Huy", "MOUNT_TYPE": 4.0, "URBN_TYPE": 3, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.394420500000024, 50.589828499000077 ], [ 5.549455843000032, 50.469712424000079 ], [ 5.702544500000045, 50.403953499000067 ], [ 5.675838500000054, 50.36851499900007 ], [ 5.425083758000028, 50.418854685000042 ], [ 5.393235, 50.379363999000077 ], [ 5.302947242000073, 50.373960192000027 ], [ 5.221259500000031, 50.417297499000028 ], [ 5.202831175000028, 50.466380067000046 ], [ 5.063287081000055, 50.536572112000044 ], [ 5.028495, 50.588821499000062 ], [ 5.188405450000062, 50.581808834000071 ], [ 5.211224990000062, 50.621853668000028 ], [ 5.298665001000074, 50.633007797000062 ], [ 5.34821786200007, 50.576895576000027 ], [ 5.394420500000024, 50.589828499000077 ] ] ] } },
36
+ { "type": "Feature", "properties": { "NUTS_ID": "BE332", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Liège", "NUTS_NAME": "Arr. Liège", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.682000500000072, 50.757446499000082 ], [ 5.769941927000048, 50.746652147000077 ], [ 5.819052, 50.71455749900008 ], [ 5.761628563000045, 50.676585251000063 ], [ 5.757607602000064, 50.610654324000052 ], [ 5.718358912000042, 50.594702557000062 ], [ 5.757182284000066, 50.564377256000057 ], [ 5.768457430000069, 50.456042048000029 ], [ 5.702544500000045, 50.403953499000067 ], [ 5.549455843000032, 50.469712424000079 ], [ 5.394420500000024, 50.589828499000077 ], [ 5.370200050000051, 50.627978227000028 ], [ 5.424563577000072, 50.655177709000043 ], [ 5.431686500000069, 50.71980299900008 ], [ 5.687622, 50.811923999000044 ], [ 5.682000500000072, 50.757446499000082 ] ] ] } },
37
+ { "type": "Feature", "properties": { "NUTS_ID": "BE334", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Waremme", "NUTS_NAME": "Arr. Waremme", "MOUNT_TYPE": 4.0, "URBN_TYPE": 3, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.103480500000046, 50.70906399900008 ], [ 5.236913, 50.727272999000036 ], [ 5.377119783000069, 50.745477433000076 ], [ 5.431686500000069, 50.71980299900008 ], [ 5.424563577000072, 50.655177709000043 ], [ 5.370200050000051, 50.627978227000028 ], [ 5.394420500000024, 50.589828499000077 ], [ 5.34821786200007, 50.576895576000027 ], [ 5.298665001000074, 50.633007797000062 ], [ 5.211224990000062, 50.621853668000028 ], [ 5.188405450000062, 50.581808834000071 ], [ 5.028495, 50.588821499000062 ], [ 4.983341, 50.642242499000076 ], [ 5.019566500000053, 50.750761999000076 ], [ 5.103480500000046, 50.70906399900008 ] ] ] } },
38
+ { "type": "Feature", "properties": { "NUTS_ID": "BE335", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Verviers — communes francophones", "NUTS_NAME": "Arr. Verviers — communes francophones", "MOUNT_TYPE": 2.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.020999, 50.754295499000079 ], [ 5.966706663000025, 50.682698186000039 ], [ 6.016379454000059, 50.623127010000076 ], [ 6.140799428000037, 50.555929928000069 ], [ 6.189312500000028, 50.566093999000032 ], [ 6.192200500000069, 50.521055499000056 ], [ 6.154952568000056, 50.497849210000027 ], [ 6.158321156000056, 50.404819360000033 ], [ 5.980197500000031, 50.329852999000082 ], [ 5.875517068000022, 50.341200933000039 ], [ 5.836915979000025, 50.269166948000077 ], [ 5.721549500000037, 50.261989499000038 ], [ 5.712898591000055, 50.351213184000073 ], [ 5.675838500000054, 50.36851499900007 ], [ 5.702544500000045, 50.403953499000067 ], [ 5.768457430000069, 50.456042048000029 ], [ 5.757182284000066, 50.564377256000057 ], [ 5.718358912000042, 50.594702557000062 ], [ 5.757607602000064, 50.610654324000052 ], [ 5.761628563000045, 50.676585251000063 ], [ 5.819052, 50.71455749900008 ], [ 5.887123837000047, 50.71852777600003 ], [ 5.892073, 50.755237499000032 ], [ 6.020999, 50.754295499000079 ] ] ] } },
39
+ { "type": "Feature", "properties": { "NUTS_ID": "BE336", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Bezirk Verviers — Deutschsprachige Gemeinschaft", "NUTS_NAME": "Bezirk Verviers — Deutschsprachige Gemeinschaft", "MOUNT_TYPE": 4.0, "URBN_TYPE": 3, "COAST_TYPE": 3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.193273631000068, 50.240504416000078 ], [ 6.137662500000033, 50.129951499000072 ], [ 6.02489950000006, 50.182779499000048 ], [ 6.011873541000057, 50.291266850000056 ], [ 5.980197500000031, 50.329852999000082 ], [ 6.158321156000056, 50.404819360000033 ], [ 6.154952568000056, 50.497849210000027 ], [ 6.192200500000069, 50.521055499000056 ], [ 6.315556, 50.497042499000031 ], [ 6.367783069000041, 50.445171952000067 ], [ 6.354699608000033, 50.379104384000073 ], [ 6.405028500000071, 50.323308499000063 ], [ 6.314800928000068, 50.313061020000077 ], [ 6.193273631000068, 50.240504416000078 ] ] ], [ [ [ 6.189312500000028, 50.566093999000032 ], [ 6.140799428000037, 50.555929928000069 ], [ 6.016379454000059, 50.623127010000076 ], [ 5.966706663000025, 50.682698186000039 ], [ 6.020999, 50.754295499000079 ], [ 6.118585524000025, 50.71241445000004 ], [ 6.183820236000031, 50.638426841000069 ], [ 6.256062154000062, 50.622096697000075 ], [ 6.189312500000028, 50.566093999000032 ] ] ] ] } },
40
+ { "type": "Feature", "properties": { "NUTS_ID": "BE341", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Arlon", "NUTS_NAME": "Arr. Arlon", "MOUNT_TYPE": 4.0, "URBN_TYPE": 3, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.818117, 49.546310499000072 ], [ 5.734556, 49.545690499000045 ], [ 5.709617940000044, 49.596709630000078 ], [ 5.728736748000074, 49.631267812000033 ], [ 5.686150557000076, 49.672647343000051 ], [ 5.684699500000022, 49.782394499000077 ], [ 5.700612, 49.820659499000044 ], [ 5.746319, 49.853594999000052 ], [ 5.758952342000043, 49.801697051000076 ], [ 5.871447311000054, 49.715090101000044 ], [ 5.899069892000057, 49.657414507000055 ], [ 5.860815182000067, 49.573523841000053 ], [ 5.818117, 49.546310499000072 ] ] ] } },
41
+ { "type": "Feature", "properties": { "NUTS_ID": "BE342", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Bastogne", "NUTS_NAME": "Arr. Bastogne", "MOUNT_TYPE": 4.0, "URBN_TYPE": 3, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.980197500000031, 50.329852999000082 ], [ 6.011873541000057, 50.291266850000056 ], [ 6.02489950000006, 50.182779499000048 ], [ 5.901236449000066, 50.108460293000064 ], [ 5.868830156000058, 50.047352903000046 ], [ 5.775859837000041, 49.94787296800007 ], [ 5.746319, 49.853594999000052 ], [ 5.700612, 49.820659499000044 ], [ 5.612437975000034, 49.88041806800004 ], [ 5.530203955000047, 49.887333539000053 ], [ 5.526650723000046, 49.965532173000042 ], [ 5.417419500000051, 50.048446499000079 ], [ 5.65340886000007, 50.108207287000027 ], [ 5.670278063000069, 50.174596835000045 ], [ 5.720687650000059, 50.199941366000076 ], [ 5.721549500000037, 50.261989499000038 ], [ 5.836915979000025, 50.269166948000077 ], [ 5.875517068000022, 50.341200933000039 ], [ 5.980197500000031, 50.329852999000082 ] ] ] } },
42
+ { "type": "Feature", "properties": { "NUTS_ID": "BE343", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Marche-en-Famenne", "NUTS_NAME": "Arr. Marche-en-Famenne", "MOUNT_TYPE": 4.0, "URBN_TYPE": 3, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.675838500000054, 50.36851499900007 ], [ 5.712898591000055, 50.351213184000073 ], [ 5.721549500000037, 50.261989499000038 ], [ 5.720687650000059, 50.199941366000076 ], [ 5.670278063000069, 50.174596835000045 ], [ 5.65340886000007, 50.108207287000027 ], [ 5.417419500000051, 50.048446499000079 ], [ 5.375468211000054, 50.084593096000049 ], [ 5.263063500000044, 50.108489999000028 ], [ 5.246306017000052, 50.217160662000026 ], [ 5.383693771000026, 50.287634096000033 ], [ 5.393235, 50.379363999000077 ], [ 5.425083758000028, 50.418854685000042 ], [ 5.675838500000054, 50.36851499900007 ] ] ] } },
43
+ { "type": "Feature", "properties": { "NUTS_ID": "BE344", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Neufchâteau", "NUTS_NAME": "Arr. Neufchâteau", "MOUNT_TYPE": 4.0, "URBN_TYPE": 3, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.417419500000051, 50.048446499000079 ], [ 5.526650723000046, 49.965532173000042 ], [ 5.530203955000047, 49.887333539000053 ], [ 5.612437975000034, 49.88041806800004 ], [ 5.700612, 49.820659499000044 ], [ 5.684699500000022, 49.782394499000077 ], [ 5.513513382000042, 49.744176361000029 ], [ 5.426914574000023, 49.779579513000044 ], [ 5.189057303000027, 49.771250012000053 ], [ 5.153738500000031, 49.717925999000045 ], [ 4.969431, 49.801825999000073 ], [ 5.097226115000069, 49.930386187000067 ], [ 5.084152624000069, 49.967529118000073 ], [ 5.002044375000025, 50.002924928000027 ], [ 5.028074854000067, 50.047352903000046 ], [ 5.081314433000045, 50.091391927000075 ], [ 5.263063500000044, 50.108489999000028 ], [ 5.375468211000054, 50.084593096000049 ], [ 5.417419500000051, 50.048446499000079 ] ] ] } },
44
+ { "type": "Feature", "properties": { "NUTS_ID": "BE345", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Virton", "NUTS_NAME": "Arr. Virton", "MOUNT_TYPE": 4.0, "URBN_TYPE": 3, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.734556, 49.545690499000045 ], [ 5.470883, 49.497237999000049 ], [ 5.393511, 49.617110999000033 ], [ 5.319951273000072, 49.621279646000062 ], [ 5.290618184000039, 49.679847576000043 ], [ 5.153738500000031, 49.717925999000045 ], [ 5.189057303000027, 49.771250012000053 ], [ 5.426914574000023, 49.779579513000044 ], [ 5.513513382000042, 49.744176361000029 ], [ 5.684699500000022, 49.782394499000077 ], [ 5.686150557000076, 49.672647343000051 ], [ 5.728736748000074, 49.631267812000033 ], [ 5.709617940000044, 49.596709630000078 ], [ 5.734556, 49.545690499000045 ] ] ] } },
45
+ { "type": "Feature", "properties": { "NUTS_ID": "BE351", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Dinant", "NUTS_NAME": "Arr. Dinant", "MOUNT_TYPE": 4.0, "URBN_TYPE": 3, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.393235, 50.379363999000077 ], [ 5.383693771000026, 50.287634096000033 ], [ 5.246306017000052, 50.217160662000026 ], [ 5.263063500000044, 50.108489999000028 ], [ 5.081314433000045, 50.091391927000075 ], [ 5.028074854000067, 50.047352903000046 ], [ 5.002044375000025, 50.002924928000027 ], [ 5.084152624000069, 49.967529118000073 ], [ 5.097226115000069, 49.930386187000067 ], [ 4.969431, 49.801825999000073 ], [ 4.864433605000045, 49.811490994000053 ], [ 4.878603489000056, 49.91254660900006 ], [ 4.801696917000072, 49.965331778000063 ], [ 4.835768158000064, 50.047352903000046 ], [ 4.869070423000039, 50.14438244300004 ], [ 4.796697, 50.148677999000029 ], [ 4.745275672000048, 50.239560378000078 ], [ 4.75336150000004, 50.275150999000061 ], [ 4.737279572000034, 50.318153651000046 ], [ 4.77534958800004, 50.347229356000071 ], [ 5.025353022000047, 50.346549223000068 ], [ 5.221259500000031, 50.417297499000028 ], [ 5.302947242000073, 50.373960192000027 ], [ 5.393235, 50.379363999000077 ] ] ] } },
46
+ { "type": "Feature", "properties": { "NUTS_ID": "BE352", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Namur", "NUTS_NAME": "Arr. Namur", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.028495, 50.588821499000062 ], [ 5.063287081000055, 50.536572112000044 ], [ 5.202831175000028, 50.466380067000046 ], [ 5.221259500000031, 50.417297499000028 ], [ 5.025353022000047, 50.346549223000068 ], [ 4.77534958800004, 50.347229356000071 ], [ 4.737279572000034, 50.318153651000046 ], [ 4.75336150000004, 50.275150999000061 ], [ 4.64352130900005, 50.270832861000031 ], [ 4.588662500000055, 50.321315999000035 ], [ 4.607538956000042, 50.411931432000074 ], [ 4.577538, 50.542285999000057 ], [ 4.671892992000039, 50.596734213000047 ], [ 4.983341, 50.642242499000076 ], [ 5.028495, 50.588821499000062 ] ] ] } },
47
+ { "type": "Feature", "properties": { "NUTS_ID": "BE353", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. Philippeville", "NUTS_NAME": "Arr. Philippeville", "MOUNT_TYPE": 4.0, "URBN_TYPE": 3, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.588662500000055, 50.321315999000035 ], [ 4.64352130900005, 50.270832861000031 ], [ 4.75336150000004, 50.275150999000061 ], [ 4.745275672000048, 50.239560378000078 ], [ 4.796697, 50.148677999000029 ], [ 4.697388444000069, 50.085044468000035 ], [ 4.695205733000023, 50.047352903000046 ], [ 4.677657750000037, 49.996282164000036 ], [ 4.432494, 49.941615999000078 ], [ 4.378275048000035, 50.14747612900004 ], [ 4.384901812000066, 50.218753803000027 ], [ 4.331408906000036, 50.257907032000048 ], [ 4.474987, 50.32760999900006 ], [ 4.588662500000055, 50.321315999000035 ] ] ] } },
48
+ { "type": "Feature", "properties": { "NUTS_ID": "NL133", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Zuidwest-Drenthe", "NUTS_NAME": "Zuidwest-Drenthe", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.369053, 52.921973499000046 ], [ 6.466719200000057, 52.83534656300003 ], [ 6.459454235000067, 52.81168819800007 ], [ 6.587468, 52.735690999000042 ], [ 6.629429500000072, 52.669658499000036 ], [ 6.547090774000026, 52.660608945000035 ], [ 6.499130692000051, 52.616974298000059 ], [ 6.389315056000044, 52.617825580000044 ], [ 6.324130426000067, 52.662784444000067 ], [ 6.158997051000028, 52.696690409000041 ], [ 6.130297857000073, 52.747218153000063 ], [ 6.186590401000046, 52.790649530000053 ], [ 6.179673344000037, 52.81168819800007 ], [ 6.119814, 52.85426699900006 ], [ 6.258398034000038, 52.922231590000081 ], [ 6.369053, 52.921973499000046 ] ] ] } },
49
+ { "type": "Feature", "properties": { "NUTS_ID": "NL211", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Noord-Overijssel", "NUTS_NAME": "Noord-Overijssel", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.179673344000037, 52.81168819800007 ], [ 6.186590401000046, 52.790649530000053 ], [ 6.130297857000073, 52.747218153000063 ], [ 6.158997051000028, 52.696690409000041 ], [ 6.324130426000067, 52.662784444000067 ], [ 6.389315056000044, 52.617825580000044 ], [ 6.499130692000051, 52.616974298000059 ], [ 6.547090774000026, 52.660608945000035 ], [ 6.629429500000072, 52.669658499000036 ], [ 6.70973250000003, 52.627823499000044 ], [ 6.729771095000046, 52.574150486000065 ], [ 6.697865500000034, 52.486285999000074 ], [ 6.502515533000064, 52.486401126000032 ], [ 6.390622500000063, 52.42805499900004 ], [ 6.177533672000038, 52.464997016000041 ], [ 6.109792500000026, 52.440574499000036 ], [ 6.037288870000054, 52.501278780000064 ], [ 5.939700773000027, 52.477558195000029 ], [ 5.864311, 52.518169499000066 ], [ 5.799280530000033, 52.599589259000027 ], [ 5.970297639000023, 52.654929691000063 ], [ 5.918154202000039, 52.744813476000047 ], [ 5.805642426000077, 52.81168819800007 ], [ 5.832434975000069, 52.81168819800007 ], [ 6.035183403000076, 52.823126457000058 ], [ 6.119814, 52.85426699900006 ], [ 6.179673344000037, 52.81168819800007 ] ] ] } },
50
+ { "type": "Feature", "properties": { "NUTS_ID": "NL212", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Zuidwest-Overijssel", "NUTS_NAME": "Zuidwest-Overijssel", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.390622500000063, 52.42805499900004 ], [ 6.391032159000076, 52.392024418000062 ], [ 6.341338034000046, 52.351684831000057 ], [ 6.340000263000036, 52.280879510000034 ], [ 6.381997500000068, 52.246085999000059 ], [ 6.166411500000038, 52.231044999000062 ], [ 6.079375208000044, 52.332652017000044 ], [ 6.109792500000026, 52.440574499000036 ], [ 6.177533672000038, 52.464997016000041 ], [ 6.390622500000063, 52.42805499900004 ] ] ] } },
51
+ { "type": "Feature", "properties": { "NUTS_ID": "NL213", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Twente", "NUTS_NAME": "Twente", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.697865500000034, 52.486285999000074 ], [ 6.924121396000032, 52.441626039000028 ], [ 6.995875519000037, 52.454409569000063 ], [ 7.063051747000031, 52.373042514000076 ], [ 7.034425620000036, 52.291487026000027 ], [ 7.065685, 52.241372999000077 ], [ 6.991689886000074, 52.222239122000076 ], [ 6.858584230000076, 52.126693615000079 ], [ 6.760465, 52.118569499000046 ], [ 6.497070775000054, 52.181666900000039 ], [ 6.381997500000068, 52.246085999000059 ], [ 6.340000263000036, 52.280879510000034 ], [ 6.341338034000046, 52.351684831000057 ], [ 6.391032159000076, 52.392024418000062 ], [ 6.390622500000063, 52.42805499900004 ], [ 6.502515533000064, 52.486401126000032 ], [ 6.697865500000034, 52.486285999000074 ] ] ] } },
52
+ { "type": "Feature", "properties": { "NUTS_ID": "NL221", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Veluwe", "NUTS_NAME": "Veluwe", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.109792500000026, 52.440574499000036 ], [ 6.079375208000044, 52.332652017000044 ], [ 6.166411500000038, 52.231044999000062 ], [ 6.184004354000024, 52.21216600200006 ], [ 6.183949996000024, 52.166685560000076 ], [ 6.08295842800004, 52.14407170800007 ], [ 6.008872500000052, 52.07390999900008 ], [ 5.750322675000064, 52.016080895000073 ], [ 5.665807, 51.952785499000072 ], [ 5.606011500000022, 51.943248499000049 ], [ 5.613490371000069, 51.979901881000046 ], [ 5.546704951000038, 52.08514143900004 ], [ 5.473224382000069, 52.079949627000076 ], [ 5.496086375000061, 52.132086976000039 ], [ 5.404633, 52.249629999000035 ], [ 5.521143029000029, 52.272963788000027 ], [ 5.585612825000055, 52.350453006000066 ], [ 5.791371256000048, 52.426614801000028 ], [ 5.864311, 52.518169499000066 ], [ 5.939700773000027, 52.477558195000029 ], [ 6.037288870000054, 52.501278780000064 ], [ 6.109792500000026, 52.440574499000036 ] ] ] } },
53
+ { "type": "Feature", "properties": { "NUTS_ID": "NL224", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Zuidwest-Gelderland", "NUTS_NAME": "Zuidwest-Gelderland", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.606011500000022, 51.943248499000049 ], [ 5.665807, 51.952785499000072 ], [ 5.696853730000043, 51.899771612000052 ], [ 5.58445438800004, 51.893280083000036 ], [ 5.597879500000033, 51.82808299900006 ], [ 5.40581333800003, 51.813616695000064 ], [ 5.306597918000023, 51.741292505000047 ], [ 5.128057500000068, 51.737609999000028 ], [ 5.121900981000067, 51.775716528000032 ], [ 5.000534, 51.82093799900008 ], [ 5.149456, 51.933452499000055 ], [ 5.238450833000059, 51.971717145000071 ], [ 5.450936963000061, 51.983188836000068 ], [ 5.606011500000022, 51.943248499000049 ] ] ] } },
54
+ { "type": "Feature", "properties": { "NUTS_ID": "NL225", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Achterhoek", "NUTS_NAME": "Achterhoek", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.760465, 52.118569499000046 ], [ 6.695295429000055, 52.050816737000048 ], [ 6.819483496000032, 51.990481412000065 ], [ 6.769627628000023, 51.921280187000036 ], [ 6.418819289000055, 51.861259912000037 ], [ 6.407779500000061, 51.828091999000037 ], [ 6.167766, 51.90080449900006 ], [ 6.095464995000043, 51.95481466800004 ], [ 6.155620698000064, 51.987602210000034 ], [ 6.165224975000058, 52.032252544000073 ], [ 6.086448633000032, 52.080702977000044 ], [ 6.008872500000052, 52.07390999900008 ], [ 6.08295842800004, 52.14407170800007 ], [ 6.183949996000024, 52.166685560000076 ], [ 6.184004354000024, 52.21216600200006 ], [ 6.166411500000038, 52.231044999000062 ], [ 6.381997500000068, 52.246085999000059 ], [ 6.497070775000054, 52.181666900000039 ], [ 6.760465, 52.118569499000046 ] ] ] } },
55
+ { "type": "Feature", "properties": { "NUTS_ID": "NL226", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Arnhem/Nijmegen", "NUTS_NAME": "Arnhem/Nijmegen", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.167766, 51.90080449900006 ], [ 6.153173302000027, 51.845999833000064 ], [ 6.061328113000059, 51.85874812600008 ], [ 5.965693764000036, 51.829295221000052 ], [ 5.979736423000077, 51.770876795000049 ], [ 5.953192, 51.747845999000049 ], [ 5.865158500000064, 51.757407999000066 ], [ 5.765376422000031, 51.756843681000078 ], [ 5.597879500000033, 51.82808299900006 ], [ 5.58445438800004, 51.893280083000036 ], [ 5.696853730000043, 51.899771612000052 ], [ 5.665807, 51.952785499000072 ], [ 5.750322675000064, 52.016080895000073 ], [ 6.008872500000052, 52.07390999900008 ], [ 6.086448633000032, 52.080702977000044 ], [ 6.165224975000058, 52.032252544000073 ], [ 6.155620698000064, 51.987602210000034 ], [ 6.095464995000043, 51.95481466800004 ], [ 6.167766, 51.90080449900006 ] ] ] } },
56
+ { "type": "Feature", "properties": { "NUTS_ID": "NL230", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Flevoland", "NUTS_NAME": "Flevoland", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.805642426000077, 52.81168819800007 ], [ 5.918154202000039, 52.744813476000047 ], [ 5.970297639000023, 52.654929691000063 ], [ 5.799280530000033, 52.599589259000027 ], [ 5.864311, 52.518169499000066 ], [ 5.791371256000048, 52.426614801000028 ], [ 5.585612825000055, 52.350453006000066 ], [ 5.521143029000029, 52.272963788000027 ], [ 5.404633, 52.249629999000035 ], [ 5.335462, 52.290218499000048 ], [ 5.141227309000044, 52.326845823000042 ], [ 5.079161, 52.388652999000044 ], [ 5.174090484000033, 52.426416667000069 ], [ 5.060426500000062, 52.578937499000062 ], [ 5.23577451500006, 52.638272566000069 ], [ 5.284339739000075, 52.684553246000064 ], [ 5.353530516000035, 52.683648961000074 ], [ 5.377261500000031, 52.764804999000035 ], [ 5.640358991000028, 52.81168819800007 ], [ 5.664255174000061, 52.830168269000069 ], [ 5.732997199000067, 52.841530986000066 ], [ 5.78643874100004, 52.81168819800007 ], [ 5.805642426000077, 52.81168819800007 ] ] ] } },
57
+ { "type": "Feature", "properties": { "NUTS_ID": "NL310", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Utrecht", "NUTS_NAME": "Utrecht", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.335462, 52.290218499000048 ], [ 5.404633, 52.249629999000035 ], [ 5.496086375000061, 52.132086976000039 ], [ 5.473224382000069, 52.079949627000076 ], [ 5.546704951000038, 52.08514143900004 ], [ 5.613490371000069, 51.979901881000046 ], [ 5.606011500000022, 51.943248499000049 ], [ 5.450936963000061, 51.983188836000068 ], [ 5.238450833000059, 51.971717145000071 ], [ 5.149456, 51.933452499000055 ], [ 5.009379051000053, 51.974221459000034 ], [ 4.877899500000069, 51.937835499000073 ], [ 4.820562220000056, 52.025772713000038 ], [ 4.83090780200007, 52.07804813100006 ], [ 4.804633780000074, 52.122618768000052 ], [ 4.86906029000005, 52.159112174000029 ], [ 4.794524, 52.226726499000051 ], [ 5.021537500000022, 52.30249849900008 ], [ 5.06402834000005, 52.171853888000044 ], [ 5.185620046000054, 52.182853062000049 ], [ 5.264529879000065, 52.272983239000041 ], [ 5.335462, 52.290218499000048 ] ] ] } },
58
+ { "type": "Feature", "properties": { "NUTS_ID": "NL321", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Kop van Noord-Holland", "NUTS_NAME": "Kop van Noord-Holland", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.164383500000042, 53.000910499000042 ], [ 5.236331091000068, 52.88111015000004 ], [ 5.317889136000076, 52.81168819800007 ], [ 5.337842, 52.795955499000058 ], [ 5.377261500000031, 52.764804999000035 ], [ 5.353530516000035, 52.683648961000074 ], [ 5.284339739000075, 52.684553246000064 ], [ 5.23577451500006, 52.638272566000069 ], [ 5.060426500000062, 52.578937499000062 ], [ 4.926488, 52.607051999000078 ], [ 4.874459380000076, 52.637503223000067 ], [ 4.879734292000023, 52.712815933000059 ], [ 4.788122678000036, 52.721290292000049 ], [ 4.734252373000061, 52.697196776000055 ], [ 4.649071, 52.756177499000046 ], [ 4.680109802000061, 52.81168819800007 ], [ 4.739581050000027, 52.958852087000082 ], [ 4.885117972000046, 52.894060489000026 ], [ 5.164383500000042, 53.000910499000042 ] ] ], [ [ [ 4.819370258000049, 53.02916459000005 ], [ 4.784451661000048, 53.001323143000036 ], [ 4.751459123000075, 53.009298497000032 ], [ 4.720496076000074, 52.98402881700008 ], [ 4.708326158000034, 53.022169330000054 ], [ 4.71970275700005, 53.060948045000032 ], [ 4.75120455800004, 53.098988200000065 ], [ 4.841301015000056, 53.183408012000029 ], [ 4.861123450000036, 53.183403493000071 ], [ 4.908793900000035, 53.135042073000079 ], [ 4.897134116000075, 53.077489247000074 ], [ 4.861518603000036, 53.042296520000036 ], [ 4.819370258000049, 53.02916459000005 ] ] ] ] } },
59
+ { "type": "Feature", "properties": { "NUTS_ID": "NL323", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "IJmond", "NUTS_NAME": "IJmond", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.782528, 52.51953499900003 ], [ 4.690703447000033, 52.468711480000081 ], [ 4.722983500000055, 52.43333399900007 ], [ 4.560596500000031, 52.437425999000027 ], [ 4.609676500000035, 52.573400999000057 ], [ 4.738601039000059, 52.576174415000082 ], [ 4.782528, 52.51953499900003 ] ] ] } },
60
+ { "type": "Feature", "properties": { "NUTS_ID": "NL324", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Agglomeratie Haarlem", "NUTS_NAME": "Agglomeratie Haarlem", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.722983500000055, 52.43333399900007 ], [ 4.739188500000068, 52.431220999000061 ], [ 4.611684, 52.313586999000051 ], [ 4.493847500000072, 52.328259999000068 ], [ 4.560596500000031, 52.437425999000027 ], [ 4.722983500000055, 52.43333399900007 ] ] ] } },
61
+ { "type": "Feature", "properties": { "NUTS_ID": "NL325", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Zaanstreek", "NUTS_NAME": "Zaanstreek", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.739188500000068, 52.431220999000061 ], [ 4.722983500000055, 52.43333399900007 ], [ 4.690703447000033, 52.468711480000081 ], [ 4.782528, 52.51953499900003 ], [ 4.833982500000047, 52.538856999000075 ], [ 4.911634663000029, 52.495541521000064 ], [ 4.843979049000041, 52.422788338000032 ], [ 4.739188500000068, 52.431220999000061 ] ] ] } },
62
+ { "type": "Feature", "properties": { "NUTS_ID": "NL327", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Het Gooi en Vechtstreek", "NUTS_NAME": "Het Gooi en Vechtstreek", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.335462, 52.290218499000048 ], [ 5.264529879000065, 52.272983239000041 ], [ 5.185620046000054, 52.182853062000049 ], [ 5.06402834000005, 52.171853888000044 ], [ 5.021537500000022, 52.30249849900008 ], [ 5.042791021000028, 52.36764542800006 ], [ 5.079161, 52.388652999000044 ], [ 5.141227309000044, 52.326845823000042 ], [ 5.335462, 52.290218499000048 ] ] ] } },
63
+ { "type": "Feature", "properties": { "NUTS_ID": "NL328", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Alkmaar en omgeving", "NUTS_NAME": "Alkmaar en omgeving", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.926488, 52.607051999000078 ], [ 4.833982500000047, 52.538856999000075 ], [ 4.782528, 52.51953499900003 ], [ 4.738601039000059, 52.576174415000082 ], [ 4.609676500000035, 52.573400999000057 ], [ 4.649071, 52.756177499000046 ], [ 4.734252373000061, 52.697196776000055 ], [ 4.788122678000036, 52.721290292000049 ], [ 4.879734292000023, 52.712815933000059 ], [ 4.874459380000076, 52.637503223000067 ], [ 4.926488, 52.607051999000078 ] ] ] } },
64
+ { "type": "Feature", "properties": { "NUTS_ID": "NL329", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Groot-Amsterdam", "NUTS_NAME": "Groot-Amsterdam", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.060426500000062, 52.578937499000062 ], [ 5.174090484000033, 52.426416667000069 ], [ 5.079161, 52.388652999000044 ], [ 5.042791021000028, 52.36764542800006 ], [ 5.021537500000022, 52.30249849900008 ], [ 4.794524, 52.226726499000051 ], [ 4.728766, 52.209819499000048 ], [ 4.571730075000062, 52.224867704000076 ], [ 4.611684, 52.313586999000051 ], [ 4.739188500000068, 52.431220999000061 ], [ 4.843979049000041, 52.422788338000032 ], [ 4.911634663000029, 52.495541521000064 ], [ 4.833982500000047, 52.538856999000075 ], [ 4.926488, 52.607051999000078 ], [ 5.060426500000062, 52.578937499000062 ] ] ] } },
65
+ { "type": "Feature", "properties": { "NUTS_ID": "NL332", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Agglomeratie ’s-Gravenhage", "NUTS_NAME": "Agglomeratie ’s-Gravenhage", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.53061150000002, 52.080482499000027 ], [ 4.557198500000027, 52.061237499000072 ], [ 4.407886500000075, 51.968177999000034 ], [ 4.370941953000056, 52.022567492000064 ], [ 4.198018500000046, 52.054144499000074 ], [ 4.374232500000062, 52.187089999000079 ], [ 4.430296069000065, 52.148164877000056 ], [ 4.416958626000053, 52.110122430000047 ], [ 4.467089276000024, 52.117021687000033 ], [ 4.53061150000002, 52.080482499000027 ] ] ] } },
66
+ { "type": "Feature", "properties": { "NUTS_ID": "NL333", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Delft en Westland", "NUTS_NAME": "Delft en Westland", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.407886500000075, 51.968177999000034 ], [ 4.281267900000046, 51.928438383000071 ], [ 4.127788500000065, 52.000542499000062 ], [ 4.162827788000072, 52.029529963000073 ], [ 4.198018500000046, 52.054144499000074 ], [ 4.370941953000056, 52.022567492000064 ], [ 4.407886500000075, 51.968177999000034 ] ] ] } },
67
+ { "type": "Feature", "properties": { "NUTS_ID": "NL337", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Agglomeratie Leiden en Bollenstreek", "NUTS_NAME": "Agglomeratie Leiden en Bollenstreek", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.611684, 52.313586999000051 ], [ 4.571730075000062, 52.224867704000076 ], [ 4.728766, 52.209819499000048 ], [ 4.666600627000037, 52.164617304000046 ], [ 4.565278746000047, 52.14226786100005 ], [ 4.53061150000002, 52.080482499000027 ], [ 4.467089276000024, 52.117021687000033 ], [ 4.416958626000053, 52.110122430000047 ], [ 4.430296069000065, 52.148164877000056 ], [ 4.374232500000062, 52.187089999000079 ], [ 4.493847500000072, 52.328259999000068 ], [ 4.611684, 52.313586999000051 ] ] ] } },
68
+ { "type": "Feature", "properties": { "NUTS_ID": "LU000", "LEVL_CODE": 3, "CNTR_CODE": "LU", "NAME_LATN": "Luxembourg", "NUTS_NAME": "Luxembourg", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.137662500000033, 50.129951499000072 ], [ 6.127918174000058, 50.047352903000046 ], [ 6.253362131000074, 49.890930227000069 ], [ 6.326713396000059, 49.844969192000065 ], [ 6.474962500000061, 49.821274999000082 ], [ 6.51109198000006, 49.782800645000066 ], [ 6.501011628000072, 49.718714840000075 ], [ 6.432772165000074, 49.66199954800004 ], [ 6.380052500000033, 49.551104999000074 ], [ 6.367107500000031, 49.469506999000032 ], [ 6.215615252000021, 49.507609727000045 ], [ 6.101659580000046, 49.460353532000056 ], [ 5.999935611000069, 49.456224155000029 ], [ 5.893386, 49.496944499000051 ], [ 5.818117, 49.546310499000072 ], [ 5.860815182000067, 49.573523841000053 ], [ 5.899069892000057, 49.657414507000055 ], [ 5.871447311000054, 49.715090101000044 ], [ 5.758952342000043, 49.801697051000076 ], [ 5.746319, 49.853594999000052 ], [ 5.775859837000041, 49.94787296800007 ], [ 5.868830156000058, 50.047352903000046 ], [ 5.901236449000066, 50.108460293000064 ], [ 6.02489950000006, 50.182779499000048 ], [ 6.137662500000033, 50.129951499000072 ] ] ] } },
69
+ { "type": "Feature", "properties": { "NUTS_ID": "NL33A", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Zuidoost-Zuid-Holland", "NUTS_NAME": "Zuidoost-Zuid-Holland", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.149456, 51.933452499000055 ], [ 5.000534, 51.82093799900008 ], [ 4.79206565100003, 51.794804327000065 ], [ 4.67629450000004, 51.724918499000069 ], [ 4.645137500000033, 51.719066499000064 ], [ 4.620420500000023, 51.714126499000031 ], [ 4.621356615000025, 51.787348628000075 ], [ 4.570783035000034, 51.827910370000041 ], [ 4.624072210000065, 51.855890462000048 ], [ 4.619486, 51.889606499000081 ], [ 4.877899500000069, 51.937835499000073 ], [ 5.009379051000053, 51.974221459000034 ], [ 5.149456, 51.933452499000055 ] ] ] } },
70
+ { "type": "Feature", "properties": { "NUTS_ID": "NL33B", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Oost-Zuid-Holland", "NUTS_NAME": "Oost-Zuid-Holland", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.877899500000069, 51.937835499000073 ], [ 4.619486, 51.889606499000081 ], [ 4.67549118200003, 51.996359665000057 ], [ 4.557198500000027, 52.061237499000072 ], [ 4.53061150000002, 52.080482499000027 ], [ 4.565278746000047, 52.14226786100005 ], [ 4.666600627000037, 52.164617304000046 ], [ 4.728766, 52.209819499000048 ], [ 4.794524, 52.226726499000051 ], [ 4.86906029000005, 52.159112174000029 ], [ 4.804633780000074, 52.122618768000052 ], [ 4.83090780200007, 52.07804813100006 ], [ 4.820562220000056, 52.025772713000038 ], [ 4.877899500000069, 51.937835499000073 ] ] ] } },
71
+ { "type": "Feature", "properties": { "NUTS_ID": "NL33C", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Groot-Rijnmond", "NUTS_NAME": "Groot-Rijnmond", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.619486, 51.889606499000081 ], [ 4.624072210000065, 51.855890462000048 ], [ 4.570783035000034, 51.827910370000041 ], [ 4.621356615000025, 51.787348628000075 ], [ 4.620420500000023, 51.714126499000031 ], [ 4.42461675800007, 51.703552409000054 ], [ 4.34301429900006, 51.659035293000045 ], [ 4.242535500000031, 51.647120999000038 ], [ 4.152647257000069, 51.68383401300008 ], [ 4.105211423000071, 51.688486384000043 ], [ 4.054452041000047, 51.698232844000074 ], [ 3.988738670000032, 51.763447763000045 ], [ 3.839083, 51.758296999000038 ], [ 3.892700799000067, 51.817605745000037 ], [ 4.040544810000029, 51.843004672000063 ], [ 4.043194181000047, 51.897601337000026 ], [ 3.997377965000055, 51.960636095000041 ], [ 4.127788500000065, 52.000542499000062 ], [ 4.281267900000046, 51.928438383000071 ], [ 4.407886500000075, 51.968177999000034 ], [ 4.557198500000027, 52.061237499000072 ], [ 4.67549118200003, 51.996359665000057 ], [ 4.619486, 51.889606499000081 ] ] ] } },
72
+ { "type": "Feature", "properties": { "NUTS_ID": "NL341", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Zeeuwsch-Vlaanderen", "NUTS_NAME": "Zeeuwsch-Vlaanderen", "MOUNT_TYPE": 4.0, "URBN_TYPE": 3, "COAST_TYPE": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.234817500000077, 51.348253999000065 ], [ 4.215951889000053, 51.333092815000043 ], [ 4.165755500000046, 51.292728499000077 ], [ 4.105211423000071, 51.265399184000046 ], [ 3.977666500000055, 51.225131999000041 ], [ 3.856339500000047, 51.211055999000052 ], [ 3.601747522000039, 51.300566880000076 ], [ 3.534311144000071, 51.28951247100008 ], [ 3.500282427000059, 51.246750655000028 ], [ 3.380661, 51.274299499000051 ], [ 3.365787500000067, 51.369835499000033 ], [ 3.516326481000021, 51.404424763000065 ], [ 3.859267985000031, 51.339096606000055 ], [ 3.993924801000048, 51.398114172000078 ], [ 4.105211423000071, 51.356199171000071 ], [ 4.192037867000067, 51.370154977000027 ], [ 4.234817500000077, 51.348253999000065 ] ] ] } },
73
+ { "type": "Feature", "properties": { "NUTS_ID": "NL342", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Overig Zeeland", "NUTS_NAME": "Overig Zeeland", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.242535500000031, 51.647120999000038 ], [ 4.20045213800006, 51.601501315000064 ], [ 4.279565, 51.376017499000056 ], [ 4.243669500000067, 51.374729499000068 ], [ 3.974970904000031, 51.452968085000066 ], [ 3.826961920000031, 51.39267903700005 ], [ 3.704043524000042, 51.44982936100007 ], [ 3.563542933000065, 51.447317815000076 ], [ 3.459761712000045, 51.530035720000058 ], [ 3.560867765000069, 51.585079829000051 ], [ 3.81102254700005, 51.599783077000041 ], [ 4.115813739000032, 51.444172902000048 ], [ 4.208037096000055, 51.445937718000039 ], [ 4.182627771000057, 51.506777993000071 ], [ 4.006757980000032, 51.575348155000029 ], [ 4.039716166000062, 51.62010659200007 ], [ 3.831095294000022, 51.682933996000031 ], [ 3.70103096400004, 51.691162390000045 ], [ 3.723859904000051, 51.729810014000066 ], [ 3.839083, 51.758296999000038 ], [ 3.988738670000032, 51.763447763000045 ], [ 4.054452041000047, 51.698232844000074 ], [ 4.105211423000071, 51.688486384000043 ], [ 4.152647257000069, 51.68383401300008 ], [ 4.242535500000031, 51.647120999000038 ] ] ] } },
74
+ { "type": "Feature", "properties": { "NUTS_ID": "NL411", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "West-Noord-Brabant", "NUTS_NAME": "West-Noord-Brabant", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.759926, 51.502464499000041 ], [ 4.669544, 51.426383999000052 ], [ 4.548223534000044, 51.42923219000005 ], [ 4.527887926000062, 51.475647653000067 ], [ 4.486173741000073, 51.477654543000028 ], [ 4.389655381000068, 51.443983095000078 ], [ 4.405944964000071, 51.365157236000073 ], [ 4.279565, 51.376017499000056 ], [ 4.20045213800006, 51.601501315000064 ], [ 4.242535500000031, 51.647120999000038 ], [ 4.34301429900006, 51.659035293000045 ], [ 4.42461675800007, 51.703552409000054 ], [ 4.620420500000023, 51.714126499000031 ], [ 4.645137500000033, 51.719066499000064 ], [ 4.67629450000004, 51.724918499000069 ], [ 4.802627226000027, 51.760904857000071 ], [ 4.921801112000026, 51.69731683200007 ], [ 4.900589026000034, 51.596691364000037 ], [ 4.759926, 51.502464499000041 ] ] ] } },
75
+ { "type": "Feature", "properties": { "NUTS_ID": "NL412", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Midden-Noord-Brabant", "NUTS_NAME": "Midden-Noord-Brabant", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 3 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 5.121900981000067, 51.775716528000032 ], [ 5.128057500000068, 51.737609999000028 ], [ 5.105613340000048, 51.716100698000048 ], [ 5.112942029000067, 51.644825056000059 ], [ 5.273257, 51.55282949900004 ], [ 5.191050277000045, 51.439008987000079 ], [ 5.10218, 51.429004999000028 ], [ 5.041508126000053, 51.47912345900005 ], [ 4.899390513000071, 51.405887428000028 ], [ 4.841045910000048, 51.427809988000035 ], [ 4.828632453000068, 51.480263619000027 ], [ 4.759926, 51.502464499000041 ], [ 4.900589026000034, 51.596691364000037 ], [ 4.921801112000026, 51.69731683200007 ], [ 4.802627226000027, 51.760904857000071 ], [ 4.67629450000004, 51.724918499000069 ], [ 4.79206565100003, 51.794804327000065 ], [ 5.000534, 51.82093799900008 ], [ 5.121900981000067, 51.775716528000032 ] ] ], [ [ [ 4.830543589000058, 51.414826600000026 ], [ 4.788102604000073, 51.39572254400008 ], [ 4.746438548000071, 51.438228277000064 ], [ 4.781879322000066, 51.445428090000064 ], [ 4.830543589000058, 51.414826600000026 ] ] ] ] } },
76
+ { "type": "Feature", "properties": { "NUTS_ID": "NL413", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Noordoost-Noord-Brabant", "NUTS_NAME": "Noordoost-Noord-Brabant", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.865158500000064, 51.757407999000066 ], [ 5.950750371000026, 51.702788844000054 ], [ 6.039160817000038, 51.570183519000068 ], [ 5.838077, 51.566467499000055 ], [ 5.76852152400005, 51.595162162000065 ], [ 5.514984069000036, 51.528812784000081 ], [ 5.273257, 51.55282949900004 ], [ 5.112942029000067, 51.644825056000059 ], [ 5.105613340000048, 51.716100698000048 ], [ 5.128057500000068, 51.737609999000028 ], [ 5.306597918000023, 51.741292505000047 ], [ 5.40581333800003, 51.813616695000064 ], [ 5.597879500000033, 51.82808299900006 ], [ 5.765376422000031, 51.756843681000078 ], [ 5.865158500000064, 51.757407999000066 ] ] ] } },
77
+ { "type": "Feature", "properties": { "NUTS_ID": "NL414", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Zuidoost-Noord-Brabant", "NUTS_NAME": "Zuidoost-Noord-Brabant", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.838077, 51.566467499000055 ], [ 5.920195892000038, 51.390205131000073 ], [ 5.840245500000037, 51.346923999000069 ], [ 5.676867665000032, 51.312940959000059 ], [ 5.609863777000044, 51.23342553100008 ], [ 5.566283500000054, 51.220836499000029 ], [ 5.547684841000034, 51.268815084000039 ], [ 5.498431442000026, 51.295818243000042 ], [ 5.237716500000033, 51.261600499000053 ], [ 5.225900459000059, 51.309463060000041 ], [ 5.144811685000036, 51.32092401400007 ], [ 5.087797335000062, 51.382296376000056 ], [ 5.10218, 51.429004999000028 ], [ 5.191050277000045, 51.439008987000079 ], [ 5.273257, 51.55282949900004 ], [ 5.514984069000036, 51.528812784000081 ], [ 5.76852152400005, 51.595162162000065 ], [ 5.838077, 51.566467499000055 ] ] ] } },
78
+ { "type": "Feature", "properties": { "NUTS_ID": "NL421", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Noord-Limburg", "NUTS_NAME": "Noord-Limburg", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.953192, 51.747845999000049 ], [ 6.102653047000047, 51.656227620000038 ], [ 6.105893465000065, 51.600734715000044 ], [ 6.204204436000055, 51.518716052000059 ], [ 6.224405, 51.364978999000073 ], [ 6.072657, 51.242587499000081 ], [ 5.840245500000037, 51.346923999000069 ], [ 5.920195892000038, 51.390205131000073 ], [ 5.838077, 51.566467499000055 ], [ 6.039160817000038, 51.570183519000068 ], [ 5.950750371000026, 51.702788844000054 ], [ 5.865158500000064, 51.757407999000066 ], [ 5.953192, 51.747845999000049 ] ] ] } },
79
+ { "type": "Feature", "properties": { "NUTS_ID": "NL422", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Midden-Limburg", "NUTS_NAME": "Midden-Limburg", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.072657, 51.242587499000081 ], [ 6.089336081000056, 51.17901841500003 ], [ 6.174812, 51.184513499000047 ], [ 5.963342438000041, 51.048076754000078 ], [ 5.900039583000023, 51.058977766000055 ], [ 5.877085, 51.032100999000079 ], [ 5.798274, 51.059853499000042 ], [ 5.835203339000032, 51.156247888000053 ], [ 5.566283500000054, 51.220836499000029 ], [ 5.609863777000044, 51.23342553100008 ], [ 5.676867665000032, 51.312940959000059 ], [ 5.840245500000037, 51.346923999000069 ], [ 6.072657, 51.242587499000081 ] ] ] } },
80
+ { "type": "Feature", "properties": { "NUTS_ID": "NL423", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Zuid-Limburg", "NUTS_NAME": "Zuid-Limburg", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.877085, 51.032100999000079 ], [ 5.909806912000022, 50.986444076000055 ], [ 6.00912829300006, 50.981923595000069 ], [ 6.030686148000029, 50.93437655200006 ], [ 6.086947500000065, 50.913134999000079 ], [ 6.071928093000054, 50.858410953000032 ], [ 6.010228014000063, 50.803566077000028 ], [ 6.020999, 50.754295499000079 ], [ 5.892073, 50.755237499000032 ], [ 5.773966918000042, 50.774515059000066 ], [ 5.682000500000072, 50.757446499000082 ], [ 5.687622, 50.811923999000044 ], [ 5.653808039000069, 50.865605727000059 ], [ 5.732599490000041, 50.92736713100004 ], [ 5.766125500000044, 51.008715499000061 ], [ 5.798274, 51.059853499000042 ], [ 5.877085, 51.032100999000079 ] ] ] } },
81
+ { "type": "Feature", "properties": { "NUTS_ID": "NL111", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Oost-Groningen", "NUTS_NAME": "Oost-Groningen", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.092712500000061, 53.257017499000028 ], [ 7.208935, 53.24306449900007 ], [ 7.202794500000039, 53.113281499000038 ], [ 7.201083249000021, 52.985502139000062 ], [ 7.092692, 52.838200999000037 ], [ 7.027269104000027, 52.876596706000043 ], [ 7.034512049000057, 52.915559046000055 ], [ 6.990053517000035, 52.946775716000047 ], [ 6.935702, 52.993362499000057 ], [ 6.81381, 53.071048499000028 ], [ 6.824504005000051, 53.193681002000062 ], [ 6.911510500000077, 53.242969499000026 ], [ 6.990053517000035, 53.265323428000045 ], [ 7.092712500000061, 53.257017499000028 ] ] ] } },
82
+ { "type": "Feature", "properties": { "NUTS_ID": "NL112", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Delfzijl en omgeving", "NUTS_NAME": "Delfzijl en omgeving", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.092712500000061, 53.257017499000028 ], [ 6.990053517000035, 53.265323428000045 ], [ 6.911510500000077, 53.242969499000026 ], [ 6.878843890000041, 53.295157864000032 ], [ 6.675042466000036, 53.302560156000027 ], [ 6.656928502000028, 53.312396300000046 ], [ 6.635973909000029, 53.341179121000039 ], [ 6.653644396000061, 53.35772901200005 ], [ 6.787470614000028, 53.408008366000047 ], [ 6.874905, 53.40801299900005 ], [ 6.918358349000073, 53.345293868000056 ], [ 6.993024153000022, 53.312396300000046 ], [ 7.078399067000021, 53.298750725000048 ], [ 7.092712500000061, 53.257017499000028 ] ] ] } },
83
+ { "type": "Feature", "properties": { "NUTS_ID": "NL113", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Overig Groningen", "NUTS_NAME": "Overig Groningen", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.874905, 53.40801299900005 ], [ 6.787470614000028, 53.408008366000047 ], [ 6.653644396000061, 53.35772901200005 ], [ 6.635973909000029, 53.341179121000039 ], [ 6.656928502000028, 53.312396300000046 ], [ 6.675042466000036, 53.302560156000027 ], [ 6.878843890000041, 53.295157864000032 ], [ 6.911510500000077, 53.242969499000026 ], [ 6.824504005000051, 53.193681002000062 ], [ 6.81381, 53.071048499000028 ], [ 6.730328326000063, 53.117269405000059 ], [ 6.633799104000047, 53.116177490000041 ], [ 6.496295436000025, 53.200082962000067 ], [ 6.411982074000036, 53.176545124000029 ], [ 6.315237, 53.094051499000045 ], [ 6.201501268000072, 53.12150798700003 ], [ 6.176817, 53.159450499000059 ], [ 6.282249758000034, 53.312396300000046 ], [ 6.197129702000041, 53.367563824000058 ], [ 6.191301500000066, 53.410937999000055 ], [ 6.313622756000029, 53.401282385000059 ], [ 6.762261867000063, 53.464748326000063 ], [ 6.86023113300007, 53.44672158700007 ], [ 6.874905, 53.40801299900005 ] ] ] } },
84
+ { "type": "Feature", "properties": { "NUTS_ID": "NL124", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Noord-Friesland", "NUTS_NAME": "Noord-Friesland", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 1 }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 6.262201789000073, 53.475940186000059 ], [ 6.140507060000061, 53.472230505000027 ], [ 6.130956764000075, 53.480401985000071 ], [ 6.147398482000028, 53.502674069000079 ], [ 6.271657068000025, 53.510180959000081 ], [ 6.383995737000021, 53.519091391000075 ], [ 6.395298177000029, 53.511953008000035 ], [ 6.262201789000073, 53.475940186000059 ] ] ], [ [ [ 6.017352147000054, 53.152148134000072 ], [ 5.79638650000004, 53.058839999000043 ], [ 5.758216961000073, 53.10567489400006 ], [ 5.612266332000047, 53.070251554000038 ], [ 5.53408706700003, 53.137815119000038 ], [ 5.41122850000005, 53.151724499000068 ], [ 5.442230036000069, 53.210447599000076 ], [ 5.601125223000054, 53.303584508000029 ], [ 5.632482665000055, 53.312396300000046 ], [ 5.894864195000025, 53.38612844000005 ], [ 6.191301500000066, 53.410937999000055 ], [ 6.197129702000041, 53.367563824000058 ], [ 6.282249758000034, 53.312396300000046 ], [ 6.176817, 53.159450499000059 ], [ 6.017352147000054, 53.152148134000072 ] ] ], [ [ [ 5.642902248000041, 53.470904475000054 ], [ 5.751844598000048, 53.461123107000049 ], [ 5.866414201000055, 53.465404653000064 ], [ 5.969969522000042, 53.467932979000068 ], [ 5.968779792000021, 53.454251079000073 ], [ 5.868371055000068, 53.446551151000051 ], [ 5.809914035000077, 53.437276753000049 ], [ 5.726780012000063, 53.441754144000072 ], [ 5.642902248000041, 53.423883351000029 ], [ 5.606893580000076, 53.447997027000042 ], [ 5.642902248000041, 53.470904475000054 ] ] ], [ [ [ 5.384223157000065, 53.401159895000035 ], [ 5.291894704000072, 53.369542549000073 ], [ 5.258239540000034, 53.371764001000031 ], [ 5.169256343000029, 53.34789018400005 ], [ 5.14922122300004, 53.356267178000053 ], [ 5.196188168000049, 53.395421359000068 ], [ 5.39085981300002, 53.425196289000041 ], [ 5.494505306000065, 53.445326290000082 ], [ 5.517030646000023, 53.428906742000038 ], [ 5.442214751000051, 53.404009071000075 ], [ 5.384223157000065, 53.401159895000035 ] ] ], [ [ [ 5.077163598000027, 53.288255903000049 ], [ 5.001473213000054, 53.264299267000069 ], [ 4.988570788000061, 53.281769467000061 ], [ 5.054582013000072, 53.313731479000069 ], [ 5.077163598000027, 53.288255903000049 ] ] ], [ [ [ 4.984088658000076, 53.25412308500006 ], [ 4.921909914000025, 53.215388544000064 ], [ 4.884828070000026, 53.228789818000052 ], [ 4.890543487000059, 53.238288848000082 ], [ 4.972511944000075, 53.271351910000078 ], [ 4.984088658000076, 53.25412308500006 ] ] ], [ [ [ 4.88648114800003, 53.22611777000003 ], [ 4.876974367000059, 53.196984110000074 ], [ 4.832375131000049, 53.204647153000053 ], [ 4.864102219000074, 53.239602885000068 ], [ 4.88648114800003, 53.22611777000003 ] ] ] ] } },
85
+ { "type": "Feature", "properties": { "NUTS_ID": "NL125", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Zuidwest-Friesland", "NUTS_NAME": "Zuidwest-Friesland", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 5.79638650000004, 53.058839999000043 ], [ 5.926621709000074, 52.921376920000057 ], [ 5.832434975000069, 52.81168819800007 ], [ 5.805642426000077, 52.81168819800007 ], [ 5.78643874100004, 52.81168819800007 ], [ 5.732997199000067, 52.841530986000066 ], [ 5.664255174000061, 52.830168269000069 ], [ 5.640358991000028, 52.81168819800007 ], [ 5.377261500000031, 52.764804999000035 ], [ 5.337842, 52.795955499000058 ], [ 5.317889136000076, 52.81168819800007 ], [ 5.236331091000068, 52.88111015000004 ], [ 5.164383500000042, 53.000910499000042 ], [ 5.352741761000061, 53.087111702000072 ], [ 5.41122850000005, 53.151724499000068 ], [ 5.53408706700003, 53.137815119000038 ], [ 5.612266332000047, 53.070251554000038 ], [ 5.758216961000073, 53.10567489400006 ], [ 5.79638650000004, 53.058839999000043 ] ] ] } },
86
+ { "type": "Feature", "properties": { "NUTS_ID": "NL126", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Zuidoost-Friesland", "NUTS_NAME": "Zuidoost-Friesland", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.315237, 53.094051499000045 ], [ 6.416568557000062, 52.976246077000042 ], [ 6.369053, 52.921973499000046 ], [ 6.258398034000038, 52.922231590000081 ], [ 6.119814, 52.85426699900006 ], [ 6.035183403000076, 52.823126457000058 ], [ 5.832434975000069, 52.81168819800007 ], [ 5.926621709000074, 52.921376920000057 ], [ 5.79638650000004, 53.058839999000043 ], [ 6.017352147000054, 53.152148134000072 ], [ 6.176817, 53.159450499000059 ], [ 6.201501268000072, 53.12150798700003 ], [ 6.315237, 53.094051499000045 ] ] ] } },
87
+ { "type": "Feature", "properties": { "NUTS_ID": "NL131", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Noord-Drenthe", "NUTS_NAME": "Noord-Drenthe", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 6.81381, 53.071048499000028 ], [ 6.935702, 52.993362499000057 ], [ 6.740261887000031, 52.952394722000065 ], [ 6.69075452200002, 52.81168819800007 ], [ 6.653055202000075, 52.793828682000026 ], [ 6.587468, 52.735690999000042 ], [ 6.459454235000067, 52.81168819800007 ], [ 6.466719200000057, 52.83534656300003 ], [ 6.369053, 52.921973499000046 ], [ 6.416568557000062, 52.976246077000042 ], [ 6.315237, 53.094051499000045 ], [ 6.411982074000036, 53.176545124000029 ], [ 6.496295436000025, 53.200082962000067 ], [ 6.633799104000047, 53.116177490000041 ], [ 6.730328326000063, 53.117269405000059 ], [ 6.81381, 53.071048499000028 ] ] ] } },
88
+ { "type": "Feature", "properties": { "NUTS_ID": "NL132", "LEVL_CODE": 3, "CNTR_CODE": "NL", "NAME_LATN": "Zuidoost-Drenthe", "NUTS_NAME": "Zuidoost-Drenthe", "MOUNT_TYPE": 4.0, "URBN_TYPE": 2, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.092692, 52.838200999000037 ], [ 7.072659804000068, 52.81168819800007 ], [ 7.053421775000061, 52.657171615000038 ], [ 7.006229500000074, 52.638762999000051 ], [ 6.70973250000003, 52.627823499000044 ], [ 6.629429500000072, 52.669658499000036 ], [ 6.587468, 52.735690999000042 ], [ 6.653055202000075, 52.793828682000026 ], [ 6.69075452200002, 52.81168819800007 ], [ 6.740261887000031, 52.952394722000065 ], [ 6.935702, 52.993362499000057 ], [ 6.990053517000035, 52.946775716000047 ], [ 7.034512049000057, 52.915559046000055 ], [ 7.027269104000027, 52.876596706000043 ], [ 7.092692, 52.838200999000037 ] ] ] } },
89
+ { "type": "Feature", "properties": { "NUTS_ID": "BE329", "LEVL_CODE": 3, "CNTR_CODE": "BE", "NAME_LATN": "Arr. La Louvière", "NUTS_NAME": "Arr. La Louvière", "MOUNT_TYPE": 4.0, "URBN_TYPE": 1, "COAST_TYPE": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 4.229350500000066, 50.357101499000066 ], [ 4.13483750000006, 50.331908999000063 ], [ 4.071342, 50.349918499000069 ], [ 4.055430664000028, 50.340758471000072 ], [ 4.027774500000021, 50.358330499000033 ], [ 4.075613, 50.440604999000072 ], [ 4.061409369000046, 50.458932970000035 ], [ 4.074363731000062, 50.464642887000082 ], [ 4.110443, 50.492633999000077 ], [ 4.166841, 50.517600999000081 ], [ 4.19756546800005, 50.532862391000037 ], [ 4.217754, 50.465392999000073 ], [ 4.257324120000021, 50.461598301000038 ], [ 4.270281509000029, 50.460355713000069 ], [ 4.281744332000073, 50.435736797000061 ], [ 4.270530156000063, 50.431066645000044 ], [ 4.229350500000066, 50.357101499000066 ] ] ] } }
90
+ ]
91
+ }
@@ -0,0 +1,4 @@
1
+ NUTS_ID,FC_OTH_HH_E
2
+ BE,16226.3
3
+ NL,22369.149
4
+ LU,958.946