diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c4c4ffc --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.zip diff --git a/Dockerfile b/Dockerfile index 6a87915..09119b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,10 @@ FROM lambci/lambda:build-python3.6 +# Build GIS libs for AWS serverless solutions. +# See also the source builds for Debian packaging: +# - https://salsa.debian.org/debian-gis-team +# - https://packages.ubuntu.com/source/eoan/gdal + ENV \ LANG=en_US.UTF-8 \ LC_ALL=en_US.UTF-8 @@ -7,23 +12,27 @@ ENV \ RUN yum makecache fast RUN yum install -y automake16 libpng-devel nasm -ENV PREFIX /var/task +# labda runtime: /var/task +# labda layer: /opt +ARG prefix=/var/task +ENV PREFIX=${prefix} -# versions of packages -ENV \ - PKGCONFIG_VERSION=0.29.2 \ - PROJ_VERSION=5.2.0 \ - GEOS_VERSION=3.7.1 \ - LIBPNG_VERSION=1.6.36 \ - OPENJPEG_VERSION=2.3.1 \ - LIBJPEG_TURBO_VERSION=2.0.1 \ - WEBP_VERSION=1.0.2 \ - ZSTD_VERSION=1.3.8 \ - CURL_VERSION=7.59.0 \ - NGHTTP2_VERSION=1.35.1 \ - GDAL_VERSION=2.4.2 +ENV CPPFLAGS="-I${PREFIX}/include $CPPFLAGS" +ENV LDFLAGS="-L${PREFIX}/lib $LDFLAGS" + +# pkg-config +ENV PKGCONFIG_VERSION=0.29.2 +RUN mkdir /tmp/pkg-config \ + && curl -sfL https://pkg-config.freedesktop.org/releases/pkg-config-${PKGCONFIG_VERSION}.tar.gz | tar zxf - -C /tmp/pkg-config --strip-components=1 \ + && cd /tmp/pkg-config \ + && CFLAGS="-O2 -Wl,-S" ./configure --prefix=$PREFIX \ + && make -j $(nproc) --silent && make install && make clean \ + && rm -rf /tmp/pkg-config + +ENV PKG_CONFIG_PATH=$PREFIX/lib/pkgconfig/ # nghttp2 +ENV NGHTTP2_VERSION=1.35.1 RUN mkdir /tmp/nghttp2 \ && curl -sfL https://github.com/nghttp2/nghttp2/releases/download/v${NGHTTP2_VERSION}/nghttp2-${NGHTTP2_VERSION}.tar.gz | tar zxf - -C /tmp/nghttp2 --strip-components=1 \ && cd /tmp/nghttp2 \ @@ -32,6 +41,7 @@ RUN mkdir /tmp/nghttp2 \ && rm -rf /tmp/nghttp2 # libcurl +ENV CURL_VERSION=7.59.0 RUN mkdir /tmp/libcurl \ && curl -sfL https://curl.haxx.se/download/curl-${CURL_VERSION}.tar.gz | tar zxf - -C /tmp/libcurl --strip-components=1 \ && cd /tmp/libcurl \ @@ -39,41 +49,48 @@ RUN mkdir /tmp/libcurl \ && make -j $(nproc) --silent && make install && make clean \ && rm -rf /tmp/libcurl -# pkg-config -RUN mkdir /tmp/pkg-config \ - && curl -sfL https://pkg-config.freedesktop.org/releases/pkg-config-$PKGCONFIG_VERSION.tar.gz | tar zxf - -C /tmp/pkg-config --strip-components=1 \ - && cd /tmp/pkg-config \ - && CFLAGS="-O2 -Wl,-S" ./configure --prefix=$PREFIX \ - && make -j $(nproc) --silent && make install && make clean \ - && rm -rf /tmp/pkg-config - -# proj -RUN mkdir /tmp/proj \ - && curl -sfL http://download.osgeo.org/proj/proj-$PROJ_VERSION.tar.gz | tar zxf - -C /tmp/proj --strip-components=1 \ - && cd /tmp/proj \ - && CFLAGS="-O2 -Wl,-S" CXXFLAGS="-O2 -Wl,-S" ./configure --prefix=$PREFIX \ - && make && make install && make clean \ - && rm -rf /tmp/proj +# sqlite3 +ENV SQLITE3_VERSION=3.29.0 +RUN mkdir /tmp/sqlite3 \ + && curl -sfL https://www.sqlite.org/2019/sqlite-autoconf-3290000.tar.gz | tar zxf - -C /tmp/sqlite3 --strip-components=1 \ + && cd /tmp/sqlite3 \ + && ./configure --prefix=$PREFIX \ + && make -j $(nproc) --silent && make install && make clean \ + && rm -rf /tmp/sqlite3 # geos +ENV GEOS_VERSION=3.7.1 RUN mkdir /tmp/geos \ - && curl -sfL http://download.osgeo.org/geos/geos-$GEOS_VERSION.tar.bz2 | tar jxf - -C /tmp/geos --strip-components=1 \ + && curl -sfL http://download.osgeo.org/geos/geos-${GEOS_VERSION}.tar.bz2 | tar jxf - -C /tmp/geos --strip-components=1 \ && cd /tmp/geos \ && CFLAGS="-O2 -Wl,-S" CXXFLAGS="-O2 -Wl,-S" ./configure --prefix=$PREFIX \ && make -j $(nproc) --silent && make install && make clean \ && rm -rf /tmp/geos +# proj +ENV PROJ_VERSION=6.1.1 +RUN mkdir /tmp/proj \ + && curl -sfL http://download.osgeo.org/proj/proj-${PROJ_VERSION}.tar.gz | tar zxf - -C /tmp/proj --strip-components=1 \ + && cd /tmp/proj \ + && CFLAGS="-O2 -Wl,-S" CXXFLAGS="-O2 -Wl,-S" ./configure --prefix=$PREFIX \ + && make && make install && make clean \ + && rm -rf /tmp/proj + # png +ENV LIBPNG_VERSION=1.6.36 RUN mkdir /tmp/png \ && curl -sfL http://prdownloads.sourceforge.net/libpng/libpng-$LIBPNG_VERSION.tar.gz | tar zxf - -C /tmp/png --strip-components=1 \ && cd /tmp/png \ && CFLAGS="-O2 -Wl,-S" CXXFLAGS="-O2 -Wl,-S" ./configure --prefix=$PREFIX \ && make -j $(nproc) --silent && make install && make clean \ && rm -rf /tmp/png +ENV LIBPNG_CONFIG=${PREFIX}/bin/libpng-config +RUN ls -l $LIBPNG_CONFIG # openjpeg +ENV OPENJPEG_VERSION=2.3.1 RUN mkdir /tmp/openjpeg \ - && curl -sfL https://github.com/uclouvain/openjpeg/archive/v$OPENJPEG_VERSION.tar.gz | tar zxf - -C /tmp/openjpeg --strip-components=1 \ + && curl -sfL https://github.com/uclouvain/openjpeg/archive/v${OPENJPEG_VERSION}.tar.gz | tar zxf - -C /tmp/openjpeg --strip-components=1 \ && cd /tmp/openjpeg \ && mkdir build && cd build \ && cmake .. -DBUILD_THIRDPARTY:BOOL=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$PREFIX \ @@ -81,6 +98,7 @@ RUN mkdir /tmp/openjpeg \ && rm -rf /tmp/openjpeg # jpeg_turbo +ENV LIBJPEG_TURBO_VERSION=2.0.1 RUN mkdir /tmp/jpeg \ && curl -sfL https://github.com/libjpeg-turbo/libjpeg-turbo/archive/${LIBJPEG_TURBO_VERSION}.tar.gz | tar zxf - -C /tmp/jpeg --strip-components=1 \ && cd /tmp/jpeg \ @@ -89,6 +107,7 @@ RUN mkdir /tmp/jpeg \ && rm -rf /tmp/jpeg # webp +ENV WEBP_VERSION=1.0.2 RUN mkdir /tmp/webp \ && curl -sfL https://storage.googleapis.com/downloads.webmproject.org/releases/webp/libwebp-${WEBP_VERSION}.tar.gz | tar zxf - -C /tmp/webp --strip-components=1 \ && cd /tmp/webp \ @@ -97,15 +116,28 @@ RUN mkdir /tmp/webp \ && rm -rf /tmp/webp # zstd +ENV ZSTD_VERSION=1.3.8 RUN mkdir /tmp/zstd \ && curl -sfL https://github.com/facebook/zstd/archive/v${ZSTD_VERSION}.tar.gz | tar zxf - -C /tmp/zstd --strip-components=1 \ && cd /tmp/zstd \ && make -j $(nproc) PREFIX=$PREFIX ZSTD_LEGACY_SUPPORT=0 CFLAGS=-O1 --silent && make install PREFIX=$PREFIX ZSTD_LEGACY_SUPPORT=0 CFLAGS=-O1 && make clean \ && rm -rf /tmp/zstd -ENV PKG_CONFIG_PATH=$PREFIX/lib/pkgconfig/ +## geotiff +#ENV GEOTIFF_VERSION=1.5.1 +#RUN mkdir /tmp/geotiff \ +# && archive="https://github.com/OSGeo/libgeotiff/releases/download/${GEOTIFF_VERSION}/libgeotiff-${GEOTIFF_VERSION}.tar.gz" \ +# && curl -sfL ${archive} | tar zxf - -C /tmp/geotiff --strip-components=1 \ +# && cd /tmp/geotiff \ +# && ./configure --prefix=${PREFIX} \ +# --with-proj=${PREFIX} \ +# --with-jpeg=${PREFIX} \ +# --with-zip=yes \ +# && make -j $(nproc) install && make clean \ +# && rm -rf /tmp/geotiff # gdal +ENV GDAL_VERSION=2.4.2 RUN mkdir /tmp/gdal \ && curl -sfL https://github.com/OSGeo/gdal/archive/v${GDAL_VERSION}.tar.gz | tar zxf - -C /tmp/gdal --strip-components=2 @@ -122,7 +154,9 @@ RUN cd /tmp/gdal \ --with-webp=$PREFIX \ --with-zstd=$PREFIX \ --with-crypto \ + #--with-geotiff=$PREFIX \ --with-libtiff=internal \ + --with-sqlite3 \ --with-threads \ --disable-debug \ --with-hide-internal-symbols=yes \ @@ -161,7 +195,6 @@ RUN cd /tmp/gdal \ --without-python \ --without-qhull \ --without-sde \ - --without-sqlite3 \ --without-xerces \ --without-xml2 @@ -179,5 +212,25 @@ ENV \ ENV PATH=$PREFIX/bin:$PATH -RUN pip3 install pip -U -RUN pip3 install cython numpy --no-binary numpy +# numpy 1.17 requires an explicit c99 compiler option +# - https://github.com/numpy/numpy/pull/12783/files +ENV CFLAGS='-std=c99' + +# Using individual docker layers to cache a couple of +# very common python packages that others depend on. +RUN pip3 install -U pip +RUN pip3 install -U cython numpy --no-compile --no-binary :all: +#RUN pip3 install "${PIP_OPTIONS}" numpy +# Only install python packages that depend on the libs in this image. +RUN pip3 install -U \ + 'gdal >=2.4,<3.0' \ + pyproj \ + rasterio \ + fiona \ + shapely \ + pycrs \ + --no-compile --no-binary :all: + +# only for python 3.6; use built-in dataclasses for 3.7+ +RUN pip3 install -U dataclasses --no-compile --no-binary :all: + diff --git a/Makefile b/Makefile index eeb7f27..9f74690 100644 --- a/Makefile +++ b/Makefile @@ -1,32 +1,66 @@ SHELL = /bin/bash -TAG = 2.4.2 -IMAGE := ${DOCKER_USERNAME}/amazonlinux-gdal:${TAG} +PY_VERSION = 3.6 +GDAL_VERSION = 2.4.2 +TAG = gdal${GDAL_VERSION}-py${PY_VERSION} +IMAGE := amazonlinux-gdal +BUILD := ${IMAGE}:${TAG} all: build push build: - docker build -f Dockerfile -t amazonlinux-gdal:${TAG} . + docker build -f Dockerfile -t ${BUILD} . -shell: - docker run --name amazonlinux --volume $(shell pwd)/:/data --rm -it ${IMAGE} /bin/bash +shell: build + docker run --name amazonlinux --volume $(shell pwd)/:/data --rm -it ${BUILD} /bin/bash debug-gdal: build - docker run \ - --name amazonlinux \ - -itd amazonlinux-gdal:${TAG} /bin/bash + docker run --name amazonlinux \ + -itd ${BUILD} /bin/bash docker exec -it amazonlinux bash -c 'ldd /var/task/lib/libgdal.so' docker exec -it amazonlinux bash -c 'readelf -d /var/task/lib/libgdal.so' docker stop amazonlinux docker rm amazonlinux test: - docker run amazonlinux-gdal:${TAG} bash -c "gdalinfo --version | grep '${TAG}'" - docker run amazonlinux-gdal:${TAG} bash -c "gdalinfo --formats | grep 'JP2OpenJPEG'" + docker run ${BUILD} bash -c "gdalinfo --version | grep '${GDAL_VERSION}'" + docker run ${BUILD} bash -c "gdalinfo --formats | grep 'JP2OpenJPEG'" + docker run ${BUILD} bash -c "python --version | grep '${PY_VERSION}'" push: - docker tag amazonlinux-gdal:${TAG} ${IMAGE} - docker push ${IMAGE} + docker push ${DOCKER_USERNAME}/${BUILD} + +container-clean: + docker stop amazonlinux > /dev/null 2>&1 || true + docker rm amazonlinux > /dev/null 2>&1 || true + +# --- +# lambda layer build and package using /opt + +LAYER_BUILD = ${BUILD}-layer +LAYER_PACKAGE := amazonlinux-${TAG}-layer + +lambda-layer-build: + docker build -f Dockerfile -t ${LAYER_BUILD} --build-arg prefix=/opt . + +lambda-layer-shell: lambda-layer-build container-clean + docker run --name amazonlinux --volume $(shell pwd)/:/data --rm -it ${LAYER_BUILD} /bin/bash + +lambda-layer-test: lambda-layer-build + docker run --volume $(shell pwd)/:/data --rm -it ${LAYER_BUILD} /bin/bash -c '/data/tests/test.sh' + +lambda-layer-package: lambda-layer-build container-clean + docker run --name amazonlinux \ + -e PREFIX=${PREFIX} \ + -e PY_VERSION=${PY_VERSION} \ + -e LAYER_PACKAGE=${LAYER_PACKAGE} \ + -itd ${LAYER_BUILD} /bin/bash + docker cp package_lambda_layer.sh amazonlinux:/tmp/package_lambda_layer.sh + docker exec -it amazonlinux bash -c '/tmp/package_lambda_layer.sh' + mkdir -p ./packages + docker cp amazonlinux:/tmp/${LAYER_PACKAGE}_libs.zip ./packages/ + docker cp amazonlinux:/tmp/${LAYER_PACKAGE}_python.zip ./packages/ + docker cp amazonlinux:/tmp/${LAYER_PACKAGE}_geopandas.zip ./packages/ + docker cp amazonlinux:/tmp/${LAYER_PACKAGE}_pandas.zip ./packages/ + docker cp amazonlinux:/tmp/${LAYER_PACKAGE}_pyarrow.zip ./packages/ + docker stop amazonlinux && docker rm amazonlinux -clean: - docker stop amazonlinux - docker rm amazonlinux diff --git a/package_lambda_layer.sh b/package_lambda_layer.sh new file mode 100755 index 0000000..5eeee3a --- /dev/null +++ b/package_lambda_layer.sh @@ -0,0 +1,67 @@ +#!/bin/bash + +prefix="${PREFIX:-/opt}" + +py_version="${PY_VERSION:-3.6}" + +layer_package="${LAYER_PACKAGE:-layer_package}" + +clean_python_packages () { + site=$1 + find $site -type d -name '__pycache__' -exec rm -rf {} + + find $site -type d -name '*.dist-info' -exec rm -rf {} + + find $site -type d -name '*.egg-info' -exec rm -rf {} + + find $site -type d -name 'tests' -exec rm -rf {} + + find $site -type d -name 'datasets' -exec rm -rf {} + +} + +src=/var/lang/lib/python${py_version}/site-packages +dst=${prefix}/python/lib/python${py_version}/site-packages +mkdir -p ${dst} + +clean_python_packages $src + +# Note: excluding many paths in the python libs crashed the layer runtime +# somehow, so the excludes are disabled for now. +#rsync -a $src/ ${dst}/ +rsync -a \ + --exclude 'boto3' \ + --exclude 'botocore' \ + --exclude 'awscli' \ + --exclude 'samtranslator' \ + --exclude 'docker' \ + --exclude 'samcli' \ + --exclude 'share/doc/*' \ + --exclude 'share/man/man1/*' \ + --exclude 'share/man/man3/*' \ + $src/ ${dst}/ + + +# package the binary 'libs' and the python packages into two layers, +# to reduce the size of each package and allow flexibility in using +# just the binaries or the binaries plus the python bindings. +cd ${prefix} +zip -r9 --symlinks /tmp/${layer_package}_python.zip python +zip -r9 --symlinks /tmp/${layer_package}_libs.zip bin lib/*.so* lib64/*.so* share + + +PIP_OPTIONS="--no-compile --no-binary :all: -t ${dst}" + +# add a new python layer for pandas +rm -rf "${dst}/*" +pip3 install pandas "${PIP_OPTIONS}" +clean_python_packages "${dst}" +zip -r9 --symlinks /tmp/${layer_package}_pandas.zip python + +# add a new python layer for pyarrow +rm -rf "${dst}/*" +pip3 install pyarrow s3fs "${PIP_OPTIONS}" +clean_python_packages "${dst}" +zip -r9 --symlinks /tmp/${layer_package}_pyarrow.zip python + +# add a new python layer for geopandas +rm -rf "${dst}/*" +pip3 install geopandas "${PIP_OPTIONS}" +clean_python_packages "${dst}" +zip -r9 --symlinks /tmp/${layer_package}_geopandas.zip python + diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..a97be06 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,14 @@ +cython +numpy >=1.17,<2.0 +gdal >=2.4,<3.0 +geopandas +#pyarrow +pycrs +pyproj +rasterio +shapely + +# only for python 3.6 +# use built-in dataclasses for 3.7+ +dataclasses + diff --git a/tests/data/cea.tif b/tests/data/cea.tif new file mode 100644 index 0000000..77501e3 Binary files /dev/null and b/tests/data/cea.tif differ diff --git a/tests/data/cea.txt b/tests/data/cea.txt new file mode 100644 index 0000000..fdcfd57 --- /dev/null +++ b/tests/data/cea.txt @@ -0,0 +1,84 @@ +Cyldindrical Equal Area +----------------------- + +Frank Warmerdam +warmerdam@pobox.com + +Created by reprojecting utm11-27.tif in pci_eg directory. + +Geotiff_Information: + Version: 1 + Key_Revision: 1.0 + Tagged_Information: + ModelTiepointTag (2,3): + 0 0 0 + -28493.1668 4255884.54 0 + ModelPixelScaleTag (1,3): + 60.022137 60.022137 0 + End_Of_Tags. + Keyed_Information: + GTModelTypeGeoKey (Short,1): ModelTypeProjected + GTRasterTypeGeoKey (Short,1): RasterPixelIsArea + GTCitationGeoKey (Ascii,8): "unnamed" + GeographicTypeGeoKey (Short,1): GCS_NAD27 + GeogCitationGeoKey (Ascii,6): "NAD27" + GeogAngularUnitsGeoKey (Short,1): Angular_Degree + ProjectedCSTypeGeoKey (Short,1): User-Defined + ProjectionGeoKey (Short,1): User-Defined + ProjCoordTransGeoKey (Short,1): CT_CylindricalEqualArea + ProjLinearUnitsGeoKey (Short,1): Linear_Meter + ProjStdParallel1GeoKey (Double,1): 33.75 + ProjNatOriginLongGeoKey (Double,1): -117.333333 + ProjFalseEastingGeoKey (Double,1): 0 + ProjFalseNorthingGeoKey (Double,1): 0 + End_Of_Keys. + End_Of_Geotiff. + +Projection Method: CT_CylindricalEqualArea + ProjStdParallel1GeoKey: 33.750000 ( 33d45' 0.00"N) + ProjNatOriginLongGeoKey: -117.333333 (117d20' 0.00"W) + ProjFalseEastingGeoKey: 0.000000 m + ProjFalseNorthingGeoKey: 0.000000 m +GCS: 4267/NAD27 +Datum: 6267/North American Datum 1927 +Ellipsoid: 7008/Clarke 1866 (6378206.40,6356583.80) +Prime Meridian: 8901/Greenwich (0.000000/ 0d 0' 0.00"E) +Projection Linear Units: 9001/metre (1.000000m) + +Corner Coordinates: +Upper Left ( -28493.167, 4255884.544) (117d38'28.21"W, 33d54'13.08"N) +Lower Left ( -28493.167, 4224973.143) (117d38'28.21"W, 33d37'30.66"N) +Upper Right ( 2358.212, 4255884.544) (117d18'28.28"W, 33d54'13.08"N) +Lower Right ( 2358.212, 4224973.143) (117d18'28.28"W, 33d37'30.66"N) +Center ( -13067.478, 4240428.844) (117d28'28.24"W, 33d45'51.47"N) + +From gdalinfo: + +Driver: GTiff/GeoTIFF +Size is 514, 515 +Coordinate System is: +PROJCS["unnamed", + GEOGCS["NAD27", + DATUM["North_American_Datum_1927", + SPHEROID["Clarke 1866",6378206.4,294.9786982138982, + AUTHORITY["EPSG","7008"]], + AUTHORITY["EPSG","6267"]], + PRIMEM["Greenwich",0], + UNIT["degree",0.0174532925199433], + AUTHORITY["EPSG","4267"]], + PROJECTION["Cylindrical_Equal_Area"], + PARAMETER["standard_parallel_1",33.75], + PARAMETER["central_meridian",-117.333333333333], + PARAMETER["false_easting",0], + PARAMETER["false_northing",0], + UNIT["metre",1, + AUTHORITY["EPSG","9001"]]] +Origin = (-28493.166784,4255884.543802) +Pixel Size = (60.02213698,-60.02213698) +Corner Coordinates: +Upper Left ( -28493.167, 4255884.544) (117d38'28.21"W, 33d54'13.08"N) +Lower Left ( -28493.167, 4224973.143) (117d38'28.21"W, 33d37'30.66"N) +Upper Right ( 2358.212, 4255884.544) (117d18'28.28"W, 33d54'13.08"N) +Lower Right ( 2358.212, 4224973.143) (117d18'28.28"W, 33d37'30.66"N) +Center ( -13067.478, 4240428.844) (117d28'28.24"W, 33d45'51.47"N) +Band 1 Block=514x15 Type=Byte, ColorInterp=Gray diff --git a/tests/data/raster_tmp.dbf b/tests/data/raster_tmp.dbf new file mode 100644 index 0000000..1a1dcb5 Binary files /dev/null and b/tests/data/raster_tmp.dbf differ diff --git a/tests/data/raster_tmp.json b/tests/data/raster_tmp.json new file mode 100644 index 0000000..a616ee9 --- /dev/null +++ b/tests/data/raster_tmp.json @@ -0,0 +1,22 @@ +{ +"type": "FeatureCollection", +"name": "None", +"features": [ +{ "type": "Feature", "properties": { "DN": 10 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.316666666666666, 0.816666666666666 ], [ -2.316666666666666, 0.783333333333333 ], [ -2.35, 0.783333333333333 ], [ -2.35, 0.75 ], [ -2.383333333333333, 0.75 ], [ -2.383333333333333, 0.683333333333333 ], [ -2.416666666666667, 0.683333333333333 ], [ -2.416666666666667, 0.516666666666667 ], [ -2.383333333333333, 0.516666666666667 ], [ -2.383333333333333, 0.483333333333333 ], [ -2.316666666666666, 0.483333333333333 ], [ -2.316666666666666, 0.55 ], [ -2.283333333333333, 0.55 ], [ -2.283333333333333, 0.616666666666667 ], [ -2.25, 0.616666666666667 ], [ -2.25, 0.783333333333333 ], [ -2.283333333333333, 0.783333333333333 ], [ -2.283333333333333, 0.816666666666666 ], [ -2.316666666666666, 0.816666666666666 ] ] ] } }, +{ "type": "Feature", "properties": { "DN": 9 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.383333333333333, 1.183333333333333 ], [ -2.383333333333333, 1.15 ], [ -2.416666666666667, 1.15 ], [ -2.416666666666667, 1.116666666666667 ], [ -2.45, 1.116666666666667 ], [ -2.45, 1.083333333333333 ], [ -2.483333333333333, 1.083333333333333 ], [ -2.483333333333333, 1.016666666666667 ], [ -2.516666666666667, 1.016666666666667 ], [ -2.516666666666667, 0.95 ], [ -2.55, 0.95 ], [ -2.55, 0.85 ], [ -2.583333333333333, 0.85 ], [ -2.583333333333333, 0.65 ], [ -2.616666666666667, 0.65 ], [ -2.616666666666667, 0.416666666666667 ], [ -2.583333333333333, 0.416666666666667 ], [ -2.583333333333333, 0.25 ], [ -2.55, 0.25 ], [ -2.55, 0.15 ], [ -2.516666666666667, 0.15 ], [ -2.516666666666667, 0.116666666666667 ], [ -2.483333333333333, 0.116666666666667 ], [ -2.483333333333333, 0.083333333333333 ], [ -2.383333333333333, 0.083333333333333 ], [ -2.383333333333333, 0.116666666666667 ], [ -2.35, 0.116666666666667 ], [ -2.35, 0.15 ], [ -2.316666666666666, 0.15 ], [ -2.316666666666666, 0.183333333333333 ], [ -2.283333333333333, 0.183333333333333 ], [ -2.283333333333333, 0.216666666666667 ], [ -2.25, 0.216666666666667 ], [ -2.25, 0.283333333333333 ], [ -2.216666666666667, 0.283333333333333 ], [ -2.216666666666667, 0.35 ], [ -2.183333333333334, 0.35 ], [ -2.183333333333334, 0.416666666666667 ], [ -2.15, 0.416666666666667 ], [ -2.15, 0.483333333333333 ], [ -2.116666666666667, 0.483333333333333 ], [ -2.116666666666667, 0.583333333333333 ], [ -2.083333333333333, 0.583333333333333 ], [ -2.083333333333333, 0.683333333333333 ], [ -2.05, 0.683333333333333 ], [ -2.05, 0.983333333333333 ], [ -2.083333333333333, 0.983333333333333 ], [ -2.083333333333333, 1.083333333333333 ], [ -2.116666666666667, 1.083333333333333 ], [ -2.116666666666667, 1.116666666666667 ], [ -2.15, 1.116666666666667 ], [ -2.15, 1.15 ], [ -2.183333333333334, 1.15 ], [ -2.183333333333334, 1.183333333333333 ], [ -2.383333333333333, 1.183333333333333 ] ], [ [ -2.316666666666666, 0.816666666666666 ], [ -2.316666666666666, 0.783333333333333 ], [ -2.35, 0.783333333333333 ], [ -2.35, 0.75 ], [ -2.383333333333333, 0.75 ], [ -2.383333333333333, 0.683333333333333 ], [ -2.416666666666667, 0.683333333333333 ], [ -2.416666666666667, 0.516666666666667 ], [ -2.383333333333333, 0.516666666666667 ], [ -2.383333333333333, 0.483333333333333 ], [ -2.316666666666666, 0.483333333333333 ], [ -2.316666666666666, 0.55 ], [ -2.283333333333333, 0.55 ], [ -2.283333333333333, 0.616666666666667 ], [ -2.25, 0.616666666666667 ], [ -2.25, 0.783333333333333 ], [ -2.283333333333333, 0.783333333333333 ], [ -2.283333333333333, 0.816666666666666 ], [ -2.316666666666666, 0.816666666666666 ] ] ] } }, +{ "type": "Feature", "properties": { "DN": 8 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.283333333333333, 1.45 ], [ -2.283333333333333, 1.416666666666667 ], [ -2.316666666666666, 1.416666666666667 ], [ -2.383333333333333, 1.416666666666667 ], [ -2.383333333333333, 1.383333333333333 ], [ -2.416666666666667, 1.383333333333333 ], [ -2.45, 1.383333333333333 ], [ -2.45, 1.35 ], [ -2.483333333333333, 1.35 ], [ -2.483333333333333, 1.316666666666667 ], [ -2.516666666666667, 1.316666666666667 ], [ -2.516666666666667, 1.25 ], [ -2.55, 1.25 ], [ -2.55, 1.216666666666667 ], [ -2.583333333333333, 1.216666666666667 ], [ -2.583333333333333, 1.15 ], [ -2.616666666666667, 1.15 ], [ -2.616666666666667, 1.083333333333333 ], [ -2.65, 1.083333333333333 ], [ -2.65, 0.95 ], [ -2.683333333333334, 0.95 ], [ -2.683333333333334, 0.816666666666666 ], [ -2.716666666666667, 0.816666666666666 ], [ -2.716666666666667, 0.25 ], [ -2.683333333333334, 0.25 ], [ -2.683333333333334, 0.083333333333333 ], [ -2.65, 0.083333333333333 ], [ -2.65, -0.016666666666667 ], [ -2.616666666666667, -0.016666666666667 ], [ -2.616666666666667, -0.083333333333333 ], [ -2.583333333333333, -0.083333333333333 ], [ -2.583333333333333, -0.116666666666667 ], [ -2.55, -0.116666666666667 ], [ -2.55, -0.15 ], [ -2.516666666666667, -0.15 ], [ -2.516666666666667, -0.183333333333334 ], [ -2.416666666666667, -0.183333333333334 ], [ -2.416666666666667, -0.15 ], [ -2.383333333333333, -0.15 ], [ -2.383333333333333, -0.116666666666667 ], [ -2.35, -0.116666666666667 ], [ -2.35, -0.083333333333333 ], [ -2.316666666666666, -0.083333333333333 ], [ -2.316666666666666, -0.016666666666667 ], [ -2.283333333333333, -0.016666666666667 ], [ -2.283333333333333, 0.016666666666667 ], [ -2.25, 0.016666666666667 ], [ -2.25, 0.083333333333333 ], [ -2.216666666666667, 0.083333333333333 ], [ -2.216666666666667, 0.15 ], [ -2.183333333333334, 0.15 ], [ -2.183333333333334, 0.216666666666667 ], [ -2.15, 0.216666666666667 ], [ -2.15, 0.283333333333333 ], [ -2.116666666666667, 0.283333333333333 ], [ -2.116666666666667, 0.35 ], [ -2.083333333333333, 0.35 ], [ -2.083333333333333, 0.416666666666667 ], [ -2.05, 0.416666666666667 ], [ -2.05, 0.483333333333333 ], [ -2.016666666666667, 0.483333333333333 ], [ -2.016666666666667, 0.583333333333333 ], [ -1.983333333333333, 0.583333333333333 ], [ -1.983333333333333, 0.65 ], [ -1.95, 0.65 ], [ -1.95, 0.783333333333333 ], [ -1.916666666666667, 0.783333333333333 ], [ -1.916666666666667, 1.05 ], [ -1.95, 1.05 ], [ -1.95, 1.183333333333333 ], [ -1.983333333333333, 1.183333333333333 ], [ -1.983333333333333, 1.25 ], [ -2.016666666666667, 1.25 ], [ -2.016666666666667, 1.283333333333333 ], [ -2.05, 1.283333333333333 ], [ -2.05, 1.35 ], [ -2.083333333333333, 1.35 ], [ -2.083333333333333, 1.383333333333333 ], [ -2.15, 1.383333333333333 ], [ -2.15, 1.416666666666667 ], [ -2.25, 1.416666666666667 ], [ -2.25, 1.45 ], [ -2.283333333333333, 1.45 ] ], [ [ -2.583333333333333, 0.85 ], [ -2.583333333333333, 0.65 ], [ -2.616666666666667, 0.65 ], [ -2.616666666666667, 0.416666666666667 ], [ -2.583333333333333, 0.416666666666667 ], [ -2.583333333333333, 0.25 ], [ -2.55, 0.25 ], [ -2.55, 0.15 ], [ -2.516666666666667, 0.15 ], [ -2.516666666666667, 0.116666666666667 ], [ -2.483333333333333, 0.116666666666667 ], [ -2.483333333333333, 0.083333333333333 ], [ -2.383333333333333, 0.083333333333333 ], [ -2.383333333333333, 0.116666666666667 ], [ -2.35, 0.116666666666667 ], [ -2.35, 0.15 ], [ -2.316666666666666, 0.15 ], [ -2.316666666666666, 0.183333333333333 ], [ -2.283333333333333, 0.183333333333333 ], [ -2.283333333333333, 0.216666666666667 ], [ -2.25, 0.216666666666667 ], [ -2.25, 0.283333333333333 ], [ -2.216666666666667, 0.283333333333333 ], [ -2.216666666666667, 0.35 ], [ -2.183333333333334, 0.35 ], [ -2.183333333333334, 0.416666666666667 ], [ -2.15, 0.416666666666667 ], [ -2.15, 0.483333333333333 ], [ -2.116666666666667, 0.483333333333333 ], [ -2.116666666666667, 0.583333333333333 ], [ -2.083333333333333, 0.583333333333333 ], [ -2.083333333333333, 0.683333333333333 ], [ -2.05, 0.683333333333333 ], [ -2.05, 0.983333333333333 ], [ -2.083333333333333, 0.983333333333333 ], [ -2.083333333333333, 1.083333333333333 ], [ -2.116666666666667, 1.083333333333333 ], [ -2.116666666666667, 1.116666666666667 ], [ -2.15, 1.116666666666667 ], [ -2.15, 1.15 ], [ -2.183333333333334, 1.15 ], [ -2.183333333333334, 1.183333333333333 ], [ -2.383333333333333, 1.183333333333333 ], [ -2.383333333333333, 1.15 ], [ -2.416666666666667, 1.15 ], [ -2.416666666666667, 1.116666666666667 ], [ -2.45, 1.116666666666667 ], [ -2.45, 1.083333333333333 ], [ -2.483333333333333, 1.083333333333333 ], [ -2.483333333333333, 1.016666666666667 ], [ -2.516666666666667, 1.016666666666667 ], [ -2.516666666666667, 0.95 ], [ -2.55, 0.95 ], [ -2.55, 0.85 ], [ -2.583333333333333, 0.85 ] ] ] } }, +{ "type": "Feature", "properties": { "DN": 7 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.35, 1.65 ], [ -2.35, 1.616666666666667 ], [ -2.383333333333333, 1.616666666666667 ], [ -2.416666666666667, 1.616666666666667 ], [ -2.416666666666667, 1.583333333333333 ], [ -2.45, 1.583333333333333 ], [ -2.483333333333333, 1.583333333333333 ], [ -2.483333333333333, 1.55 ], [ -2.516666666666667, 1.55 ], [ -2.516666666666667, 1.516666666666667 ], [ -2.55, 1.516666666666667 ], [ -2.55, 1.483333333333333 ], [ -2.583333333333333, 1.483333333333333 ], [ -2.583333333333333, 1.416666666666667 ], [ -2.616666666666667, 1.416666666666667 ], [ -2.616666666666667, 1.383333333333333 ], [ -2.65, 1.383333333333333 ], [ -2.65, 1.316666666666667 ], [ -2.683333333333334, 1.316666666666667 ], [ -2.683333333333334, 1.216666666666667 ], [ -2.716666666666667, 1.216666666666667 ], [ -2.716666666666667, 1.15 ], [ -2.75, 1.15 ], [ -2.75, 1.016666666666667 ], [ -2.783333333333333, 1.016666666666667 ], [ -2.783333333333333, 0.883333333333333 ], [ -2.816666666666666, 0.883333333333333 ], [ -2.816666666666666, 0.15 ], [ -2.783333333333333, 0.15 ], [ -2.783333333333333, 0.016666666666667 ], [ -2.75, 0.016666666666667 ], [ -2.75, -0.116666666666667 ], [ -2.716666666666667, -0.116666666666667 ], [ -2.716666666666667, -0.183333333333334 ], [ -2.683333333333334, -0.183333333333334 ], [ -2.683333333333334, -0.25 ], [ -2.65, -0.25 ], [ -2.65, -0.316666666666667 ], [ -2.616666666666667, -0.316666666666667 ], [ -2.616666666666667, -0.35 ], [ -2.583333333333333, -0.35 ], [ -2.583333333333333, -0.383333333333333 ], [ -2.516666666666667, -0.383333333333333 ], [ -2.516666666666667, -0.416666666666667 ], [ -2.45, -0.416666666666667 ], [ -2.45, -0.383333333333333 ], [ -2.416666666666667, -0.383333333333333 ], [ -2.416666666666667, -0.35 ], [ -2.383333333333333, -0.35 ], [ -2.383333333333333, -0.316666666666667 ], [ -2.35, -0.316666666666667 ], [ -2.35, -0.283333333333333 ], [ -2.316666666666666, -0.283333333333333 ], [ -2.316666666666666, -0.216666666666667 ], [ -2.283333333333333, -0.216666666666667 ], [ -2.283333333333333, -0.15 ], [ -2.25, -0.15 ], [ -2.25, -0.083333333333333 ], [ -2.216666666666667, -0.083333333333333 ], [ -2.216666666666667, -0.016666666666667 ], [ -2.183333333333334, -0.016666666666667 ], [ -2.183333333333334, 0.05 ], [ -2.15, 0.05 ], [ -2.15, 0.116666666666667 ], [ -2.116666666666667, 0.116666666666667 ], [ -2.116666666666667, 0.183333333333333 ], [ -2.083333333333333, 0.183333333333333 ], [ -2.083333333333333, 0.25 ], [ -2.05, 0.25 ], [ -2.05, 0.316666666666666 ], [ -2.016666666666667, 0.316666666666666 ], [ -2.016666666666667, 0.383333333333333 ], [ -1.983333333333333, 0.383333333333333 ], [ -1.983333333333333, 0.45 ], [ -1.95, 0.45 ], [ -1.95, 0.516666666666667 ], [ -1.916666666666667, 0.516666666666667 ], [ -1.916666666666667, 0.583333333333333 ], [ -1.883333333333333, 0.583333333333333 ], [ -1.883333333333333, 0.65 ], [ -1.85, 0.65 ], [ -1.85, 0.75 ], [ -1.816666666666666, 0.75 ], [ -1.816666666666666, 1.183333333333333 ], [ -1.85, 1.183333333333333 ], [ -1.85, 1.283333333333333 ], [ -1.883333333333333, 1.283333333333333 ], [ -1.883333333333333, 1.35 ], [ -1.916666666666667, 1.35 ], [ -1.916666666666667, 1.416666666666667 ], [ -1.95, 1.416666666666667 ], [ -1.95, 1.45 ], [ -1.983333333333333, 1.45 ], [ -1.983333333333333, 1.516666666666667 ], [ -2.016666666666667, 1.516666666666667 ], [ -2.016666666666667, 1.55 ], [ -2.05, 1.55 ], [ -2.05, 1.583333333333333 ], [ -2.116666666666667, 1.583333333333333 ], [ -2.116666666666667, 1.616666666666667 ], [ -2.183333333333334, 1.616666666666667 ], [ -2.183333333333334, 1.65 ], [ -2.35, 1.65 ] ], [ [ -1.95, 0.783333333333333 ], [ -1.95, 0.65 ], [ -1.983333333333333, 0.65 ], [ -1.983333333333333, 0.583333333333333 ], [ -2.016666666666667, 0.583333333333333 ], [ -2.016666666666667, 0.483333333333333 ], [ -2.05, 0.483333333333333 ], [ -2.05, 0.416666666666667 ], [ -2.083333333333333, 0.416666666666667 ], [ -2.083333333333333, 0.35 ], [ -2.116666666666667, 0.35 ], [ -2.116666666666667, 0.283333333333333 ], [ -2.15, 0.283333333333333 ], [ -2.15, 0.216666666666667 ], [ -2.183333333333334, 0.216666666666667 ], [ -2.183333333333334, 0.15 ], [ -2.216666666666667, 0.15 ], [ -2.216666666666667, 0.083333333333333 ], [ -2.25, 0.083333333333333 ], [ -2.25, 0.016666666666667 ], [ -2.283333333333333, 0.016666666666667 ], [ -2.283333333333333, -0.016666666666667 ], [ -2.316666666666666, -0.016666666666667 ], [ -2.316666666666666, -0.083333333333333 ], [ -2.35, -0.083333333333333 ], [ -2.35, -0.116666666666667 ], [ -2.383333333333333, -0.116666666666667 ], [ -2.383333333333333, -0.15 ], [ -2.416666666666667, -0.15 ], [ -2.416666666666667, -0.183333333333334 ], [ -2.516666666666667, -0.183333333333334 ], [ -2.516666666666667, -0.15 ], [ -2.55, -0.15 ], [ -2.55, -0.116666666666667 ], [ -2.583333333333333, -0.116666666666667 ], [ -2.583333333333333, -0.083333333333333 ], [ -2.616666666666667, -0.083333333333333 ], [ -2.616666666666667, -0.016666666666667 ], [ -2.65, -0.016666666666667 ], [ -2.65, 0.083333333333333 ], [ -2.683333333333334, 0.083333333333333 ], [ -2.683333333333334, 0.25 ], [ -2.716666666666667, 0.25 ], [ -2.716666666666667, 0.816666666666666 ], [ -2.683333333333334, 0.816666666666666 ], [ -2.683333333333334, 0.95 ], [ -2.65, 0.95 ], [ -2.65, 1.083333333333333 ], [ -2.616666666666667, 1.083333333333333 ], [ -2.616666666666667, 1.15 ], [ -2.583333333333333, 1.15 ], [ -2.583333333333333, 1.216666666666667 ], [ -2.55, 1.216666666666667 ], [ -2.55, 1.25 ], [ -2.516666666666667, 1.25 ], [ -2.516666666666667, 1.316666666666667 ], [ -2.483333333333333, 1.316666666666667 ], [ -2.483333333333333, 1.35 ], [ -2.45, 1.35 ], [ -2.45, 1.383333333333333 ], [ -2.416666666666667, 1.383333333333333 ], [ -2.383333333333333, 1.383333333333333 ], [ -2.383333333333333, 1.416666666666667 ], [ -2.316666666666666, 1.416666666666667 ], [ -2.283333333333333, 1.416666666666667 ], [ -2.283333333333333, 1.45 ], [ -2.25, 1.45 ], [ -2.25, 1.416666666666667 ], [ -2.15, 1.416666666666667 ], [ -2.15, 1.383333333333333 ], [ -2.083333333333333, 1.383333333333333 ], [ -2.083333333333333, 1.35 ], [ -2.05, 1.35 ], [ -2.05, 1.283333333333333 ], [ -2.016666666666667, 1.283333333333333 ], [ -2.016666666666667, 1.25 ], [ -1.983333333333333, 1.25 ], [ -1.983333333333333, 1.183333333333333 ], [ -1.95, 1.183333333333333 ], [ -1.95, 1.05 ], [ -1.916666666666667, 1.05 ], [ -1.916666666666667, 0.783333333333333 ], [ -1.95, 0.783333333333333 ] ] ] } }, +{ "type": "Feature", "properties": { "DN": 6 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.35, 1.85 ], [ -2.35, 1.816666666666667 ], [ -2.383333333333333, 1.816666666666667 ], [ -2.45, 1.816666666666667 ], [ -2.45, 1.783333333333333 ], [ -2.483333333333333, 1.783333333333333 ], [ -2.483333333333333, 1.75 ], [ -2.516666666666667, 1.75 ], [ -2.516666666666667, 1.716666666666667 ], [ -2.55, 1.716666666666667 ], [ -2.583333333333333, 1.716666666666667 ], [ -2.583333333333333, 1.65 ], [ -2.616666666666667, 1.65 ], [ -2.616666666666667, 1.616666666666667 ], [ -2.65, 1.616666666666667 ], [ -2.65, 1.583333333333333 ], [ -2.683333333333334, 1.583333333333333 ], [ -2.683333333333334, 1.516666666666667 ], [ -2.716666666666667, 1.516666666666667 ], [ -2.716666666666667, 1.45 ], [ -2.75, 1.45 ], [ -2.75, 1.383333333333333 ], [ -2.783333333333333, 1.383333333333333 ], [ -2.783333333333333, 1.316666666666667 ], [ -2.816666666666666, 1.316666666666667 ], [ -2.816666666666666, 1.216666666666667 ], [ -2.85, 1.216666666666667 ], [ -2.85, 1.083333333333333 ], [ -2.883333333333333, 1.083333333333333 ], [ -2.883333333333333, 0.916666666666667 ], [ -2.916666666666667, 0.916666666666667 ], [ -2.916666666666667, 0.116666666666667 ], [ -2.883333333333333, 0.116666666666667 ], [ -2.883333333333333, -0.05 ], [ -2.85, -0.05 ], [ -2.85, -0.183333333333334 ], [ -2.816666666666666, -0.183333333333334 ], [ -2.816666666666666, -0.283333333333333 ], [ -2.783333333333333, -0.283333333333333 ], [ -2.783333333333333, -0.35 ], [ -2.75, -0.35 ], [ -2.75, -0.416666666666667 ], [ -2.716666666666667, -0.416666666666667 ], [ -2.716666666666667, -0.483333333333333 ], [ -2.683333333333334, -0.483333333333333 ], [ -2.683333333333334, -0.516666666666667 ], [ -2.65, -0.516666666666667 ], [ -2.65, -0.55 ], [ -2.616666666666667, -0.55 ], [ -2.616666666666667, -0.583333333333333 ], [ -2.583333333333333, -0.583333333333333 ], [ -2.583333333333333, -0.616666666666667 ], [ -2.416666666666667, -0.616666666666667 ], [ -2.416666666666667, -0.583333333333333 ], [ -2.383333333333333, -0.583333333333333 ], [ -2.383333333333333, -0.516666666666667 ], [ -2.35, -0.516666666666667 ], [ -2.35, -0.483333333333333 ], [ -2.316666666666666, -0.483333333333333 ], [ -2.316666666666666, -0.416666666666667 ], [ -2.283333333333333, -0.416666666666667 ], [ -2.283333333333333, -0.316666666666667 ], [ -2.25, -0.316666666666667 ], [ -2.25, -0.25 ], [ -2.216666666666667, -0.25 ], [ -2.216666666666667, -0.15 ], [ -2.183333333333334, -0.15 ], [ -2.183333333333334, -0.083333333333333 ], [ -2.15, -0.083333333333333 ], [ -2.15, -0.016666666666667 ], [ -2.116666666666667, -0.016666666666667 ], [ -2.116666666666667, 0.083333333333333 ], [ -2.083333333333333, 0.083333333333333 ], [ -2.083333333333333, 0.15 ], [ -2.05, 0.15 ], [ -2.05, 0.216666666666667 ], [ -2.016666666666667, 0.216666666666667 ], [ -2.016666666666667, 0.25 ], [ -1.983333333333333, 0.25 ], [ -1.983333333333333, 0.316666666666666 ], [ -1.95, 0.316666666666666 ], [ -1.95, 0.383333333333333 ], [ -1.916666666666667, 0.383333333333333 ], [ -1.916666666666667, 0.416666666666667 ], [ -1.883333333333333, 0.416666666666667 ], [ -1.883333333333333, 0.483333333333333 ], [ -1.85, 0.483333333333333 ], [ -1.85, 0.55 ], [ -1.816666666666666, 0.55 ], [ -1.816666666666666, 0.583333333333333 ], [ -1.783333333333333, 0.583333333333333 ], [ -1.783333333333333, 0.65 ], [ -1.75, 0.65 ], [ -1.75, 0.75 ], [ -1.716666666666667, 0.75 ], [ -1.716666666666667, 0.883333333333333 ], [ -1.683333333333333, 0.883333333333333 ], [ -1.683333333333333, 1.083333333333333 ], [ -1.716666666666667, 1.083333333333333 ], [ -1.716666666666667, 1.283333333333333 ], [ -1.75, 1.283333333333333 ], [ -1.75, 1.383333333333333 ], [ -1.783333333333333, 1.383333333333333 ], [ -1.783333333333333, 1.45 ], [ -1.816666666666666, 1.45 ], [ -1.816666666666666, 1.516666666666667 ], [ -1.85, 1.516666666666667 ], [ -1.85, 1.583333333333333 ], [ -1.883333333333333, 1.583333333333333 ], [ -1.883333333333333, 1.616666666666667 ], [ -1.916666666666667, 1.616666666666667 ], [ -1.916666666666667, 1.65 ], [ -1.95, 1.65 ], [ -1.95, 1.716666666666667 ], [ -1.983333333333333, 1.716666666666667 ], [ -1.983333333333333, 1.75 ], [ -2.05, 1.75 ], [ -2.05, 1.783333333333333 ], [ -2.083333333333333, 1.783333333333333 ], [ -2.083333333333333, 1.816666666666667 ], [ -2.183333333333334, 1.816666666666667 ], [ -2.183333333333334, 1.85 ], [ -2.35, 1.85 ] ], [ [ -1.916666666666667, 0.583333333333333 ], [ -1.916666666666667, 0.516666666666667 ], [ -1.95, 0.516666666666667 ], [ -1.95, 0.45 ], [ -1.983333333333333, 0.45 ], [ -1.983333333333333, 0.383333333333333 ], [ -2.016666666666667, 0.383333333333333 ], [ -2.016666666666667, 0.316666666666666 ], [ -2.05, 0.316666666666666 ], [ -2.05, 0.25 ], [ -2.083333333333333, 0.25 ], [ -2.083333333333333, 0.183333333333333 ], [ -2.116666666666667, 0.183333333333333 ], [ -2.116666666666667, 0.116666666666667 ], [ -2.15, 0.116666666666667 ], [ -2.15, 0.05 ], [ -2.183333333333334, 0.05 ], [ -2.183333333333334, -0.016666666666667 ], [ -2.216666666666667, -0.016666666666667 ], [ -2.216666666666667, -0.083333333333333 ], [ -2.25, -0.083333333333333 ], [ -2.25, -0.15 ], [ -2.283333333333333, -0.15 ], [ -2.283333333333333, -0.216666666666667 ], [ -2.316666666666666, -0.216666666666667 ], [ -2.316666666666666, -0.283333333333333 ], [ -2.35, -0.283333333333333 ], [ -2.35, -0.316666666666667 ], [ -2.383333333333333, -0.316666666666667 ], [ -2.383333333333333, -0.35 ], [ -2.416666666666667, -0.35 ], [ -2.416666666666667, -0.383333333333333 ], [ -2.45, -0.383333333333333 ], [ -2.45, -0.416666666666667 ], [ -2.516666666666667, -0.416666666666667 ], [ -2.516666666666667, -0.383333333333333 ], [ -2.583333333333333, -0.383333333333333 ], [ -2.583333333333333, -0.35 ], [ -2.616666666666667, -0.35 ], [ -2.616666666666667, -0.316666666666667 ], [ -2.65, -0.316666666666667 ], [ -2.65, -0.25 ], [ -2.683333333333334, -0.25 ], [ -2.683333333333334, -0.183333333333334 ], [ -2.716666666666667, -0.183333333333334 ], [ -2.716666666666667, -0.116666666666667 ], [ -2.75, -0.116666666666667 ], [ -2.75, 0.016666666666667 ], [ -2.783333333333333, 0.016666666666667 ], [ -2.783333333333333, 0.15 ], [ -2.816666666666666, 0.15 ], [ -2.816666666666666, 0.883333333333333 ], [ -2.783333333333333, 0.883333333333333 ], [ -2.783333333333333, 1.016666666666667 ], [ -2.75, 1.016666666666667 ], [ -2.75, 1.15 ], [ -2.716666666666667, 1.15 ], [ -2.716666666666667, 1.216666666666667 ], [ -2.683333333333334, 1.216666666666667 ], [ -2.683333333333334, 1.316666666666667 ], [ -2.65, 1.316666666666667 ], [ -2.65, 1.383333333333333 ], [ -2.616666666666667, 1.383333333333333 ], [ -2.616666666666667, 1.416666666666667 ], [ -2.583333333333333, 1.416666666666667 ], [ -2.583333333333333, 1.483333333333333 ], [ -2.55, 1.483333333333333 ], [ -2.55, 1.516666666666667 ], [ -2.516666666666667, 1.516666666666667 ], [ -2.516666666666667, 1.55 ], [ -2.483333333333333, 1.55 ], [ -2.483333333333333, 1.583333333333333 ], [ -2.45, 1.583333333333333 ], [ -2.416666666666667, 1.583333333333333 ], [ -2.416666666666667, 1.616666666666667 ], [ -2.383333333333333, 1.616666666666667 ], [ -2.35, 1.616666666666667 ], [ -2.35, 1.65 ], [ -2.183333333333334, 1.65 ], [ -2.183333333333334, 1.616666666666667 ], [ -2.116666666666667, 1.616666666666667 ], [ -2.116666666666667, 1.583333333333333 ], [ -2.05, 1.583333333333333 ], [ -2.05, 1.55 ], [ -2.016666666666667, 1.55 ], [ -2.016666666666667, 1.516666666666667 ], [ -1.983333333333333, 1.516666666666667 ], [ -1.983333333333333, 1.45 ], [ -1.95, 1.45 ], [ -1.95, 1.416666666666667 ], [ -1.916666666666667, 1.416666666666667 ], [ -1.916666666666667, 1.35 ], [ -1.883333333333333, 1.35 ], [ -1.883333333333333, 1.283333333333333 ], [ -1.85, 1.283333333333333 ], [ -1.85, 1.183333333333333 ], [ -1.816666666666666, 1.183333333333333 ], [ -1.816666666666666, 0.75 ], [ -1.85, 0.75 ], [ -1.85, 0.65 ], [ -1.883333333333333, 0.65 ], [ -1.883333333333333, 0.583333333333333 ], [ -1.916666666666667, 0.583333333333333 ] ] ] } }, +{ "type": "Feature", "properties": { "DN": -5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.716666666666667, -0.35 ], [ -1.716666666666667, -0.383333333333333 ], [ -1.75, -0.383333333333333 ], [ -1.783333333333333, -0.383333333333333 ], [ -1.783333333333333, -0.45 ], [ -1.816666666666666, -0.45 ], [ -1.816666666666666, -0.783333333333333 ], [ -1.783333333333333, -0.783333333333333 ], [ -1.783333333333333, -0.85 ], [ -1.65, -0.85 ], [ -1.65, -0.816666666666667 ], [ -1.616666666666667, -0.816666666666667 ], [ -1.616666666666667, -0.75 ], [ -1.583333333333333, -0.75 ], [ -1.583333333333333, -0.45 ], [ -1.616666666666667, -0.45 ], [ -1.616666666666667, -0.383333333333333 ], [ -1.65, -0.383333333333333 ], [ -1.65, -0.35 ], [ -1.716666666666667, -0.35 ] ] ] } }, +{ "type": "Feature", "properties": { "DN": 5 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.383333333333333, 2.05 ], [ -2.383333333333333, 2.016666666666667 ], [ -2.416666666666667, 2.016666666666667 ], [ -2.483333333333333, 2.016666666666667 ], [ -2.483333333333333, 1.983333333333333 ], [ -2.516666666666667, 1.983333333333333 ], [ -2.516666666666667, 1.95 ], [ -2.55, 1.95 ], [ -2.55, 1.916666666666667 ], [ -2.583333333333333, 1.916666666666667 ], [ -2.583333333333333, 1.883333333333333 ], [ -2.616666666666667, 1.883333333333333 ], [ -2.616666666666667, 1.85 ], [ -2.65, 1.85 ], [ -2.65, 1.816666666666667 ], [ -2.683333333333334, 1.816666666666667 ], [ -2.683333333333334, 1.783333333333333 ], [ -2.716666666666667, 1.783333333333333 ], [ -2.716666666666667, 1.75 ], [ -2.75, 1.75 ], [ -2.75, 1.683333333333333 ], [ -2.783333333333333, 1.683333333333333 ], [ -2.783333333333333, 1.616666666666667 ], [ -2.816666666666666, 1.616666666666667 ], [ -2.816666666666666, 1.55 ], [ -2.85, 1.55 ], [ -2.85, 1.483333333333333 ], [ -2.883333333333333, 1.483333333333333 ], [ -2.883333333333333, 1.383333333333333 ], [ -2.916666666666667, 1.383333333333333 ], [ -2.916666666666667, 1.283333333333333 ], [ -2.95, 1.283333333333333 ], [ -2.95, 1.15 ], [ -2.983333333333333, 1.15 ], [ -2.983333333333333, 0.95 ], [ -3.016666666666667, 0.95 ], [ -3.016666666666667, 0.083333333333333 ], [ -2.983333333333333, 0.083333333333333 ], [ -2.983333333333333, -0.116666666666667 ], [ -2.95, -0.116666666666667 ], [ -2.95, -0.25 ], [ -2.916666666666667, -0.25 ], [ -2.916666666666667, -0.35 ], [ -2.883333333333333, -0.35 ], [ -2.883333333333333, -0.45 ], [ -2.85, -0.45 ], [ -2.85, -0.516666666666667 ], [ -2.816666666666666, -0.516666666666667 ], [ -2.816666666666666, -0.583333333333333 ], [ -2.783333333333333, -0.583333333333333 ], [ -2.783333333333333, -0.65 ], [ -2.75, -0.65 ], [ -2.75, -0.683333333333333 ], [ -2.716666666666667, -0.683333333333333 ], [ -2.716666666666667, -0.75 ], [ -2.683333333333334, -0.75 ], [ -2.683333333333334, -0.783333333333333 ], [ -2.65, -0.783333333333333 ], [ -2.65, -0.816666666666667 ], [ -2.583333333333333, -0.816666666666667 ], [ -2.583333333333333, -0.85 ], [ -2.416666666666667, -0.85 ], [ -2.416666666666667, -0.816666666666667 ], [ -2.383333333333333, -0.816666666666667 ], [ -2.383333333333333, -0.75 ], [ -2.35, -0.75 ], [ -2.35, -0.716666666666667 ], [ -2.316666666666666, -0.716666666666667 ], [ -2.316666666666666, -0.616666666666667 ], [ -2.283333333333333, -0.616666666666667 ], [ -2.283333333333333, -0.516666666666667 ], [ -2.25, -0.516666666666667 ], [ -2.25, -0.416666666666667 ], [ -2.216666666666667, -0.416666666666667 ], [ -2.216666666666667, -0.316666666666667 ], [ -2.183333333333334, -0.316666666666667 ], [ -2.183333333333334, -0.216666666666667 ], [ -2.15, -0.216666666666667 ], [ -2.15, -0.116666666666667 ], [ -2.116666666666667, -0.116666666666667 ], [ -2.116666666666667, -0.05 ], [ -2.083333333333333, -0.05 ], [ -2.083333333333333, 0.016666666666667 ], [ -2.05, 0.016666666666667 ], [ -2.05, 0.083333333333333 ], [ -2.016666666666667, 0.083333333333333 ], [ -2.016666666666667, 0.15 ], [ -1.983333333333333, 0.15 ], [ -1.983333333333333, 0.216666666666667 ], [ -1.95, 0.216666666666667 ], [ -1.95, 0.25 ], [ -1.916666666666667, 0.25 ], [ -1.916666666666667, 0.316666666666666 ], [ -1.883333333333333, 0.316666666666666 ], [ -1.883333333333333, 0.35 ], [ -1.85, 0.35 ], [ -1.85, 0.416666666666667 ], [ -1.816666666666666, 0.416666666666667 ], [ -1.816666666666666, 0.45 ], [ -1.783333333333333, 0.45 ], [ -1.783333333333333, 0.483333333333333 ], [ -1.75, 0.483333333333333 ], [ -1.75, 0.55 ], [ -1.716666666666667, 0.55 ], [ -1.716666666666667, 0.583333333333333 ], [ -1.683333333333333, 0.583333333333333 ], [ -1.683333333333333, 0.65 ], [ -1.65, 0.65 ], [ -1.65, 0.716666666666667 ], [ -1.616666666666667, 0.716666666666667 ], [ -1.616666666666667, 0.816666666666666 ], [ -1.583333333333333, 0.816666666666666 ], [ -1.583333333333333, 1.216666666666667 ], [ -1.616666666666667, 1.216666666666667 ], [ -1.616666666666667, 1.35 ], [ -1.65, 1.35 ], [ -1.65, 1.45 ], [ -1.683333333333333, 1.45 ], [ -1.683333333333333, 1.55 ], [ -1.716666666666667, 1.55 ], [ -1.716666666666667, 1.616666666666667 ], [ -1.75, 1.616666666666667 ], [ -1.75, 1.683333333333333 ], [ -1.783333333333333, 1.683333333333333 ], [ -1.783333333333333, 1.75 ], [ -1.816666666666666, 1.75 ], [ -1.816666666666666, 1.783333333333333 ], [ -1.85, 1.783333333333333 ], [ -1.85, 1.816666666666667 ], [ -1.883333333333333, 1.816666666666667 ], [ -1.883333333333333, 1.883333333333333 ], [ -1.916666666666667, 1.883333333333333 ], [ -1.916666666666667, 1.916666666666667 ], [ -1.95, 1.916666666666667 ], [ -1.95, 1.95 ], [ -2.016666666666667, 1.95 ], [ -2.016666666666667, 1.983333333333333 ], [ -2.05, 1.983333333333333 ], [ -2.05, 2.016666666666667 ], [ -2.15, 2.016666666666667 ], [ -2.15, 2.05 ], [ -2.383333333333333, 2.05 ] ], [ [ -1.816666666666666, 0.583333333333333 ], [ -1.816666666666666, 0.55 ], [ -1.85, 0.55 ], [ -1.85, 0.483333333333333 ], [ -1.883333333333333, 0.483333333333333 ], [ -1.883333333333333, 0.416666666666667 ], [ -1.916666666666667, 0.416666666666667 ], [ -1.916666666666667, 0.383333333333333 ], [ -1.95, 0.383333333333333 ], [ -1.95, 0.316666666666666 ], [ -1.983333333333333, 0.316666666666666 ], [ -1.983333333333333, 0.25 ], [ -2.016666666666667, 0.25 ], [ -2.016666666666667, 0.216666666666667 ], [ -2.05, 0.216666666666667 ], [ -2.05, 0.15 ], [ -2.083333333333333, 0.15 ], [ -2.083333333333333, 0.083333333333333 ], [ -2.116666666666667, 0.083333333333333 ], [ -2.116666666666667, -0.016666666666667 ], [ -2.15, -0.016666666666667 ], [ -2.15, -0.083333333333333 ], [ -2.183333333333334, -0.083333333333333 ], [ -2.183333333333334, -0.15 ], [ -2.216666666666667, -0.15 ], [ -2.216666666666667, -0.25 ], [ -2.25, -0.25 ], [ -2.25, -0.316666666666667 ], [ -2.283333333333333, -0.316666666666667 ], [ -2.283333333333333, -0.416666666666667 ], [ -2.316666666666666, -0.416666666666667 ], [ -2.316666666666666, -0.483333333333333 ], [ -2.35, -0.483333333333333 ], [ -2.35, -0.516666666666667 ], [ -2.383333333333333, -0.516666666666667 ], [ -2.383333333333333, -0.583333333333333 ], [ -2.416666666666667, -0.583333333333333 ], [ -2.416666666666667, -0.616666666666667 ], [ -2.583333333333333, -0.616666666666667 ], [ -2.583333333333333, -0.583333333333333 ], [ -2.616666666666667, -0.583333333333333 ], [ -2.616666666666667, -0.55 ], [ -2.65, -0.55 ], [ -2.65, -0.516666666666667 ], [ -2.683333333333334, -0.516666666666667 ], [ -2.683333333333334, -0.483333333333333 ], [ -2.716666666666667, -0.483333333333333 ], [ -2.716666666666667, -0.416666666666667 ], [ -2.75, -0.416666666666667 ], [ -2.75, -0.35 ], [ -2.783333333333333, -0.35 ], [ -2.783333333333333, -0.283333333333333 ], [ -2.816666666666666, -0.283333333333333 ], [ -2.816666666666666, -0.183333333333334 ], [ -2.85, -0.183333333333334 ], [ -2.85, -0.05 ], [ -2.883333333333333, -0.05 ], [ -2.883333333333333, 0.116666666666667 ], [ -2.916666666666667, 0.116666666666667 ], [ -2.916666666666667, 0.916666666666667 ], [ -2.883333333333333, 0.916666666666667 ], [ -2.883333333333333, 1.083333333333333 ], [ -2.85, 1.083333333333333 ], [ -2.85, 1.216666666666667 ], [ -2.816666666666666, 1.216666666666667 ], [ -2.816666666666666, 1.316666666666667 ], [ -2.783333333333333, 1.316666666666667 ], [ -2.783333333333333, 1.383333333333333 ], [ -2.75, 1.383333333333333 ], [ -2.75, 1.45 ], [ -2.716666666666667, 1.45 ], [ -2.716666666666667, 1.516666666666667 ], [ -2.683333333333334, 1.516666666666667 ], [ -2.683333333333334, 1.583333333333333 ], [ -2.65, 1.583333333333333 ], [ -2.65, 1.616666666666667 ], [ -2.616666666666667, 1.616666666666667 ], [ -2.616666666666667, 1.65 ], [ -2.583333333333333, 1.65 ], [ -2.583333333333333, 1.716666666666667 ], [ -2.55, 1.716666666666667 ], [ -2.516666666666667, 1.716666666666667 ], [ -2.516666666666667, 1.75 ], [ -2.483333333333333, 1.75 ], [ -2.483333333333333, 1.783333333333333 ], [ -2.45, 1.783333333333333 ], [ -2.45, 1.816666666666667 ], [ -2.383333333333333, 1.816666666666667 ], [ -2.35, 1.816666666666667 ], [ -2.35, 1.85 ], [ -2.183333333333334, 1.85 ], [ -2.183333333333334, 1.816666666666667 ], [ -2.083333333333333, 1.816666666666667 ], [ -2.083333333333333, 1.783333333333333 ], [ -2.05, 1.783333333333333 ], [ -2.05, 1.75 ], [ -1.983333333333333, 1.75 ], [ -1.983333333333333, 1.716666666666667 ], [ -1.95, 1.716666666666667 ], [ -1.95, 1.65 ], [ -1.916666666666667, 1.65 ], [ -1.916666666666667, 1.616666666666667 ], [ -1.883333333333333, 1.616666666666667 ], [ -1.883333333333333, 1.583333333333333 ], [ -1.85, 1.583333333333333 ], [ -1.85, 1.516666666666667 ], [ -1.816666666666666, 1.516666666666667 ], [ -1.816666666666666, 1.45 ], [ -1.783333333333333, 1.45 ], [ -1.783333333333333, 1.383333333333333 ], [ -1.75, 1.383333333333333 ], [ -1.75, 1.283333333333333 ], [ -1.716666666666667, 1.283333333333333 ], [ -1.716666666666667, 1.083333333333333 ], [ -1.683333333333333, 1.083333333333333 ], [ -1.683333333333333, 0.883333333333333 ], [ -1.716666666666667, 0.883333333333333 ], [ -1.716666666666667, 0.75 ], [ -1.75, 0.75 ], [ -1.75, 0.65 ], [ -1.783333333333333, 0.65 ], [ -1.783333333333333, 0.583333333333333 ], [ -1.816666666666666, 0.583333333333333 ] ] ] } }, +{ "type": "Feature", "properties": { "DN": 4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.383333333333333, 2.283333333333333 ], [ -2.383333333333333, 2.25 ], [ -2.416666666666667, 2.25 ], [ -2.45, 2.25 ], [ -2.45, 2.216666666666667 ], [ -2.483333333333333, 2.216666666666667 ], [ -2.516666666666667, 2.216666666666667 ], [ -2.516666666666667, 2.183333333333333 ], [ -2.55, 2.183333333333333 ], [ -2.583333333333333, 2.183333333333333 ], [ -2.583333333333333, 2.15 ], [ -2.616666666666667, 2.15 ], [ -2.616666666666667, 2.116666666666667 ], [ -2.65, 2.116666666666667 ], [ -2.65, 2.083333333333333 ], [ -2.683333333333334, 2.083333333333333 ], [ -2.683333333333334, 2.05 ], [ -2.716666666666667, 2.05 ], [ -2.716666666666667, 2.016666666666667 ], [ -2.75, 2.016666666666667 ], [ -2.75, 1.95 ], [ -2.783333333333333, 1.95 ], [ -2.783333333333333, 1.916666666666667 ], [ -2.816666666666666, 1.916666666666667 ], [ -2.816666666666666, 1.85 ], [ -2.85, 1.85 ], [ -2.85, 1.816666666666667 ], [ -2.883333333333333, 1.816666666666667 ], [ -2.883333333333333, 1.75 ], [ -2.916666666666667, 1.75 ], [ -2.916666666666667, 1.65 ], [ -2.95, 1.65 ], [ -2.95, 1.583333333333333 ], [ -2.983333333333333, 1.583333333333333 ], [ -2.983333333333333, 1.483333333333333 ], [ -3.016666666666667, 1.483333333333333 ], [ -3.016666666666667, 1.383333333333333 ], [ -3.05, 1.383333333333333 ], [ -3.05, 1.25 ], [ -3.083333333333333, 1.25 ], [ -3.083333333333333, 1.083333333333333 ], [ -3.116666666666667, 1.083333333333333 ], [ -3.116666666666667, 0.816666666666666 ], [ -3.15, 0.816666666666666 ], [ -3.15, 0.216666666666667 ], [ -3.116666666666667, 0.216666666666667 ], [ -3.116666666666667, -0.05 ], [ -3.083333333333333, -0.05 ], [ -3.083333333333333, -0.216666666666667 ], [ -3.05, -0.216666666666667 ], [ -3.05, -0.35 ], [ -3.016666666666667, -0.35 ], [ -3.016666666666667, -0.45 ], [ -2.983333333333333, -0.45 ], [ -2.983333333333333, -0.55 ], [ -2.95, -0.55 ], [ -2.95, -0.65 ], [ -2.916666666666667, -0.65 ], [ -2.916666666666667, -0.716666666666667 ], [ -2.883333333333333, -0.716666666666667 ], [ -2.883333333333333, -0.783333333333333 ], [ -2.85, -0.783333333333333 ], [ -2.85, -0.816666666666667 ], [ -2.816666666666666, -0.816666666666667 ], [ -2.816666666666666, -0.883333333333333 ], [ -2.783333333333333, -0.883333333333333 ], [ -2.783333333333333, -0.916666666666667 ], [ -2.75, -0.916666666666667 ], [ -2.75, -0.983333333333333 ], [ -2.716666666666667, -0.983333333333333 ], [ -2.716666666666667, -1.016666666666667 ], [ -2.683333333333334, -1.016666666666667 ], [ -2.683333333333334, -1.05 ], [ -2.616666666666667, -1.05 ], [ -2.616666666666667, -1.083333333333333 ], [ -2.583333333333333, -1.083333333333333 ], [ -2.583333333333333, -1.116666666666666 ], [ -2.416666666666667, -1.116666666666666 ], [ -2.416666666666667, -1.083333333333333 ], [ -2.383333333333333, -1.083333333333333 ], [ -2.383333333333333, -1.05 ], [ -2.35, -1.05 ], [ -2.35, -0.983333333333333 ], [ -2.316666666666666, -0.983333333333333 ], [ -2.316666666666666, -0.916666666666667 ], [ -2.283333333333333, -0.916666666666667 ], [ -2.283333333333333, -0.783333333333333 ], [ -2.25, -0.783333333333333 ], [ -2.25, -0.65 ], [ -2.216666666666667, -0.65 ], [ -2.216666666666667, -0.516666666666667 ], [ -2.183333333333334, -0.516666666666667 ], [ -2.183333333333334, -0.383333333333333 ], [ -2.15, -0.383333333333333 ], [ -2.15, -0.283333333333333 ], [ -2.116666666666667, -0.283333333333333 ], [ -2.116666666666667, -0.183333333333334 ], [ -2.083333333333333, -0.183333333333334 ], [ -2.083333333333333, -0.083333333333333 ], [ -2.05, -0.083333333333333 ], [ -2.05, -0.016666666666667 ], [ -2.016666666666667, -0.016666666666667 ], [ -2.016666666666667, 0.05 ], [ -1.983333333333333, 0.05 ], [ -1.983333333333333, 0.116666666666667 ], [ -1.95, 0.116666666666667 ], [ -1.95, 0.15 ], [ -1.916666666666667, 0.15 ], [ -1.916666666666667, 0.216666666666667 ], [ -1.883333333333333, 0.216666666666667 ], [ -1.883333333333333, 0.25 ], [ -1.85, 0.25 ], [ -1.85, 0.316666666666666 ], [ -1.816666666666666, 0.316666666666666 ], [ -1.816666666666666, 0.35 ], [ -1.783333333333333, 0.35 ], [ -1.783333333333333, 0.383333333333333 ], [ -1.75, 0.383333333333333 ], [ -1.75, 0.416666666666667 ], [ -1.716666666666667, 0.416666666666667 ], [ -1.716666666666667, 0.45 ], [ -1.683333333333333, 0.45 ], [ -1.683333333333333, 0.483333333333333 ], [ -1.65, 0.483333333333333 ], [ -1.65, 0.516666666666667 ], [ -1.616666666666667, 0.516666666666667 ], [ -1.616666666666667, 0.55 ], [ -1.583333333333333, 0.55 ], [ -1.583333333333333, 0.583333333333333 ], [ -1.55, 0.583333333333333 ], [ -1.55, 0.616666666666667 ], [ -1.516666666666667, 0.616666666666667 ], [ -1.516666666666667, 0.683333333333333 ], [ -1.483333333333333, 0.683333333333333 ], [ -1.483333333333333, 0.783333333333333 ], [ -1.45, 0.783333333333333 ], [ -1.45, 1.183333333333333 ], [ -1.483333333333333, 1.183333333333333 ], [ -1.483333333333333, 1.35 ], [ -1.516666666666667, 1.35 ], [ -1.516666666666667, 1.483333333333333 ], [ -1.55, 1.483333333333333 ], [ -1.55, 1.583333333333333 ], [ -1.583333333333333, 1.583333333333333 ], [ -1.583333333333333, 1.683333333333333 ], [ -1.616666666666667, 1.683333333333333 ], [ -1.616666666666667, 1.75 ], [ -1.65, 1.75 ], [ -1.65, 1.816666666666667 ], [ -1.683333333333333, 1.816666666666667 ], [ -1.683333333333333, 1.883333333333333 ], [ -1.716666666666667, 1.883333333333333 ], [ -1.716666666666667, 1.916666666666667 ], [ -1.75, 1.916666666666667 ], [ -1.75, 1.983333333333333 ], [ -1.783333333333333, 1.983333333333333 ], [ -1.783333333333333, 2.016666666666667 ], [ -1.816666666666666, 2.016666666666667 ], [ -1.816666666666666, 2.05 ], [ -1.85, 2.05 ], [ -1.85, 2.083333333333333 ], [ -1.883333333333333, 2.083333333333333 ], [ -1.883333333333333, 2.116666666666667 ], [ -1.916666666666667, 2.116666666666667 ], [ -1.916666666666667, 2.15 ], [ -1.95, 2.15 ], [ -1.95, 2.183333333333333 ], [ -2.016666666666667, 2.183333333333333 ], [ -2.016666666666667, 2.216666666666667 ], [ -2.05, 2.216666666666667 ], [ -2.05, 2.25 ], [ -2.15, 2.25 ], [ -2.15, 2.283333333333333 ], [ -2.383333333333333, 2.283333333333333 ] ], [ [ -1.65, 0.716666666666667 ], [ -1.65, 0.65 ], [ -1.683333333333333, 0.65 ], [ -1.683333333333333, 0.583333333333333 ], [ -1.716666666666667, 0.583333333333333 ], [ -1.716666666666667, 0.55 ], [ -1.75, 0.55 ], [ -1.75, 0.483333333333333 ], [ -1.783333333333333, 0.483333333333333 ], [ -1.783333333333333, 0.45 ], [ -1.816666666666666, 0.45 ], [ -1.816666666666666, 0.416666666666667 ], [ -1.85, 0.416666666666667 ], [ -1.85, 0.35 ], [ -1.883333333333333, 0.35 ], [ -1.883333333333333, 0.316666666666666 ], [ -1.916666666666667, 0.316666666666666 ], [ -1.916666666666667, 0.25 ], [ -1.95, 0.25 ], [ -1.95, 0.216666666666667 ], [ -1.983333333333333, 0.216666666666667 ], [ -1.983333333333333, 0.15 ], [ -2.016666666666667, 0.15 ], [ -2.016666666666667, 0.083333333333333 ], [ -2.05, 0.083333333333333 ], [ -2.05, 0.016666666666667 ], [ -2.083333333333333, 0.016666666666667 ], [ -2.083333333333333, -0.05 ], [ -2.116666666666667, -0.05 ], [ -2.116666666666667, -0.116666666666667 ], [ -2.15, -0.116666666666667 ], [ -2.15, -0.216666666666667 ], [ -2.183333333333334, -0.216666666666667 ], [ -2.183333333333334, -0.316666666666667 ], [ -2.216666666666667, -0.316666666666667 ], [ -2.216666666666667, -0.416666666666667 ], [ -2.25, -0.416666666666667 ], [ -2.25, -0.516666666666667 ], [ -2.283333333333333, -0.516666666666667 ], [ -2.283333333333333, -0.616666666666667 ], [ -2.316666666666666, -0.616666666666667 ], [ -2.316666666666666, -0.716666666666667 ], [ -2.35, -0.716666666666667 ], [ -2.35, -0.75 ], [ -2.383333333333333, -0.75 ], [ -2.383333333333333, -0.816666666666667 ], [ -2.416666666666667, -0.816666666666667 ], [ -2.416666666666667, -0.85 ], [ -2.583333333333333, -0.85 ], [ -2.583333333333333, -0.816666666666667 ], [ -2.65, -0.816666666666667 ], [ -2.65, -0.783333333333333 ], [ -2.683333333333334, -0.783333333333333 ], [ -2.683333333333334, -0.75 ], [ -2.716666666666667, -0.75 ], [ -2.716666666666667, -0.683333333333333 ], [ -2.75, -0.683333333333333 ], [ -2.75, -0.65 ], [ -2.783333333333333, -0.65 ], [ -2.783333333333333, -0.583333333333333 ], [ -2.816666666666666, -0.583333333333333 ], [ -2.816666666666666, -0.516666666666667 ], [ -2.85, -0.516666666666667 ], [ -2.85, -0.45 ], [ -2.883333333333333, -0.45 ], [ -2.883333333333333, -0.35 ], [ -2.916666666666667, -0.35 ], [ -2.916666666666667, -0.25 ], [ -2.95, -0.25 ], [ -2.95, -0.116666666666667 ], [ -2.983333333333333, -0.116666666666667 ], [ -2.983333333333333, 0.083333333333333 ], [ -3.016666666666667, 0.083333333333333 ], [ -3.016666666666667, 0.95 ], [ -2.983333333333333, 0.95 ], [ -2.983333333333333, 1.15 ], [ -2.95, 1.15 ], [ -2.95, 1.283333333333333 ], [ -2.916666666666667, 1.283333333333333 ], [ -2.916666666666667, 1.383333333333333 ], [ -2.883333333333333, 1.383333333333333 ], [ -2.883333333333333, 1.483333333333333 ], [ -2.85, 1.483333333333333 ], [ -2.85, 1.55 ], [ -2.816666666666666, 1.55 ], [ -2.816666666666666, 1.616666666666667 ], [ -2.783333333333333, 1.616666666666667 ], [ -2.783333333333333, 1.683333333333333 ], [ -2.75, 1.683333333333333 ], [ -2.75, 1.75 ], [ -2.716666666666667, 1.75 ], [ -2.716666666666667, 1.783333333333333 ], [ -2.683333333333334, 1.783333333333333 ], [ -2.683333333333334, 1.816666666666667 ], [ -2.65, 1.816666666666667 ], [ -2.65, 1.85 ], [ -2.616666666666667, 1.85 ], [ -2.616666666666667, 1.883333333333333 ], [ -2.583333333333333, 1.883333333333333 ], [ -2.583333333333333, 1.916666666666667 ], [ -2.55, 1.916666666666667 ], [ -2.55, 1.95 ], [ -2.516666666666667, 1.95 ], [ -2.516666666666667, 1.983333333333333 ], [ -2.483333333333333, 1.983333333333333 ], [ -2.483333333333333, 2.016666666666667 ], [ -2.416666666666667, 2.016666666666667 ], [ -2.383333333333333, 2.016666666666667 ], [ -2.383333333333333, 2.05 ], [ -2.15, 2.05 ], [ -2.15, 2.016666666666667 ], [ -2.05, 2.016666666666667 ], [ -2.05, 1.983333333333333 ], [ -2.016666666666667, 1.983333333333333 ], [ -2.016666666666667, 1.95 ], [ -1.95, 1.95 ], [ -1.95, 1.916666666666667 ], [ -1.916666666666667, 1.916666666666667 ], [ -1.916666666666667, 1.883333333333333 ], [ -1.883333333333333, 1.883333333333333 ], [ -1.883333333333333, 1.816666666666667 ], [ -1.85, 1.816666666666667 ], [ -1.85, 1.783333333333333 ], [ -1.816666666666666, 1.783333333333333 ], [ -1.816666666666666, 1.75 ], [ -1.783333333333333, 1.75 ], [ -1.783333333333333, 1.683333333333333 ], [ -1.75, 1.683333333333333 ], [ -1.75, 1.616666666666667 ], [ -1.716666666666667, 1.616666666666667 ], [ -1.716666666666667, 1.55 ], [ -1.683333333333333, 1.55 ], [ -1.683333333333333, 1.45 ], [ -1.65, 1.45 ], [ -1.65, 1.35 ], [ -1.616666666666667, 1.35 ], [ -1.616666666666667, 1.216666666666667 ], [ -1.583333333333333, 1.216666666666667 ], [ -1.583333333333333, 0.816666666666666 ], [ -1.616666666666667, 0.816666666666666 ], [ -1.616666666666667, 0.716666666666667 ], [ -1.65, 0.716666666666667 ] ] ] } }, +{ "type": "Feature", "properties": { "DN": -4 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.716666666666667, -0.216666666666667 ], [ -1.716666666666667, -0.25 ], [ -1.75, -0.25 ], [ -1.783333333333333, -0.25 ], [ -1.783333333333333, -0.283333333333333 ], [ -1.816666666666666, -0.283333333333333 ], [ -1.816666666666666, -0.35 ], [ -1.85, -0.35 ], [ -1.85, -0.45 ], [ -1.883333333333333, -0.45 ], [ -1.883333333333333, -0.85 ], [ -1.85, -0.85 ], [ -1.85, -0.916666666666667 ], [ -1.816666666666666, -0.916666666666667 ], [ -1.816666666666666, -0.983333333333333 ], [ -1.783333333333333, -0.983333333333333 ], [ -1.783333333333333, -1.016666666666667 ], [ -1.65, -1.016666666666667 ], [ -1.65, -0.983333333333333 ], [ -1.616666666666667, -0.983333333333333 ], [ -1.616666666666667, -0.95 ], [ -1.583333333333333, -0.95 ], [ -1.583333333333333, -0.916666666666667 ], [ -1.55, -0.916666666666667 ], [ -1.55, -0.85 ], [ -1.516666666666667, -0.85 ], [ -1.516666666666667, -0.683333333333333 ], [ -1.483333333333333, -0.683333333333333 ], [ -1.483333333333333, -0.55 ], [ -1.516666666666667, -0.55 ], [ -1.516666666666667, -0.383333333333333 ], [ -1.55, -0.383333333333333 ], [ -1.55, -0.316666666666667 ], [ -1.583333333333333, -0.316666666666667 ], [ -1.583333333333333, -0.25 ], [ -1.65, -0.25 ], [ -1.65, -0.216666666666667 ], [ -1.716666666666667, -0.216666666666667 ] ], [ [ -1.783333333333333, -0.383333333333333 ], [ -1.783333333333333, -0.45 ], [ -1.816666666666666, -0.45 ], [ -1.816666666666666, -0.783333333333333 ], [ -1.783333333333333, -0.783333333333333 ], [ -1.783333333333333, -0.85 ], [ -1.65, -0.85 ], [ -1.65, -0.816666666666667 ], [ -1.616666666666667, -0.816666666666667 ], [ -1.616666666666667, -0.75 ], [ -1.583333333333333, -0.75 ], [ -1.583333333333333, -0.45 ], [ -1.616666666666667, -0.45 ], [ -1.616666666666667, -0.383333333333333 ], [ -1.65, -0.383333333333333 ], [ -1.65, -0.35 ], [ -1.716666666666667, -0.35 ], [ -1.716666666666667, -0.383333333333333 ], [ -1.75, -0.383333333333333 ], [ -1.783333333333333, -0.383333333333333 ] ] ] } }, +{ "type": "Feature", "properties": { "DN": -3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.716666666666667, -0.116666666666667 ], [ -1.716666666666667, -0.15 ], [ -1.75, -0.15 ], [ -1.783333333333333, -0.15 ], [ -1.783333333333333, -0.183333333333334 ], [ -1.816666666666666, -0.183333333333334 ], [ -1.816666666666666, -0.216666666666667 ], [ -1.85, -0.216666666666667 ], [ -1.85, -0.283333333333333 ], [ -1.883333333333333, -0.283333333333333 ], [ -1.883333333333333, -0.383333333333333 ], [ -1.916666666666667, -0.383333333333333 ], [ -1.916666666666667, -0.516666666666667 ], [ -1.95, -0.516666666666667 ], [ -1.95, -0.85 ], [ -1.916666666666667, -0.85 ], [ -1.916666666666667, -0.983333333333333 ], [ -1.883333333333333, -0.983333333333333 ], [ -1.883333333333333, -1.05 ], [ -1.85, -1.05 ], [ -1.85, -1.083333333333333 ], [ -1.816666666666666, -1.083333333333333 ], [ -1.816666666666666, -1.116666666666666 ], [ -1.783333333333333, -1.116666666666666 ], [ -1.783333333333333, -1.15 ], [ -1.716666666666667, -1.15 ], [ -1.716666666666667, -1.183333333333334 ], [ -1.683333333333333, -1.183333333333334 ], [ -1.683333333333333, -1.15 ], [ -1.65, -1.15 ], [ -1.616666666666667, -1.15 ], [ -1.616666666666667, -1.116666666666666 ], [ -1.583333333333333, -1.116666666666666 ], [ -1.583333333333333, -1.083333333333333 ], [ -1.55, -1.083333333333333 ], [ -1.55, -1.05 ], [ -1.516666666666667, -1.05 ], [ -1.516666666666667, -0.983333333333333 ], [ -1.483333333333333, -0.983333333333333 ], [ -1.483333333333333, -0.916666666666667 ], [ -1.45, -0.916666666666667 ], [ -1.45, -0.75 ], [ -1.416666666666667, -0.75 ], [ -1.416666666666667, -0.483333333333333 ], [ -1.45, -0.483333333333333 ], [ -1.45, -0.35 ], [ -1.483333333333333, -0.35 ], [ -1.483333333333333, -0.25 ], [ -1.516666666666667, -0.25 ], [ -1.516666666666667, -0.216666666666667 ], [ -1.55, -0.216666666666667 ], [ -1.55, -0.183333333333334 ], [ -1.583333333333333, -0.183333333333334 ], [ -1.583333333333333, -0.15 ], [ -1.616666666666667, -0.15 ], [ -1.616666666666667, -0.116666666666667 ], [ -1.716666666666667, -0.116666666666667 ] ], [ [ -1.516666666666667, -0.683333333333333 ], [ -1.516666666666667, -0.85 ], [ -1.55, -0.85 ], [ -1.55, -0.916666666666667 ], [ -1.583333333333333, -0.916666666666667 ], [ -1.583333333333333, -0.95 ], [ -1.616666666666667, -0.95 ], [ -1.616666666666667, -0.983333333333333 ], [ -1.65, -0.983333333333333 ], [ -1.65, -1.016666666666667 ], [ -1.783333333333333, -1.016666666666667 ], [ -1.783333333333333, -0.983333333333333 ], [ -1.816666666666666, -0.983333333333333 ], [ -1.816666666666666, -0.916666666666667 ], [ -1.85, -0.916666666666667 ], [ -1.85, -0.85 ], [ -1.883333333333333, -0.85 ], [ -1.883333333333333, -0.45 ], [ -1.85, -0.45 ], [ -1.85, -0.35 ], [ -1.816666666666666, -0.35 ], [ -1.816666666666666, -0.283333333333333 ], [ -1.783333333333333, -0.283333333333333 ], [ -1.783333333333333, -0.25 ], [ -1.75, -0.25 ], [ -1.716666666666667, -0.25 ], [ -1.716666666666667, -0.216666666666667 ], [ -1.65, -0.216666666666667 ], [ -1.65, -0.25 ], [ -1.583333333333333, -0.25 ], [ -1.583333333333333, -0.316666666666667 ], [ -1.55, -0.316666666666667 ], [ -1.55, -0.383333333333333 ], [ -1.516666666666667, -0.383333333333333 ], [ -1.516666666666667, -0.55 ], [ -1.483333333333333, -0.55 ], [ -1.483333333333333, -0.683333333333333 ], [ -1.516666666666667, -0.683333333333333 ] ] ] } }, +{ "type": "Feature", "properties": { "DN": 3 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.383333333333333, 2.55 ], [ -2.383333333333333, 2.516666666666667 ], [ -2.416666666666667, 2.516666666666667 ], [ -2.483333333333333, 2.516666666666667 ], [ -2.483333333333333, 2.483333333333333 ], [ -2.516666666666667, 2.483333333333333 ], [ -2.55, 2.483333333333333 ], [ -2.55, 2.45 ], [ -2.583333333333333, 2.45 ], [ -2.583333333333333, 2.416666666666667 ], [ -2.616666666666667, 2.416666666666667 ], [ -2.65, 2.416666666666667 ], [ -2.65, 2.383333333333333 ], [ -2.683333333333334, 2.383333333333333 ], [ -2.683333333333334, 2.35 ], [ -2.716666666666667, 2.35 ], [ -2.716666666666667, 2.316666666666666 ], [ -2.75, 2.316666666666666 ], [ -2.75, 2.283333333333333 ], [ -2.783333333333333, 2.283333333333333 ], [ -2.783333333333333, 2.25 ], [ -2.816666666666666, 2.25 ], [ -2.816666666666666, 2.183333333333333 ], [ -2.85, 2.183333333333333 ], [ -2.85, 2.15 ], [ -2.883333333333333, 2.15 ], [ -2.883333333333333, 2.083333333333333 ], [ -2.916666666666667, 2.083333333333333 ], [ -2.916666666666667, 2.05 ], [ -2.95, 2.05 ], [ -2.95, 1.983333333333333 ], [ -2.983333333333333, 1.983333333333333 ], [ -2.983333333333333, 1.916666666666667 ], [ -3.016666666666667, 1.916666666666667 ], [ -3.016666666666667, 1.85 ], [ -3.05, 1.85 ], [ -3.05, 1.75 ], [ -3.083333333333333, 1.75 ], [ -3.083333333333333, 1.65 ], [ -3.116666666666667, 1.65 ], [ -3.116666666666667, 1.55 ], [ -3.15, 1.55 ], [ -3.15, 1.45 ], [ -3.183333333333333, 1.45 ], [ -3.183333333333333, 1.283333333333333 ], [ -3.216666666666667, 1.283333333333333 ], [ -3.216666666666667, 1.116666666666667 ], [ -3.25, 1.116666666666667 ], [ -3.25, 0.783333333333333 ], [ -3.283333333333333, 0.783333333333333 ], [ -3.283333333333333, 0.216666666666667 ], [ -3.25, 0.216666666666667 ], [ -3.25, -0.083333333333333 ], [ -3.216666666666667, -0.083333333333333 ], [ -3.216666666666667, -0.25 ], [ -3.183333333333333, -0.25 ], [ -3.183333333333333, -0.416666666666667 ], [ -3.15, -0.416666666666667 ], [ -3.15, -0.516666666666667 ], [ -3.116666666666667, -0.516666666666667 ], [ -3.116666666666667, -0.616666666666667 ], [ -3.083333333333333, -0.616666666666667 ], [ -3.083333333333333, -0.716666666666667 ], [ -3.05, -0.716666666666667 ], [ -3.05, -0.816666666666667 ], [ -3.016666666666667, -0.816666666666667 ], [ -3.016666666666667, -0.883333333333333 ], [ -2.983333333333333, -0.883333333333333 ], [ -2.983333333333333, -0.95 ], [ -2.95, -0.95 ], [ -2.95, -1.016666666666667 ], [ -2.916666666666667, -1.016666666666667 ], [ -2.916666666666667, -1.05 ], [ -2.883333333333333, -1.05 ], [ -2.883333333333333, -1.116666666666666 ], [ -2.85, -1.116666666666666 ], [ -2.85, -1.15 ], [ -2.816666666666666, -1.15 ], [ -2.816666666666666, -1.216666666666667 ], [ -2.783333333333333, -1.216666666666667 ], [ -2.783333333333333, -1.25 ], [ -2.75, -1.25 ], [ -2.75, -1.283333333333333 ], [ -2.716666666666667, -1.283333333333333 ], [ -2.716666666666667, -1.316666666666666 ], [ -2.683333333333334, -1.316666666666666 ], [ -2.683333333333334, -1.35 ], [ -2.616666666666667, -1.35 ], [ -2.616666666666667, -1.383333333333334 ], [ -2.55, -1.383333333333334 ], [ -2.55, -1.416666666666667 ], [ -2.383333333333333, -1.416666666666667 ], [ -2.383333333333333, -1.383333333333334 ], [ -2.35, -1.383333333333334 ], [ -2.35, -1.35 ], [ -2.316666666666666, -1.35 ], [ -2.316666666666666, -1.316666666666666 ], [ -2.283333333333333, -1.316666666666666 ], [ -2.283333333333333, -1.216666666666667 ], [ -2.25, -1.216666666666667 ], [ -2.25, -1.05 ], [ -2.216666666666667, -1.05 ], [ -2.216666666666667, -0.816666666666667 ], [ -2.183333333333334, -0.816666666666667 ], [ -2.183333333333334, -0.583333333333333 ], [ -2.15, -0.583333333333333 ], [ -2.15, -0.45 ], [ -2.116666666666667, -0.45 ], [ -2.116666666666667, -0.316666666666667 ], [ -2.083333333333333, -0.316666666666667 ], [ -2.083333333333333, -0.216666666666667 ], [ -2.05, -0.216666666666667 ], [ -2.05, -0.116666666666667 ], [ -2.016666666666667, -0.116666666666667 ], [ -2.016666666666667, -0.05 ], [ -1.983333333333333, -0.05 ], [ -1.983333333333333, 0.016666666666667 ], [ -1.95, 0.016666666666667 ], [ -1.95, 0.083333333333333 ], [ -1.916666666666667, 0.083333333333333 ], [ -1.916666666666667, 0.116666666666667 ], [ -1.883333333333333, 0.116666666666667 ], [ -1.883333333333333, 0.183333333333333 ], [ -1.85, 0.183333333333333 ], [ -1.85, 0.216666666666667 ], [ -1.816666666666666, 0.216666666666667 ], [ -1.816666666666666, 0.25 ], [ -1.783333333333333, 0.25 ], [ -1.783333333333333, 0.283333333333333 ], [ -1.75, 0.283333333333333 ], [ -1.75, 0.316666666666666 ], [ -1.716666666666667, 0.316666666666666 ], [ -1.683333333333333, 0.316666666666666 ], [ -1.683333333333333, 0.35 ], [ -1.65, 0.35 ], [ -1.65, 0.383333333333333 ], [ -1.616666666666667, 0.383333333333333 ], [ -1.583333333333333, 0.383333333333333 ], [ -1.583333333333333, 0.416666666666667 ], [ -1.55, 0.416666666666667 ], [ -1.516666666666667, 0.416666666666667 ], [ -1.516666666666667, 0.45 ], [ -1.483333333333333, 0.45 ], [ -1.45, 0.45 ], [ -1.45, 0.483333333333333 ], [ -1.416666666666667, 0.483333333333333 ], [ -1.416666666666667, 0.516666666666667 ], [ -1.383333333333333, 0.516666666666667 ], [ -1.383333333333333, 0.583333333333333 ], [ -1.35, 0.583333333333333 ], [ -1.35, 0.65 ], [ -1.316666666666666, 0.65 ], [ -1.316666666666666, 0.916666666666667 ], [ -1.283333333333333, 0.916666666666667 ], [ -1.283333333333333, 0.95 ], [ -1.316666666666666, 0.95 ], [ -1.316666666666666, 1.283333333333333 ], [ -1.35, 1.283333333333333 ], [ -1.35, 1.45 ], [ -1.383333333333333, 1.45 ], [ -1.383333333333333, 1.55 ], [ -1.416666666666667, 1.55 ], [ -1.416666666666667, 1.683333333333333 ], [ -1.45, 1.683333333333333 ], [ -1.45, 1.75 ], [ -1.483333333333333, 1.75 ], [ -1.483333333333333, 1.85 ], [ -1.516666666666667, 1.85 ], [ -1.516666666666667, 1.916666666666667 ], [ -1.55, 1.916666666666667 ], [ -1.55, 1.983333333333333 ], [ -1.583333333333333, 1.983333333333333 ], [ -1.583333333333333, 2.05 ], [ -1.616666666666667, 2.05 ], [ -1.616666666666667, 2.116666666666667 ], [ -1.65, 2.116666666666667 ], [ -1.65, 2.15 ], [ -1.683333333333333, 2.15 ], [ -1.683333333333333, 2.183333333333333 ], [ -1.716666666666667, 2.183333333333333 ], [ -1.716666666666667, 2.25 ], [ -1.75, 2.25 ], [ -1.75, 2.283333333333333 ], [ -1.783333333333333, 2.283333333333333 ], [ -1.783333333333333, 2.316666666666666 ], [ -1.816666666666666, 2.316666666666666 ], [ -1.816666666666666, 2.35 ], [ -1.85, 2.35 ], [ -1.85, 2.383333333333333 ], [ -1.883333333333333, 2.383333333333333 ], [ -1.883333333333333, 2.416666666666667 ], [ -1.95, 2.416666666666667 ], [ -1.95, 2.45 ], [ -1.983333333333333, 2.45 ], [ -1.983333333333333, 2.483333333333333 ], [ -2.05, 2.483333333333333 ], [ -2.05, 2.516666666666667 ], [ -2.15, 2.516666666666667 ], [ -2.15, 2.55 ], [ -2.383333333333333, 2.55 ] ], [ [ -1.516666666666667, 0.683333333333333 ], [ -1.516666666666667, 0.616666666666667 ], [ -1.55, 0.616666666666667 ], [ -1.55, 0.583333333333333 ], [ -1.583333333333333, 0.583333333333333 ], [ -1.583333333333333, 0.55 ], [ -1.616666666666667, 0.55 ], [ -1.616666666666667, 0.516666666666667 ], [ -1.65, 0.516666666666667 ], [ -1.65, 0.483333333333333 ], [ -1.683333333333333, 0.483333333333333 ], [ -1.683333333333333, 0.45 ], [ -1.716666666666667, 0.45 ], [ -1.716666666666667, 0.416666666666667 ], [ -1.75, 0.416666666666667 ], [ -1.75, 0.383333333333333 ], [ -1.783333333333333, 0.383333333333333 ], [ -1.783333333333333, 0.35 ], [ -1.816666666666666, 0.35 ], [ -1.816666666666666, 0.316666666666666 ], [ -1.85, 0.316666666666666 ], [ -1.85, 0.25 ], [ -1.883333333333333, 0.25 ], [ -1.883333333333333, 0.216666666666667 ], [ -1.916666666666667, 0.216666666666667 ], [ -1.916666666666667, 0.15 ], [ -1.95, 0.15 ], [ -1.95, 0.116666666666667 ], [ -1.983333333333333, 0.116666666666667 ], [ -1.983333333333333, 0.05 ], [ -2.016666666666667, 0.05 ], [ -2.016666666666667, -0.016666666666667 ], [ -2.05, -0.016666666666667 ], [ -2.05, -0.083333333333333 ], [ -2.083333333333333, -0.083333333333333 ], [ -2.083333333333333, -0.183333333333334 ], [ -2.116666666666667, -0.183333333333334 ], [ -2.116666666666667, -0.283333333333333 ], [ -2.15, -0.283333333333333 ], [ -2.15, -0.383333333333333 ], [ -2.183333333333334, -0.383333333333333 ], [ -2.183333333333334, -0.516666666666667 ], [ -2.216666666666667, -0.516666666666667 ], [ -2.216666666666667, -0.65 ], [ -2.25, -0.65 ], [ -2.25, -0.783333333333333 ], [ -2.283333333333333, -0.783333333333333 ], [ -2.283333333333333, -0.916666666666667 ], [ -2.316666666666666, -0.916666666666667 ], [ -2.316666666666666, -0.983333333333333 ], [ -2.35, -0.983333333333333 ], [ -2.35, -1.05 ], [ -2.383333333333333, -1.05 ], [ -2.383333333333333, -1.083333333333333 ], [ -2.416666666666667, -1.083333333333333 ], [ -2.416666666666667, -1.116666666666666 ], [ -2.583333333333333, -1.116666666666666 ], [ -2.583333333333333, -1.083333333333333 ], [ -2.616666666666667, -1.083333333333333 ], [ -2.616666666666667, -1.05 ], [ -2.683333333333334, -1.05 ], [ -2.683333333333334, -1.016666666666667 ], [ -2.716666666666667, -1.016666666666667 ], [ -2.716666666666667, -0.983333333333333 ], [ -2.75, -0.983333333333333 ], [ -2.75, -0.916666666666667 ], [ -2.783333333333333, -0.916666666666667 ], [ -2.783333333333333, -0.883333333333333 ], [ -2.816666666666666, -0.883333333333333 ], [ -2.816666666666666, -0.816666666666667 ], [ -2.85, -0.816666666666667 ], [ -2.85, -0.783333333333333 ], [ -2.883333333333333, -0.783333333333333 ], [ -2.883333333333333, -0.716666666666667 ], [ -2.916666666666667, -0.716666666666667 ], [ -2.916666666666667, -0.65 ], [ -2.95, -0.65 ], [ -2.95, -0.55 ], [ -2.983333333333333, -0.55 ], [ -2.983333333333333, -0.45 ], [ -3.016666666666667, -0.45 ], [ -3.016666666666667, -0.35 ], [ -3.05, -0.35 ], [ -3.05, -0.216666666666667 ], [ -3.083333333333333, -0.216666666666667 ], [ -3.083333333333333, -0.05 ], [ -3.116666666666667, -0.05 ], [ -3.116666666666667, 0.216666666666667 ], [ -3.15, 0.216666666666667 ], [ -3.15, 0.816666666666666 ], [ -3.116666666666667, 0.816666666666666 ], [ -3.116666666666667, 1.083333333333333 ], [ -3.083333333333333, 1.083333333333333 ], [ -3.083333333333333, 1.25 ], [ -3.05, 1.25 ], [ -3.05, 1.383333333333333 ], [ -3.016666666666667, 1.383333333333333 ], [ -3.016666666666667, 1.483333333333333 ], [ -2.983333333333333, 1.483333333333333 ], [ -2.983333333333333, 1.583333333333333 ], [ -2.95, 1.583333333333333 ], [ -2.95, 1.65 ], [ -2.916666666666667, 1.65 ], [ -2.916666666666667, 1.75 ], [ -2.883333333333333, 1.75 ], [ -2.883333333333333, 1.816666666666667 ], [ -2.85, 1.816666666666667 ], [ -2.85, 1.85 ], [ -2.816666666666666, 1.85 ], [ -2.816666666666666, 1.916666666666667 ], [ -2.783333333333333, 1.916666666666667 ], [ -2.783333333333333, 1.95 ], [ -2.75, 1.95 ], [ -2.75, 2.016666666666667 ], [ -2.716666666666667, 2.016666666666667 ], [ -2.716666666666667, 2.05 ], [ -2.683333333333334, 2.05 ], [ -2.683333333333334, 2.083333333333333 ], [ -2.65, 2.083333333333333 ], [ -2.65, 2.116666666666667 ], [ -2.616666666666667, 2.116666666666667 ], [ -2.616666666666667, 2.15 ], [ -2.583333333333333, 2.15 ], [ -2.583333333333333, 2.183333333333333 ], [ -2.55, 2.183333333333333 ], [ -2.516666666666667, 2.183333333333333 ], [ -2.516666666666667, 2.216666666666667 ], [ -2.483333333333333, 2.216666666666667 ], [ -2.45, 2.216666666666667 ], [ -2.45, 2.25 ], [ -2.416666666666667, 2.25 ], [ -2.383333333333333, 2.25 ], [ -2.383333333333333, 2.283333333333333 ], [ -2.15, 2.283333333333333 ], [ -2.15, 2.25 ], [ -2.05, 2.25 ], [ -2.05, 2.216666666666667 ], [ -2.016666666666667, 2.216666666666667 ], [ -2.016666666666667, 2.183333333333333 ], [ -1.95, 2.183333333333333 ], [ -1.95, 2.15 ], [ -1.916666666666667, 2.15 ], [ -1.916666666666667, 2.116666666666667 ], [ -1.883333333333333, 2.116666666666667 ], [ -1.883333333333333, 2.083333333333333 ], [ -1.85, 2.083333333333333 ], [ -1.85, 2.05 ], [ -1.816666666666666, 2.05 ], [ -1.816666666666666, 2.016666666666667 ], [ -1.783333333333333, 2.016666666666667 ], [ -1.783333333333333, 1.983333333333333 ], [ -1.75, 1.983333333333333 ], [ -1.75, 1.916666666666667 ], [ -1.716666666666667, 1.916666666666667 ], [ -1.716666666666667, 1.883333333333333 ], [ -1.683333333333333, 1.883333333333333 ], [ -1.683333333333333, 1.816666666666667 ], [ -1.65, 1.816666666666667 ], [ -1.65, 1.75 ], [ -1.616666666666667, 1.75 ], [ -1.616666666666667, 1.683333333333333 ], [ -1.583333333333333, 1.683333333333333 ], [ -1.583333333333333, 1.583333333333333 ], [ -1.55, 1.583333333333333 ], [ -1.55, 1.483333333333333 ], [ -1.516666666666667, 1.483333333333333 ], [ -1.516666666666667, 1.35 ], [ -1.483333333333333, 1.35 ], [ -1.483333333333333, 1.183333333333333 ], [ -1.45, 1.183333333333333 ], [ -1.45, 0.783333333333333 ], [ -1.483333333333333, 0.783333333333333 ], [ -1.483333333333333, 0.683333333333333 ], [ -1.516666666666667, 0.683333333333333 ] ] ] } }, +{ "type": "Feature", "properties": { "DN": -2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.683333333333333, -0.016666666666667 ], [ -1.683333333333333, -0.05 ], [ -1.716666666666667, -0.05 ], [ -1.75, -0.05 ], [ -1.75, -0.083333333333333 ], [ -1.783333333333333, -0.083333333333333 ], [ -1.816666666666666, -0.083333333333333 ], [ -1.816666666666666, -0.15 ], [ -1.85, -0.15 ], [ -1.85, -0.183333333333334 ], [ -1.883333333333333, -0.183333333333334 ], [ -1.883333333333333, -0.25 ], [ -1.916666666666667, -0.25 ], [ -1.916666666666667, -0.316666666666667 ], [ -1.95, -0.316666666666667 ], [ -1.95, -0.45 ], [ -1.983333333333333, -0.45 ], [ -1.983333333333333, -0.983333333333333 ], [ -1.95, -0.983333333333333 ], [ -1.95, -1.083333333333333 ], [ -1.916666666666667, -1.083333333333333 ], [ -1.916666666666667, -1.15 ], [ -1.883333333333333, -1.15 ], [ -1.883333333333333, -1.216666666666667 ], [ -1.85, -1.216666666666667 ], [ -1.85, -1.25 ], [ -1.816666666666666, -1.25 ], [ -1.816666666666666, -1.283333333333333 ], [ -1.783333333333333, -1.283333333333333 ], [ -1.783333333333333, -1.316666666666666 ], [ -1.583333333333333, -1.316666666666666 ], [ -1.583333333333333, -1.283333333333333 ], [ -1.55, -1.283333333333333 ], [ -1.55, -1.25 ], [ -1.516666666666667, -1.25 ], [ -1.516666666666667, -1.216666666666667 ], [ -1.483333333333333, -1.216666666666667 ], [ -1.483333333333333, -1.15 ], [ -1.45, -1.15 ], [ -1.45, -1.083333333333333 ], [ -1.416666666666667, -1.083333333333333 ], [ -1.416666666666667, -1.016666666666667 ], [ -1.383333333333333, -1.016666666666667 ], [ -1.383333333333333, -0.85 ], [ -1.35, -0.85 ], [ -1.35, -0.416666666666667 ], [ -1.383333333333333, -0.416666666666667 ], [ -1.383333333333333, -0.283333333333333 ], [ -1.416666666666667, -0.283333333333333 ], [ -1.416666666666667, -0.216666666666667 ], [ -1.45, -0.216666666666667 ], [ -1.45, -0.15 ], [ -1.483333333333333, -0.15 ], [ -1.483333333333333, -0.116666666666667 ], [ -1.516666666666667, -0.116666666666667 ], [ -1.516666666666667, -0.083333333333333 ], [ -1.55, -0.083333333333333 ], [ -1.55, -0.05 ], [ -1.616666666666667, -0.05 ], [ -1.616666666666667, -0.016666666666667 ], [ -1.683333333333333, -0.016666666666667 ] ], [ [ -1.583333333333333, -1.083333333333333 ], [ -1.583333333333333, -1.116666666666666 ], [ -1.616666666666667, -1.116666666666666 ], [ -1.616666666666667, -1.15 ], [ -1.65, -1.15 ], [ -1.683333333333333, -1.15 ], [ -1.683333333333333, -1.183333333333334 ], [ -1.716666666666667, -1.183333333333334 ], [ -1.716666666666667, -1.15 ], [ -1.783333333333333, -1.15 ], [ -1.783333333333333, -1.116666666666666 ], [ -1.816666666666666, -1.116666666666666 ], [ -1.816666666666666, -1.083333333333333 ], [ -1.85, -1.083333333333333 ], [ -1.85, -1.05 ], [ -1.883333333333333, -1.05 ], [ -1.883333333333333, -0.983333333333333 ], [ -1.916666666666667, -0.983333333333333 ], [ -1.916666666666667, -0.85 ], [ -1.95, -0.85 ], [ -1.95, -0.516666666666667 ], [ -1.916666666666667, -0.516666666666667 ], [ -1.916666666666667, -0.383333333333333 ], [ -1.883333333333333, -0.383333333333333 ], [ -1.883333333333333, -0.283333333333333 ], [ -1.85, -0.283333333333333 ], [ -1.85, -0.216666666666667 ], [ -1.816666666666666, -0.216666666666667 ], [ -1.816666666666666, -0.183333333333334 ], [ -1.783333333333333, -0.183333333333334 ], [ -1.783333333333333, -0.15 ], [ -1.75, -0.15 ], [ -1.716666666666667, -0.15 ], [ -1.716666666666667, -0.116666666666667 ], [ -1.616666666666667, -0.116666666666667 ], [ -1.616666666666667, -0.15 ], [ -1.583333333333333, -0.15 ], [ -1.583333333333333, -0.183333333333334 ], [ -1.55, -0.183333333333334 ], [ -1.55, -0.216666666666667 ], [ -1.516666666666667, -0.216666666666667 ], [ -1.516666666666667, -0.25 ], [ -1.483333333333333, -0.25 ], [ -1.483333333333333, -0.35 ], [ -1.45, -0.35 ], [ -1.45, -0.483333333333333 ], [ -1.416666666666667, -0.483333333333333 ], [ -1.416666666666667, -0.75 ], [ -1.45, -0.75 ], [ -1.45, -0.916666666666667 ], [ -1.483333333333333, -0.916666666666667 ], [ -1.483333333333333, -0.983333333333333 ], [ -1.516666666666667, -0.983333333333333 ], [ -1.516666666666667, -1.05 ], [ -1.55, -1.05 ], [ -1.55, -1.083333333333333 ], [ -1.583333333333333, -1.083333333333333 ] ] ] } }, +{ "type": "Feature", "properties": { "DN": -1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -1.75, 0.05 ], [ -1.75, 0.016666666666667 ], [ -1.783333333333333, 0.016666666666667 ], [ -1.783333333333333, -0.016666666666667 ], [ -1.816666666666666, -0.016666666666667 ], [ -1.816666666666666, -0.05 ], [ -1.85, -0.05 ], [ -1.85, -0.083333333333333 ], [ -1.883333333333333, -0.083333333333333 ], [ -1.883333333333333, -0.15 ], [ -1.916666666666667, -0.15 ], [ -1.916666666666667, -0.216666666666667 ], [ -1.95, -0.216666666666667 ], [ -1.95, -0.283333333333333 ], [ -1.983333333333333, -0.283333333333333 ], [ -1.983333333333333, -0.416666666666667 ], [ -2.016666666666667, -0.416666666666667 ], [ -2.016666666666667, -0.616666666666667 ], [ -2.05, -0.616666666666667 ], [ -2.05, -0.916666666666667 ], [ -2.016666666666667, -0.916666666666667 ], [ -2.016666666666667, -1.116666666666666 ], [ -1.983333333333333, -1.116666666666666 ], [ -1.983333333333333, -1.216666666666667 ], [ -1.95, -1.216666666666667 ], [ -1.95, -1.283333333333333 ], [ -1.916666666666667, -1.283333333333333 ], [ -1.916666666666667, -1.35 ], [ -1.883333333333333, -1.35 ], [ -1.883333333333333, -1.416666666666667 ], [ -1.85, -1.416666666666667 ], [ -1.85, -1.45 ], [ -1.816666666666666, -1.45 ], [ -1.816666666666666, -1.483333333333333 ], [ -1.783333333333333, -1.483333333333333 ], [ -1.783333333333333, -1.516666666666667 ], [ -1.55, -1.516666666666667 ], [ -1.55, -1.483333333333333 ], [ -1.516666666666667, -1.483333333333333 ], [ -1.516666666666667, -1.45 ], [ -1.483333333333333, -1.45 ], [ -1.483333333333333, -1.416666666666667 ], [ -1.45, -1.416666666666667 ], [ -1.45, -1.383333333333334 ], [ -1.416666666666667, -1.383333333333334 ], [ -1.416666666666667, -1.35 ], [ -1.383333333333333, -1.35 ], [ -1.383333333333333, -1.283333333333333 ], [ -1.35, -1.283333333333333 ], [ -1.35, -1.216666666666667 ], [ -1.316666666666666, -1.216666666666667 ], [ -1.316666666666666, -1.116666666666666 ], [ -1.283333333333333, -1.116666666666666 ], [ -1.283333333333333, -0.95 ], [ -1.25, -0.95 ], [ -1.25, -0.45 ], [ -1.283333333333333, -0.45 ], [ -1.283333333333333, -0.316666666666667 ], [ -1.316666666666666, -0.316666666666667 ], [ -1.316666666666666, -0.216666666666667 ], [ -1.35, -0.216666666666667 ], [ -1.35, -0.15 ], [ -1.383333333333333, -0.15 ], [ -1.383333333333333, -0.083333333333333 ], [ -1.416666666666667, -0.083333333333333 ], [ -1.416666666666667, -0.05 ], [ -1.45, -0.05 ], [ -1.45, -0.016666666666667 ], [ -1.483333333333333, -0.016666666666667 ], [ -1.483333333333333, 0.016666666666667 ], [ -1.516666666666667, 0.016666666666667 ], [ -1.516666666666667, 0.05 ], [ -1.75, 0.05 ] ], [ [ -1.55, -1.25 ], [ -1.55, -1.283333333333333 ], [ -1.583333333333333, -1.283333333333333 ], [ -1.583333333333333, -1.316666666666666 ], [ -1.783333333333333, -1.316666666666666 ], [ -1.783333333333333, -1.283333333333333 ], [ -1.816666666666666, -1.283333333333333 ], [ -1.816666666666666, -1.25 ], [ -1.85, -1.25 ], [ -1.85, -1.216666666666667 ], [ -1.883333333333333, -1.216666666666667 ], [ -1.883333333333333, -1.15 ], [ -1.916666666666667, -1.15 ], [ -1.916666666666667, -1.083333333333333 ], [ -1.95, -1.083333333333333 ], [ -1.95, -0.983333333333333 ], [ -1.983333333333333, -0.983333333333333 ], [ -1.983333333333333, -0.45 ], [ -1.95, -0.45 ], [ -1.95, -0.316666666666667 ], [ -1.916666666666667, -0.316666666666667 ], [ -1.916666666666667, -0.25 ], [ -1.883333333333333, -0.25 ], [ -1.883333333333333, -0.183333333333334 ], [ -1.85, -0.183333333333334 ], [ -1.85, -0.15 ], [ -1.816666666666666, -0.15 ], [ -1.816666666666666, -0.083333333333333 ], [ -1.783333333333333, -0.083333333333333 ], [ -1.75, -0.083333333333333 ], [ -1.75, -0.05 ], [ -1.716666666666667, -0.05 ], [ -1.683333333333333, -0.05 ], [ -1.683333333333333, -0.016666666666667 ], [ -1.616666666666667, -0.016666666666667 ], [ -1.616666666666667, -0.05 ], [ -1.55, -0.05 ], [ -1.55, -0.083333333333333 ], [ -1.516666666666667, -0.083333333333333 ], [ -1.516666666666667, -0.116666666666667 ], [ -1.483333333333333, -0.116666666666667 ], [ -1.483333333333333, -0.15 ], [ -1.45, -0.15 ], [ -1.45, -0.216666666666667 ], [ -1.416666666666667, -0.216666666666667 ], [ -1.416666666666667, -0.283333333333333 ], [ -1.383333333333333, -0.283333333333333 ], [ -1.383333333333333, -0.416666666666667 ], [ -1.35, -0.416666666666667 ], [ -1.35, -0.85 ], [ -1.383333333333333, -0.85 ], [ -1.383333333333333, -1.016666666666667 ], [ -1.416666666666667, -1.016666666666667 ], [ -1.416666666666667, -1.083333333333333 ], [ -1.45, -1.083333333333333 ], [ -1.45, -1.15 ], [ -1.483333333333333, -1.15 ], [ -1.483333333333333, -1.216666666666667 ], [ -1.516666666666667, -1.216666666666667 ], [ -1.516666666666667, -1.25 ], [ -1.55, -1.25 ] ] ] } }, +{ "type": "Feature", "properties": { "DN": 2 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.416666666666667, 2.883333333333333 ], [ -2.416666666666667, 2.85 ], [ -2.45, 2.85 ], [ -2.516666666666667, 2.85 ], [ -2.516666666666667, 2.816666666666666 ], [ -2.55, 2.816666666666666 ], [ -2.583333333333333, 2.816666666666666 ], [ -2.583333333333333, 2.783333333333333 ], [ -2.616666666666667, 2.783333333333333 ], [ -2.65, 2.783333333333333 ], [ -2.65, 2.75 ], [ -2.683333333333334, 2.75 ], [ -2.683333333333334, 2.716666666666667 ], [ -2.716666666666667, 2.716666666666667 ], [ -2.716666666666667, 2.683333333333333 ], [ -2.75, 2.683333333333333 ], [ -2.75, 2.65 ], [ -2.783333333333333, 2.65 ], [ -2.783333333333333, 2.616666666666667 ], [ -2.816666666666666, 2.616666666666667 ], [ -2.816666666666666, 2.583333333333333 ], [ -2.85, 2.583333333333333 ], [ -2.85, 2.55 ], [ -2.883333333333333, 2.55 ], [ -2.883333333333333, 2.516666666666667 ], [ -2.916666666666667, 2.516666666666667 ], [ -2.916666666666667, 2.483333333333333 ], [ -2.95, 2.483333333333333 ], [ -2.95, 2.416666666666667 ], [ -2.983333333333333, 2.416666666666667 ], [ -2.983333333333333, 2.383333333333333 ], [ -3.016666666666667, 2.383333333333333 ], [ -3.016666666666667, 2.316666666666666 ], [ -3.05, 2.316666666666666 ], [ -3.05, 2.25 ], [ -3.083333333333333, 2.25 ], [ -3.083333333333333, 2.183333333333333 ], [ -3.116666666666667, 2.183333333333333 ], [ -3.116666666666667, 2.116666666666667 ], [ -3.15, 2.116666666666667 ], [ -3.15, 2.05 ], [ -3.183333333333333, 2.05 ], [ -3.183333333333333, 1.983333333333333 ], [ -3.216666666666667, 1.983333333333333 ], [ -3.216666666666667, 1.883333333333333 ], [ -3.25, 1.883333333333333 ], [ -3.25, 1.783333333333333 ], [ -3.283333333333333, 1.783333333333333 ], [ -3.283333333333333, 1.65 ], [ -3.316666666666666, 1.65 ], [ -3.316666666666666, 1.55 ], [ -3.35, 1.55 ], [ -3.35, 1.383333333333333 ], [ -3.383333333333333, 1.383333333333333 ], [ -3.383333333333333, 1.183333333333333 ], [ -3.416666666666667, 1.183333333333333 ], [ -3.416666666666667, 0.883333333333333 ], [ -3.45, 0.883333333333333 ], [ -3.45, 0.15 ], [ -3.416666666666667, 0.15 ], [ -3.416666666666667, -0.15 ], [ -3.383333333333333, -0.15 ], [ -3.383333333333333, -0.35 ], [ -3.35, -0.35 ], [ -3.35, -0.516666666666667 ], [ -3.316666666666666, -0.516666666666667 ], [ -3.316666666666666, -0.65 ], [ -3.283333333333333, -0.65 ], [ -3.283333333333333, -0.75 ], [ -3.25, -0.75 ], [ -3.25, -0.85 ], [ -3.216666666666667, -0.85 ], [ -3.216666666666667, -0.95 ], [ -3.183333333333333, -0.95 ], [ -3.183333333333333, -1.016666666666667 ], [ -3.15, -1.016666666666667 ], [ -3.15, -1.083333333333333 ], [ -3.116666666666667, -1.083333333333333 ], [ -3.116666666666667, -1.183333333333334 ], [ -3.083333333333333, -1.183333333333334 ], [ -3.083333333333333, -1.216666666666667 ], [ -3.05, -1.216666666666667 ], [ -3.05, -1.283333333333333 ], [ -3.016666666666667, -1.283333333333333 ], [ -3.016666666666667, -1.35 ], [ -2.983333333333333, -1.35 ], [ -2.983333333333333, -1.383333333333334 ], [ -2.95, -1.383333333333334 ], [ -2.95, -1.45 ], [ -2.916666666666667, -1.45 ], [ -2.916666666666667, -1.483333333333333 ], [ -2.883333333333333, -1.483333333333333 ], [ -2.883333333333333, -1.516666666666667 ], [ -2.85, -1.516666666666667 ], [ -2.85, -1.583333333333333 ], [ -2.816666666666666, -1.583333333333333 ], [ -2.816666666666666, -1.616666666666666 ], [ -2.783333333333333, -1.616666666666666 ], [ -2.783333333333333, -1.65 ], [ -2.716666666666667, -1.65 ], [ -2.716666666666667, -1.683333333333334 ], [ -2.683333333333334, -1.683333333333334 ], [ -2.683333333333334, -1.716666666666667 ], [ -2.65, -1.716666666666667 ], [ -2.65, -1.75 ], [ -2.583333333333333, -1.75 ], [ -2.583333333333333, -1.783333333333333 ], [ -2.483333333333333, -1.783333333333333 ], [ -2.483333333333333, -1.816666666666666 ], [ -2.35, -1.816666666666666 ], [ -2.35, -1.783333333333333 ], [ -2.316666666666666, -1.783333333333333 ], [ -2.283333333333333, -1.783333333333333 ], [ -2.283333333333333, -1.75 ], [ -2.25, -1.75 ], [ -2.25, -1.716666666666667 ], [ -2.216666666666667, -1.716666666666667 ], [ -2.216666666666667, -1.683333333333334 ], [ -2.183333333333334, -1.683333333333334 ], [ -2.183333333333334, -1.583333333333333 ], [ -2.15, -1.583333333333333 ], [ -2.15, -0.716666666666667 ], [ -2.116666666666667, -0.716666666666667 ], [ -2.116666666666667, -0.483333333333333 ], [ -2.083333333333333, -0.483333333333333 ], [ -2.083333333333333, -0.35 ], [ -2.05, -0.35 ], [ -2.05, -0.25 ], [ -2.016666666666667, -0.25 ], [ -2.016666666666667, -0.15 ], [ -1.983333333333333, -0.15 ], [ -1.983333333333333, -0.083333333333333 ], [ -1.95, -0.083333333333333 ], [ -1.95, -0.016666666666667 ], [ -1.916666666666667, -0.016666666666667 ], [ -1.916666666666667, 0.05 ], [ -1.883333333333333, 0.05 ], [ -1.883333333333333, 0.083333333333333 ], [ -1.85, 0.083333333333333 ], [ -1.85, 0.116666666666667 ], [ -1.816666666666666, 0.116666666666667 ], [ -1.816666666666666, 0.15 ], [ -1.783333333333333, 0.15 ], [ -1.783333333333333, 0.183333333333333 ], [ -1.75, 0.183333333333333 ], [ -1.75, 0.216666666666667 ], [ -1.716666666666667, 0.216666666666667 ], [ -1.683333333333333, 0.216666666666667 ], [ -1.683333333333333, 0.25 ], [ -1.65, 0.25 ], [ -1.616666666666667, 0.25 ], [ -1.616666666666667, 0.283333333333333 ], [ -1.283333333333333, 0.283333333333333 ], [ -1.25, 0.283333333333333 ], [ -1.25, 0.316666666666666 ], [ -1.216666666666667, 0.316666666666666 ], [ -1.216666666666667, 0.35 ], [ -1.183333333333333, 0.35 ], [ -1.183333333333333, 0.383333333333333 ], [ -1.15, 0.383333333333333 ], [ -1.15, 0.483333333333333 ], [ -1.116666666666667, 0.483333333333333 ], [ -1.116666666666667, 1.183333333333333 ], [ -1.15, 1.183333333333333 ], [ -1.15, 1.383333333333333 ], [ -1.183333333333333, 1.383333333333333 ], [ -1.183333333333333, 1.55 ], [ -1.216666666666667, 1.55 ], [ -1.216666666666667, 1.683333333333333 ], [ -1.25, 1.683333333333333 ], [ -1.25, 1.783333333333333 ], [ -1.283333333333333, 1.783333333333333 ], [ -1.283333333333333, 1.883333333333333 ], [ -1.316666666666666, 1.883333333333333 ], [ -1.316666666666666, 1.983333333333333 ], [ -1.35, 1.983333333333333 ], [ -1.35, 2.05 ], [ -1.383333333333333, 2.05 ], [ -1.383333333333333, 2.15 ], [ -1.416666666666667, 2.15 ], [ -1.416666666666667, 2.216666666666667 ], [ -1.45, 2.216666666666667 ], [ -1.45, 2.283333333333333 ], [ -1.483333333333333, 2.283333333333333 ], [ -1.483333333333333, 2.316666666666666 ], [ -1.516666666666667, 2.316666666666666 ], [ -1.516666666666667, 2.383333333333333 ], [ -1.55, 2.383333333333333 ], [ -1.55, 2.416666666666667 ], [ -1.583333333333333, 2.416666666666667 ], [ -1.583333333333333, 2.483333333333333 ], [ -1.616666666666667, 2.483333333333333 ], [ -1.616666666666667, 2.516666666666667 ], [ -1.65, 2.516666666666667 ], [ -1.65, 2.55 ], [ -1.683333333333333, 2.55 ], [ -1.683333333333333, 2.616666666666667 ], [ -1.716666666666667, 2.616666666666667 ], [ -1.716666666666667, 2.65 ], [ -1.75, 2.65 ], [ -1.75, 2.683333333333333 ], [ -1.816666666666666, 2.683333333333333 ], [ -1.816666666666666, 2.716666666666667 ], [ -1.85, 2.716666666666667 ], [ -1.85, 2.75 ], [ -1.883333333333333, 2.75 ], [ -1.883333333333333, 2.783333333333333 ], [ -1.95, 2.783333333333333 ], [ -1.95, 2.816666666666666 ], [ -2.016666666666667, 2.816666666666666 ], [ -2.016666666666667, 2.85 ], [ -2.116666666666667, 2.85 ], [ -2.116666666666667, 2.883333333333333 ], [ -2.416666666666667, 2.883333333333333 ] ], [ [ -1.383333333333333, 0.583333333333333 ], [ -1.383333333333333, 0.516666666666667 ], [ -1.416666666666667, 0.516666666666667 ], [ -1.416666666666667, 0.483333333333333 ], [ -1.45, 0.483333333333333 ], [ -1.45, 0.45 ], [ -1.483333333333333, 0.45 ], [ -1.516666666666667, 0.45 ], [ -1.516666666666667, 0.416666666666667 ], [ -1.55, 0.416666666666667 ], [ -1.583333333333333, 0.416666666666667 ], [ -1.583333333333333, 0.383333333333333 ], [ -1.616666666666667, 0.383333333333333 ], [ -1.65, 0.383333333333333 ], [ -1.65, 0.35 ], [ -1.683333333333333, 0.35 ], [ -1.683333333333333, 0.316666666666666 ], [ -1.716666666666667, 0.316666666666666 ], [ -1.75, 0.316666666666666 ], [ -1.75, 0.283333333333333 ], [ -1.783333333333333, 0.283333333333333 ], [ -1.783333333333333, 0.25 ], [ -1.816666666666666, 0.25 ], [ -1.816666666666666, 0.216666666666667 ], [ -1.85, 0.216666666666667 ], [ -1.85, 0.183333333333333 ], [ -1.883333333333333, 0.183333333333333 ], [ -1.883333333333333, 0.116666666666667 ], [ -1.916666666666667, 0.116666666666667 ], [ -1.916666666666667, 0.083333333333333 ], [ -1.95, 0.083333333333333 ], [ -1.95, 0.016666666666667 ], [ -1.983333333333333, 0.016666666666667 ], [ -1.983333333333333, -0.05 ], [ -2.016666666666667, -0.05 ], [ -2.016666666666667, -0.116666666666667 ], [ -2.05, -0.116666666666667 ], [ -2.05, -0.216666666666667 ], [ -2.083333333333333, -0.216666666666667 ], [ -2.083333333333333, -0.316666666666667 ], [ -2.116666666666667, -0.316666666666667 ], [ -2.116666666666667, -0.45 ], [ -2.15, -0.45 ], [ -2.15, -0.583333333333333 ], [ -2.183333333333334, -0.583333333333333 ], [ -2.183333333333334, -0.816666666666667 ], [ -2.216666666666667, -0.816666666666667 ], [ -2.216666666666667, -1.05 ], [ -2.25, -1.05 ], [ -2.25, -1.216666666666667 ], [ -2.283333333333333, -1.216666666666667 ], [ -2.283333333333333, -1.316666666666666 ], [ -2.316666666666666, -1.316666666666666 ], [ -2.316666666666666, -1.35 ], [ -2.35, -1.35 ], [ -2.35, -1.383333333333334 ], [ -2.383333333333333, -1.383333333333334 ], [ -2.383333333333333, -1.416666666666667 ], [ -2.55, -1.416666666666667 ], [ -2.55, -1.383333333333334 ], [ -2.616666666666667, -1.383333333333334 ], [ -2.616666666666667, -1.35 ], [ -2.683333333333334, -1.35 ], [ -2.683333333333334, -1.316666666666666 ], [ -2.716666666666667, -1.316666666666666 ], [ -2.716666666666667, -1.283333333333333 ], [ -2.75, -1.283333333333333 ], [ -2.75, -1.25 ], [ -2.783333333333333, -1.25 ], [ -2.783333333333333, -1.216666666666667 ], [ -2.816666666666666, -1.216666666666667 ], [ -2.816666666666666, -1.15 ], [ -2.85, -1.15 ], [ -2.85, -1.116666666666666 ], [ -2.883333333333333, -1.116666666666666 ], [ -2.883333333333333, -1.05 ], [ -2.916666666666667, -1.05 ], [ -2.916666666666667, -1.016666666666667 ], [ -2.95, -1.016666666666667 ], [ -2.95, -0.95 ], [ -2.983333333333333, -0.95 ], [ -2.983333333333333, -0.883333333333333 ], [ -3.016666666666667, -0.883333333333333 ], [ -3.016666666666667, -0.816666666666667 ], [ -3.05, -0.816666666666667 ], [ -3.05, -0.716666666666667 ], [ -3.083333333333333, -0.716666666666667 ], [ -3.083333333333333, -0.616666666666667 ], [ -3.116666666666667, -0.616666666666667 ], [ -3.116666666666667, -0.516666666666667 ], [ -3.15, -0.516666666666667 ], [ -3.15, -0.416666666666667 ], [ -3.183333333333333, -0.416666666666667 ], [ -3.183333333333333, -0.25 ], [ -3.216666666666667, -0.25 ], [ -3.216666666666667, -0.083333333333333 ], [ -3.25, -0.083333333333333 ], [ -3.25, 0.216666666666667 ], [ -3.283333333333333, 0.216666666666667 ], [ -3.283333333333333, 0.783333333333333 ], [ -3.25, 0.783333333333333 ], [ -3.25, 1.116666666666667 ], [ -3.216666666666667, 1.116666666666667 ], [ -3.216666666666667, 1.283333333333333 ], [ -3.183333333333333, 1.283333333333333 ], [ -3.183333333333333, 1.45 ], [ -3.15, 1.45 ], [ -3.15, 1.55 ], [ -3.116666666666667, 1.55 ], [ -3.116666666666667, 1.65 ], [ -3.083333333333333, 1.65 ], [ -3.083333333333333, 1.75 ], [ -3.05, 1.75 ], [ -3.05, 1.85 ], [ -3.016666666666667, 1.85 ], [ -3.016666666666667, 1.916666666666667 ], [ -2.983333333333333, 1.916666666666667 ], [ -2.983333333333333, 1.983333333333333 ], [ -2.95, 1.983333333333333 ], [ -2.95, 2.05 ], [ -2.916666666666667, 2.05 ], [ -2.916666666666667, 2.083333333333333 ], [ -2.883333333333333, 2.083333333333333 ], [ -2.883333333333333, 2.15 ], [ -2.85, 2.15 ], [ -2.85, 2.183333333333333 ], [ -2.816666666666666, 2.183333333333333 ], [ -2.816666666666666, 2.25 ], [ -2.783333333333333, 2.25 ], [ -2.783333333333333, 2.283333333333333 ], [ -2.75, 2.283333333333333 ], [ -2.75, 2.316666666666666 ], [ -2.716666666666667, 2.316666666666666 ], [ -2.716666666666667, 2.35 ], [ -2.683333333333334, 2.35 ], [ -2.683333333333334, 2.383333333333333 ], [ -2.65, 2.383333333333333 ], [ -2.65, 2.416666666666667 ], [ -2.616666666666667, 2.416666666666667 ], [ -2.583333333333333, 2.416666666666667 ], [ -2.583333333333333, 2.45 ], [ -2.55, 2.45 ], [ -2.55, 2.483333333333333 ], [ -2.516666666666667, 2.483333333333333 ], [ -2.483333333333333, 2.483333333333333 ], [ -2.483333333333333, 2.516666666666667 ], [ -2.416666666666667, 2.516666666666667 ], [ -2.383333333333333, 2.516666666666667 ], [ -2.383333333333333, 2.55 ], [ -2.15, 2.55 ], [ -2.15, 2.516666666666667 ], [ -2.05, 2.516666666666667 ], [ -2.05, 2.483333333333333 ], [ -1.983333333333333, 2.483333333333333 ], [ -1.983333333333333, 2.45 ], [ -1.95, 2.45 ], [ -1.95, 2.416666666666667 ], [ -1.883333333333333, 2.416666666666667 ], [ -1.883333333333333, 2.383333333333333 ], [ -1.85, 2.383333333333333 ], [ -1.85, 2.35 ], [ -1.816666666666666, 2.35 ], [ -1.816666666666666, 2.316666666666666 ], [ -1.783333333333333, 2.316666666666666 ], [ -1.783333333333333, 2.283333333333333 ], [ -1.75, 2.283333333333333 ], [ -1.75, 2.25 ], [ -1.716666666666667, 2.25 ], [ -1.716666666666667, 2.183333333333333 ], [ -1.683333333333333, 2.183333333333333 ], [ -1.683333333333333, 2.15 ], [ -1.65, 2.15 ], [ -1.65, 2.116666666666667 ], [ -1.616666666666667, 2.116666666666667 ], [ -1.616666666666667, 2.05 ], [ -1.583333333333333, 2.05 ], [ -1.583333333333333, 1.983333333333333 ], [ -1.55, 1.983333333333333 ], [ -1.55, 1.916666666666667 ], [ -1.516666666666667, 1.916666666666667 ], [ -1.516666666666667, 1.85 ], [ -1.483333333333333, 1.85 ], [ -1.483333333333333, 1.75 ], [ -1.45, 1.75 ], [ -1.45, 1.683333333333333 ], [ -1.416666666666667, 1.683333333333333 ], [ -1.416666666666667, 1.55 ], [ -1.383333333333333, 1.55 ], [ -1.383333333333333, 1.45 ], [ -1.35, 1.45 ], [ -1.35, 1.283333333333333 ], [ -1.316666666666666, 1.283333333333333 ], [ -1.316666666666666, 0.95 ], [ -1.283333333333333, 0.95 ], [ -1.283333333333333, 0.916666666666667 ], [ -1.316666666666666, 0.916666666666667 ], [ -1.316666666666666, 0.65 ], [ -1.35, 0.65 ], [ -1.35, 0.583333333333333 ], [ -1.383333333333333, 0.583333333333333 ] ] ] } }, +{ "type": "Feature", "properties": { "DN": 1 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -3.083333333333333, 3.016666666666667 ], [ -3.083333333333333, 2.983333333333333 ], [ -3.116666666666667, 2.983333333333333 ], [ -3.116666666666667, 2.95 ], [ -3.15, 2.95 ], [ -3.15, 2.883333333333333 ], [ -3.183333333333333, 2.883333333333333 ], [ -3.183333333333333, 2.85 ], [ -3.216666666666667, 2.85 ], [ -3.216666666666667, 2.783333333333333 ], [ -3.25, 2.783333333333333 ], [ -3.25, 2.716666666666667 ], [ -3.283333333333333, 2.716666666666667 ], [ -3.283333333333333, 2.65 ], [ -3.316666666666666, 2.65 ], [ -3.316666666666666, 2.583333333333333 ], [ -3.35, 2.583333333333333 ], [ -3.35, 2.516666666666667 ], [ -3.383333333333333, 2.516666666666667 ], [ -3.383333333333333, 2.45 ], [ -3.416666666666667, 2.45 ], [ -3.416666666666667, 2.35 ], [ -3.45, 2.35 ], [ -3.45, 2.283333333333333 ], [ -3.483333333333333, 2.283333333333333 ], [ -3.483333333333333, 2.183333333333333 ], [ -3.516666666666667, 2.183333333333333 ], [ -3.516666666666667, 2.083333333333333 ], [ -3.55, 2.083333333333333 ], [ -3.55, 1.95 ], [ -3.583333333333333, 1.95 ], [ -3.583333333333333, 1.816666666666667 ], [ -3.616666666666667, 1.816666666666667 ], [ -3.616666666666667, 1.683333333333333 ], [ -3.65, 1.683333333333333 ], [ -3.65, 1.516666666666667 ], [ -3.683333333333333, 1.516666666666667 ], [ -3.683333333333333, 1.283333333333333 ], [ -3.716666666666667, 1.283333333333333 ], [ -3.716666666666667, 0.983333333333333 ], [ -3.75, 0.983333333333333 ], [ -3.75, 0.05 ], [ -3.716666666666667, 0.05 ], [ -3.716666666666667, -0.283333333333333 ], [ -3.683333333333333, -0.283333333333333 ], [ -3.683333333333333, -0.483333333333333 ], [ -3.65, -0.483333333333333 ], [ -3.65, -0.65 ], [ -3.616666666666667, -0.65 ], [ -3.616666666666667, -0.816666666666667 ], [ -3.583333333333333, -0.816666666666667 ], [ -3.583333333333333, -0.916666666666667 ], [ -3.55, -0.916666666666667 ], [ -3.55, -1.05 ], [ -3.516666666666667, -1.05 ], [ -3.516666666666667, -1.15 ], [ -3.483333333333333, -1.15 ], [ -3.483333333333333, -1.25 ], [ -3.45, -1.25 ], [ -3.45, -1.316666666666666 ], [ -3.416666666666667, -1.316666666666666 ], [ -3.416666666666667, -1.416666666666667 ], [ -3.383333333333333, -1.416666666666667 ], [ -3.383333333333333, -1.483333333333333 ], [ -3.35, -1.483333333333333 ], [ -3.35, -1.55 ], [ -3.316666666666666, -1.55 ], [ -3.316666666666666, -1.616666666666666 ], [ -3.283333333333333, -1.616666666666666 ], [ -3.283333333333333, -1.683333333333334 ], [ -3.25, -1.683333333333334 ], [ -3.25, -1.75 ], [ -3.216666666666667, -1.75 ], [ -3.216666666666667, -1.816666666666666 ], [ -3.183333333333333, -1.816666666666666 ], [ -3.183333333333333, -1.85 ], [ -3.15, -1.85 ], [ -3.15, -1.916666666666667 ], [ -3.116666666666667, -1.916666666666667 ], [ -3.116666666666667, -1.95 ], [ -3.083333333333333, -1.95 ], [ -3.083333333333333, -1.983333333333333 ], [ -3.05, -1.983333333333333 ], [ -3.05, -2.05 ], [ -3.016666666666667, -2.05 ], [ -3.016666666666667, -2.083333333333333 ], [ -2.983333333333333, -2.083333333333333 ], [ -2.983333333333333, -2.116666666666666 ], [ -2.95, -2.116666666666666 ], [ -2.95, -2.15 ], [ -2.916666666666667, -2.15 ], [ -2.916666666666667, -2.183333333333334 ], [ -2.883333333333333, -2.183333333333334 ], [ -2.883333333333333, -2.216666666666667 ], [ -2.85, -2.216666666666667 ], [ -2.85, -2.25 ], [ -2.816666666666666, -2.25 ], [ -2.816666666666666, -2.283333333333333 ], [ -2.75, -2.283333333333333 ], [ -2.75, -2.316666666666666 ], [ -2.716666666666667, -2.316666666666666 ], [ -2.716666666666667, -2.35 ], [ -2.65, -2.35 ], [ -2.65, -2.383333333333334 ], [ -2.583333333333333, -2.383333333333334 ], [ -2.583333333333333, -2.416666666666667 ], [ -2.483333333333333, -2.416666666666667 ], [ -2.483333333333333, -2.45 ], [ -2.116666666666667, -2.45 ], [ -2.116666666666667, -2.416666666666667 ], [ -2.083333333333333, -2.416666666666667 ], [ -2.05, -2.416666666666667 ], [ -2.05, -2.383333333333334 ], [ -2.016666666666667, -2.383333333333334 ], [ -1.983333333333333, -2.383333333333334 ], [ -1.983333333333333, -2.35 ], [ -1.95, -2.35 ], [ -1.95, -2.316666666666666 ], [ -1.916666666666667, -2.316666666666666 ], [ -1.916666666666667, -2.283333333333333 ], [ -1.883333333333333, -2.283333333333333 ], [ -1.883333333333333, -2.25 ], [ -1.85, -2.25 ], [ -1.85, -2.183333333333334 ], [ -1.816666666666666, -2.183333333333334 ], [ -1.816666666666666, -2.083333333333333 ], [ -1.783333333333333, -2.083333333333333 ], [ -1.783333333333333, -2.016666666666667 ], [ -1.816666666666666, -2.016666666666667 ], [ -1.816666666666666, -1.883333333333334 ], [ -1.85, -1.883333333333334 ], [ -1.85, -1.783333333333333 ], [ -1.883333333333333, -1.783333333333333 ], [ -1.883333333333333, -1.716666666666667 ], [ -1.916666666666667, -1.716666666666667 ], [ -1.916666666666667, -1.65 ], [ -1.95, -1.65 ], [ -1.95, -1.55 ], [ -1.983333333333333, -1.55 ], [ -1.983333333333333, -1.45 ], [ -2.016666666666667, -1.45 ], [ -2.016666666666667, -1.316666666666666 ], [ -2.05, -1.316666666666666 ], [ -2.05, -1.15 ], [ -2.083333333333333, -1.15 ], [ -2.083333333333333, -0.55 ], [ -2.05, -0.55 ], [ -2.05, -0.383333333333333 ], [ -2.016666666666667, -0.383333333333333 ], [ -2.016666666666667, -0.25 ], [ -1.983333333333333, -0.25 ], [ -1.983333333333333, -0.183333333333334 ], [ -1.95, -0.183333333333334 ], [ -1.95, -0.116666666666667 ], [ -1.916666666666667, -0.116666666666667 ], [ -1.916666666666667, -0.05 ], [ -1.883333333333333, -0.05 ], [ -1.883333333333333, -0.016666666666667 ], [ -1.85, -0.016666666666667 ], [ -1.85, 0.05 ], [ -1.816666666666666, 0.05 ], [ -1.816666666666666, 0.083333333333333 ], [ -1.783333333333333, 0.083333333333333 ], [ -1.75, 0.083333333333333 ], [ -1.75, 0.116666666666667 ], [ -1.716666666666667, 0.116666666666667 ], [ -1.716666666666667, 0.15 ], [ -1.45, 0.15 ], [ -1.45, 0.116666666666667 ], [ -1.416666666666667, 0.116666666666667 ], [ -1.416666666666667, 0.083333333333333 ], [ -1.35, 0.083333333333333 ], [ -1.35, 0.05 ], [ -1.316666666666666, 0.05 ], [ -1.316666666666666, -0.016666666666667 ], [ -1.283333333333333, -0.016666666666667 ], [ -1.283333333333333, -0.05 ], [ -1.25, -0.05 ], [ -1.25, -0.083333333333333 ], [ -1.216666666666667, -0.083333333333333 ], [ -1.216666666666667, -0.15 ], [ -1.183333333333333, -0.15 ], [ -1.183333333333333, -0.183333333333334 ], [ -1.15, -0.183333333333334 ], [ -1.15, -0.25 ], [ -1.116666666666667, -0.25 ], [ -1.116666666666667, -0.316666666666667 ], [ -1.083333333333333, -0.316666666666667 ], [ -1.083333333333333, -0.35 ], [ -1.05, -0.35 ], [ -1.05, -0.416666666666667 ], [ -0.95, -0.416666666666667 ], [ -0.95, -0.383333333333333 ], [ -0.916666666666667, -0.383333333333333 ], [ -0.916666666666667, -0.316666666666667 ], [ -0.883333333333333, -0.316666666666667 ], [ -0.883333333333333, -0.216666666666667 ], [ -0.85, -0.216666666666667 ], [ -0.85, -0.083333333333333 ], [ -0.816666666666666, -0.083333333333333 ], [ -0.816666666666666, 0.183333333333333 ], [ -0.783333333333333, 0.183333333333333 ], [ -0.783333333333333, 1.016666666666667 ], [ -0.816666666666666, 1.016666666666667 ], [ -0.816666666666666, 1.316666666666667 ], [ -0.85, 1.316666666666667 ], [ -0.85, 1.55 ], [ -0.883333333333333, 1.55 ], [ -0.883333333333333, 1.716666666666667 ], [ -0.916666666666667, 1.716666666666667 ], [ -0.916666666666667, 1.85 ], [ -0.95, 1.85 ], [ -0.95, 1.983333333333333 ], [ -0.983333333333333, 1.983333333333333 ], [ -0.983333333333333, 2.083333333333333 ], [ -1.016666666666667, 2.083333333333333 ], [ -1.016666666666667, 2.183333333333333 ], [ -1.05, 2.183333333333333 ], [ -1.05, 2.283333333333333 ], [ -1.083333333333333, 2.283333333333333 ], [ -1.083333333333333, 2.383333333333333 ], [ -1.116666666666667, 2.383333333333333 ], [ -1.116666666666667, 2.45 ], [ -1.15, 2.45 ], [ -1.15, 2.516666666666667 ], [ -1.183333333333333, 2.516666666666667 ], [ -1.183333333333333, 2.583333333333333 ], [ -1.216666666666667, 2.583333333333333 ], [ -1.216666666666667, 2.65 ], [ -1.25, 2.65 ], [ -1.25, 2.716666666666667 ], [ -1.283333333333333, 2.716666666666667 ], [ -1.283333333333333, 2.783333333333333 ], [ -1.316666666666666, 2.783333333333333 ], [ -1.316666666666666, 2.85 ], [ -1.35, 2.85 ], [ -1.35, 2.883333333333333 ], [ -1.383333333333333, 2.883333333333333 ], [ -1.383333333333333, 2.95 ], [ -1.416666666666667, 2.95 ], [ -1.416666666666667, 2.983333333333333 ], [ -1.45, 2.983333333333333 ], [ -1.45, 3.016666666666667 ], [ -3.083333333333333, 3.016666666666667 ] ], [ [ -1.683333333333333, 0.25 ], [ -1.65, 0.25 ], [ -1.616666666666667, 0.25 ], [ -1.616666666666667, 0.283333333333333 ], [ -1.283333333333333, 0.283333333333333 ], [ -1.25, 0.283333333333333 ], [ -1.25, 0.316666666666666 ], [ -1.216666666666667, 0.316666666666666 ], [ -1.216666666666667, 0.35 ], [ -1.183333333333333, 0.35 ], [ -1.183333333333333, 0.383333333333333 ], [ -1.15, 0.383333333333333 ], [ -1.15, 0.483333333333333 ], [ -1.116666666666667, 0.483333333333333 ], [ -1.116666666666667, 1.183333333333333 ], [ -1.15, 1.183333333333333 ], [ -1.15, 1.383333333333333 ], [ -1.183333333333333, 1.383333333333333 ], [ -1.183333333333333, 1.55 ], [ -1.216666666666667, 1.55 ], [ -1.216666666666667, 1.683333333333333 ], [ -1.25, 1.683333333333333 ], [ -1.25, 1.783333333333333 ], [ -1.283333333333333, 1.783333333333333 ], [ -1.283333333333333, 1.883333333333333 ], [ -1.316666666666666, 1.883333333333333 ], [ -1.316666666666666, 1.983333333333333 ], [ -1.35, 1.983333333333333 ], [ -1.35, 2.05 ], [ -1.383333333333333, 2.05 ], [ -1.383333333333333, 2.15 ], [ -1.416666666666667, 2.15 ], [ -1.416666666666667, 2.216666666666667 ], [ -1.45, 2.216666666666667 ], [ -1.45, 2.283333333333333 ], [ -1.483333333333333, 2.283333333333333 ], [ -1.483333333333333, 2.316666666666666 ], [ -1.516666666666667, 2.316666666666666 ], [ -1.516666666666667, 2.383333333333333 ], [ -1.55, 2.383333333333333 ], [ -1.55, 2.416666666666667 ], [ -1.583333333333333, 2.416666666666667 ], [ -1.583333333333333, 2.483333333333333 ], [ -1.616666666666667, 2.483333333333333 ], [ -1.616666666666667, 2.516666666666667 ], [ -1.65, 2.516666666666667 ], [ -1.65, 2.55 ], [ -1.683333333333333, 2.55 ], [ -1.683333333333333, 2.616666666666667 ], [ -1.716666666666667, 2.616666666666667 ], [ -1.716666666666667, 2.65 ], [ -1.75, 2.65 ], [ -1.75, 2.683333333333333 ], [ -1.816666666666666, 2.683333333333333 ], [ -1.816666666666666, 2.716666666666667 ], [ -1.85, 2.716666666666667 ], [ -1.85, 2.75 ], [ -1.883333333333333, 2.75 ], [ -1.883333333333333, 2.783333333333333 ], [ -1.95, 2.783333333333333 ], [ -1.95, 2.816666666666666 ], [ -2.016666666666667, 2.816666666666666 ], [ -2.016666666666667, 2.85 ], [ -2.116666666666667, 2.85 ], [ -2.116666666666667, 2.883333333333333 ], [ -2.416666666666667, 2.883333333333333 ], [ -2.416666666666667, 2.85 ], [ -2.45, 2.85 ], [ -2.516666666666667, 2.85 ], [ -2.516666666666667, 2.816666666666666 ], [ -2.55, 2.816666666666666 ], [ -2.583333333333333, 2.816666666666666 ], [ -2.583333333333333, 2.783333333333333 ], [ -2.616666666666667, 2.783333333333333 ], [ -2.65, 2.783333333333333 ], [ -2.65, 2.75 ], [ -2.683333333333334, 2.75 ], [ -2.683333333333334, 2.716666666666667 ], [ -2.716666666666667, 2.716666666666667 ], [ -2.716666666666667, 2.683333333333333 ], [ -2.75, 2.683333333333333 ], [ -2.75, 2.65 ], [ -2.783333333333333, 2.65 ], [ -2.783333333333333, 2.616666666666667 ], [ -2.816666666666666, 2.616666666666667 ], [ -2.816666666666666, 2.583333333333333 ], [ -2.85, 2.583333333333333 ], [ -2.85, 2.55 ], [ -2.883333333333333, 2.55 ], [ -2.883333333333333, 2.516666666666667 ], [ -2.916666666666667, 2.516666666666667 ], [ -2.916666666666667, 2.483333333333333 ], [ -2.95, 2.483333333333333 ], [ -2.95, 2.416666666666667 ], [ -2.983333333333333, 2.416666666666667 ], [ -2.983333333333333, 2.383333333333333 ], [ -3.016666666666667, 2.383333333333333 ], [ -3.016666666666667, 2.316666666666666 ], [ -3.05, 2.316666666666666 ], [ -3.05, 2.25 ], [ -3.083333333333333, 2.25 ], [ -3.083333333333333, 2.183333333333333 ], [ -3.116666666666667, 2.183333333333333 ], [ -3.116666666666667, 2.116666666666667 ], [ -3.15, 2.116666666666667 ], [ -3.15, 2.05 ], [ -3.183333333333333, 2.05 ], [ -3.183333333333333, 1.983333333333333 ], [ -3.216666666666667, 1.983333333333333 ], [ -3.216666666666667, 1.883333333333333 ], [ -3.25, 1.883333333333333 ], [ -3.25, 1.783333333333333 ], [ -3.283333333333333, 1.783333333333333 ], [ -3.283333333333333, 1.65 ], [ -3.316666666666666, 1.65 ], [ -3.316666666666666, 1.55 ], [ -3.35, 1.55 ], [ -3.35, 1.383333333333333 ], [ -3.383333333333333, 1.383333333333333 ], [ -3.383333333333333, 1.183333333333333 ], [ -3.416666666666667, 1.183333333333333 ], [ -3.416666666666667, 0.883333333333333 ], [ -3.45, 0.883333333333333 ], [ -3.45, 0.15 ], [ -3.416666666666667, 0.15 ], [ -3.416666666666667, -0.15 ], [ -3.383333333333333, -0.15 ], [ -3.383333333333333, -0.35 ], [ -3.35, -0.35 ], [ -3.35, -0.516666666666667 ], [ -3.316666666666666, -0.516666666666667 ], [ -3.316666666666666, -0.65 ], [ -3.283333333333333, -0.65 ], [ -3.283333333333333, -0.75 ], [ -3.25, -0.75 ], [ -3.25, -0.85 ], [ -3.216666666666667, -0.85 ], [ -3.216666666666667, -0.95 ], [ -3.183333333333333, -0.95 ], [ -3.183333333333333, -1.016666666666667 ], [ -3.15, -1.016666666666667 ], [ -3.15, -1.083333333333333 ], [ -3.116666666666667, -1.083333333333333 ], [ -3.116666666666667, -1.183333333333334 ], [ -3.083333333333333, -1.183333333333334 ], [ -3.083333333333333, -1.216666666666667 ], [ -3.05, -1.216666666666667 ], [ -3.05, -1.283333333333333 ], [ -3.016666666666667, -1.283333333333333 ], [ -3.016666666666667, -1.35 ], [ -2.983333333333333, -1.35 ], [ -2.983333333333333, -1.383333333333334 ], [ -2.95, -1.383333333333334 ], [ -2.95, -1.45 ], [ -2.916666666666667, -1.45 ], [ -2.916666666666667, -1.483333333333333 ], [ -2.883333333333333, -1.483333333333333 ], [ -2.883333333333333, -1.516666666666667 ], [ -2.85, -1.516666666666667 ], [ -2.85, -1.583333333333333 ], [ -2.816666666666666, -1.583333333333333 ], [ -2.816666666666666, -1.616666666666666 ], [ -2.783333333333333, -1.616666666666666 ], [ -2.783333333333333, -1.65 ], [ -2.716666666666667, -1.65 ], [ -2.716666666666667, -1.683333333333334 ], [ -2.683333333333334, -1.683333333333334 ], [ -2.683333333333334, -1.716666666666667 ], [ -2.65, -1.716666666666667 ], [ -2.65, -1.75 ], [ -2.583333333333333, -1.75 ], [ -2.583333333333333, -1.783333333333333 ], [ -2.483333333333333, -1.783333333333333 ], [ -2.483333333333333, -1.816666666666666 ], [ -2.35, -1.816666666666666 ], [ -2.35, -1.783333333333333 ], [ -2.316666666666666, -1.783333333333333 ], [ -2.283333333333333, -1.783333333333333 ], [ -2.283333333333333, -1.75 ], [ -2.25, -1.75 ], [ -2.25, -1.716666666666667 ], [ -2.216666666666667, -1.716666666666667 ], [ -2.216666666666667, -1.683333333333334 ], [ -2.183333333333334, -1.683333333333334 ], [ -2.183333333333334, -1.583333333333333 ], [ -2.15, -1.583333333333333 ], [ -2.15, -0.716666666666667 ], [ -2.116666666666667, -0.716666666666667 ], [ -2.116666666666667, -0.483333333333333 ], [ -2.083333333333333, -0.483333333333333 ], [ -2.083333333333333, -0.35 ], [ -2.05, -0.35 ], [ -2.05, -0.25 ], [ -2.016666666666667, -0.25 ], [ -2.016666666666667, -0.15 ], [ -1.983333333333333, -0.15 ], [ -1.983333333333333, -0.083333333333333 ], [ -1.95, -0.083333333333333 ], [ -1.95, -0.016666666666667 ], [ -1.916666666666667, -0.016666666666667 ], [ -1.916666666666667, 0.05 ], [ -1.883333333333333, 0.05 ], [ -1.883333333333333, 0.083333333333333 ], [ -1.85, 0.083333333333333 ], [ -1.85, 0.116666666666667 ], [ -1.816666666666666, 0.116666666666667 ], [ -1.816666666666666, 0.15 ], [ -1.783333333333333, 0.15 ], [ -1.783333333333333, 0.183333333333333 ], [ -1.75, 0.183333333333333 ], [ -1.75, 0.216666666666667 ], [ -1.716666666666667, 0.216666666666667 ], [ -1.683333333333333, 0.216666666666667 ], [ -1.683333333333333, 0.25 ] ] ] } }, +{ "type": "Feature", "properties": { "DN": 0 }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -4.016666666666667, 3.016666666666667 ], [ -4.016666666666667, -2.983333333333333 ], [ -0.016666666666667, -2.983333333333333 ], [ -0.016666666666667, 3.016666666666667 ], [ -1.45, 3.016666666666667 ], [ -1.45, 2.983333333333333 ], [ -1.416666666666667, 2.983333333333333 ], [ -1.416666666666667, 2.95 ], [ -1.383333333333333, 2.95 ], [ -1.383333333333333, 2.883333333333333 ], [ -1.35, 2.883333333333333 ], [ -1.35, 2.85 ], [ -1.316666666666666, 2.85 ], [ -1.316666666666666, 2.783333333333333 ], [ -1.283333333333333, 2.783333333333333 ], [ -1.283333333333333, 2.716666666666667 ], [ -1.25, 2.716666666666667 ], [ -1.25, 2.65 ], [ -1.216666666666667, 2.65 ], [ -1.216666666666667, 2.583333333333333 ], [ -1.183333333333333, 2.583333333333333 ], [ -1.183333333333333, 2.516666666666667 ], [ -1.15, 2.516666666666667 ], [ -1.15, 2.45 ], [ -1.116666666666667, 2.45 ], [ -1.116666666666667, 2.383333333333333 ], [ -1.083333333333333, 2.383333333333333 ], [ -1.083333333333333, 2.283333333333333 ], [ -1.05, 2.283333333333333 ], [ -1.05, 2.183333333333333 ], [ -1.016666666666667, 2.183333333333333 ], [ -1.016666666666667, 2.083333333333333 ], [ -0.983333333333333, 2.083333333333333 ], [ -0.983333333333333, 1.983333333333333 ], [ -0.95, 1.983333333333333 ], [ -0.95, 1.85 ], [ -0.916666666666667, 1.85 ], [ -0.916666666666667, 1.716666666666667 ], [ -0.883333333333333, 1.716666666666667 ], [ -0.883333333333333, 1.55 ], [ -0.85, 1.55 ], [ -0.85, 1.316666666666667 ], [ -0.816666666666666, 1.316666666666667 ], [ -0.816666666666666, 1.016666666666667 ], [ -0.783333333333333, 1.016666666666667 ], [ -0.783333333333333, 0.183333333333333 ], [ -0.816666666666666, 0.183333333333333 ], [ -0.816666666666666, -0.083333333333333 ], [ -0.85, -0.083333333333333 ], [ -0.85, -0.216666666666667 ], [ -0.883333333333333, -0.216666666666667 ], [ -0.883333333333333, -0.316666666666667 ], [ -0.916666666666667, -0.316666666666667 ], [ -0.916666666666667, -0.383333333333333 ], [ -0.95, -0.383333333333333 ], [ -0.95, -0.416666666666667 ], [ -1.05, -0.416666666666667 ], [ -1.05, -0.35 ], [ -1.083333333333333, -0.35 ], [ -1.083333333333333, -0.316666666666667 ], [ -1.116666666666667, -0.316666666666667 ], [ -1.116666666666667, -0.25 ], [ -1.15, -0.25 ], [ -1.15, -0.183333333333334 ], [ -1.183333333333333, -0.183333333333334 ], [ -1.183333333333333, -0.15 ], [ -1.216666666666667, -0.15 ], [ -1.216666666666667, -0.083333333333333 ], [ -1.25, -0.083333333333333 ], [ -1.25, -0.05 ], [ -1.283333333333333, -0.05 ], [ -1.283333333333333, -0.016666666666667 ], [ -1.316666666666666, -0.016666666666667 ], [ -1.316666666666666, 0.05 ], [ -1.35, 0.05 ], [ -1.35, 0.083333333333333 ], [ -1.416666666666667, 0.083333333333333 ], [ -1.416666666666667, 0.116666666666667 ], [ -1.45, 0.116666666666667 ], [ -1.45, 0.15 ], [ -1.716666666666667, 0.15 ], [ -1.716666666666667, 0.116666666666667 ], [ -1.75, 0.116666666666667 ], [ -1.75, 0.083333333333333 ], [ -1.783333333333333, 0.083333333333333 ], [ -1.816666666666666, 0.083333333333333 ], [ -1.816666666666666, 0.05 ], [ -1.85, 0.05 ], [ -1.85, -0.016666666666667 ], [ -1.883333333333333, -0.016666666666667 ], [ -1.883333333333333, -0.05 ], [ -1.916666666666667, -0.05 ], [ -1.916666666666667, -0.116666666666667 ], [ -1.95, -0.116666666666667 ], [ -1.95, -0.183333333333334 ], [ -1.983333333333333, -0.183333333333334 ], [ -1.983333333333333, -0.25 ], [ -2.016666666666667, -0.25 ], [ -2.016666666666667, -0.383333333333333 ], [ -2.05, -0.383333333333333 ], [ -2.05, -0.55 ], [ -2.083333333333333, -0.55 ], [ -2.083333333333333, -1.15 ], [ -2.05, -1.15 ], [ -2.05, -1.316666666666666 ], [ -2.016666666666667, -1.316666666666666 ], [ -2.016666666666667, -1.45 ], [ -1.983333333333333, -1.45 ], [ -1.983333333333333, -1.55 ], [ -1.95, -1.55 ], [ -1.95, -1.65 ], [ -1.916666666666667, -1.65 ], [ -1.916666666666667, -1.716666666666667 ], [ -1.883333333333333, -1.716666666666667 ], [ -1.883333333333333, -1.783333333333333 ], [ -1.85, -1.783333333333333 ], [ -1.85, -1.883333333333334 ], [ -1.816666666666666, -1.883333333333334 ], [ -1.816666666666666, -2.016666666666667 ], [ -1.783333333333333, -2.016666666666667 ], [ -1.783333333333333, -2.083333333333333 ], [ -1.816666666666666, -2.083333333333333 ], [ -1.816666666666666, -2.183333333333334 ], [ -1.85, -2.183333333333334 ], [ -1.85, -2.25 ], [ -1.883333333333333, -2.25 ], [ -1.883333333333333, -2.283333333333333 ], [ -1.916666666666667, -2.283333333333333 ], [ -1.916666666666667, -2.316666666666666 ], [ -1.95, -2.316666666666666 ], [ -1.95, -2.35 ], [ -1.983333333333333, -2.35 ], [ -1.983333333333333, -2.383333333333334 ], [ -2.016666666666667, -2.383333333333334 ], [ -2.05, -2.383333333333334 ], [ -2.05, -2.416666666666667 ], [ -2.083333333333333, -2.416666666666667 ], [ -2.116666666666667, -2.416666666666667 ], [ -2.116666666666667, -2.45 ], [ -2.483333333333333, -2.45 ], [ -2.483333333333333, -2.416666666666667 ], [ -2.583333333333333, -2.416666666666667 ], [ -2.583333333333333, -2.383333333333334 ], [ -2.65, -2.383333333333334 ], [ -2.65, -2.35 ], [ -2.716666666666667, -2.35 ], [ -2.716666666666667, -2.316666666666666 ], [ -2.75, -2.316666666666666 ], [ -2.75, -2.283333333333333 ], [ -2.816666666666666, -2.283333333333333 ], [ -2.816666666666666, -2.25 ], [ -2.85, -2.25 ], [ -2.85, -2.216666666666667 ], [ -2.883333333333333, -2.216666666666667 ], [ -2.883333333333333, -2.183333333333334 ], [ -2.916666666666667, -2.183333333333334 ], [ -2.916666666666667, -2.15 ], [ -2.95, -2.15 ], [ -2.95, -2.116666666666666 ], [ -2.983333333333333, -2.116666666666666 ], [ -2.983333333333333, -2.083333333333333 ], [ -3.016666666666667, -2.083333333333333 ], [ -3.016666666666667, -2.05 ], [ -3.05, -2.05 ], [ -3.05, -1.983333333333333 ], [ -3.083333333333333, -1.983333333333333 ], [ -3.083333333333333, -1.95 ], [ -3.116666666666667, -1.95 ], [ -3.116666666666667, -1.916666666666667 ], [ -3.15, -1.916666666666667 ], [ -3.15, -1.85 ], [ -3.183333333333333, -1.85 ], [ -3.183333333333333, -1.816666666666666 ], [ -3.216666666666667, -1.816666666666666 ], [ -3.216666666666667, -1.75 ], [ -3.25, -1.75 ], [ -3.25, -1.683333333333334 ], [ -3.283333333333333, -1.683333333333334 ], [ -3.283333333333333, -1.616666666666666 ], [ -3.316666666666666, -1.616666666666666 ], [ -3.316666666666666, -1.55 ], [ -3.35, -1.55 ], [ -3.35, -1.483333333333333 ], [ -3.383333333333333, -1.483333333333333 ], [ -3.383333333333333, -1.416666666666667 ], [ -3.416666666666667, -1.416666666666667 ], [ -3.416666666666667, -1.316666666666666 ], [ -3.45, -1.316666666666666 ], [ -3.45, -1.25 ], [ -3.483333333333333, -1.25 ], [ -3.483333333333333, -1.15 ], [ -3.516666666666667, -1.15 ], [ -3.516666666666667, -1.05 ], [ -3.55, -1.05 ], [ -3.55, -0.916666666666667 ], [ -3.583333333333333, -0.916666666666667 ], [ -3.583333333333333, -0.816666666666667 ], [ -3.616666666666667, -0.816666666666667 ], [ -3.616666666666667, -0.65 ], [ -3.65, -0.65 ], [ -3.65, -0.483333333333333 ], [ -3.683333333333333, -0.483333333333333 ], [ -3.683333333333333, -0.283333333333333 ], [ -3.716666666666667, -0.283333333333333 ], [ -3.716666666666667, 0.05 ], [ -3.75, 0.05 ], [ -3.75, 0.983333333333333 ], [ -3.716666666666667, 0.983333333333333 ], [ -3.716666666666667, 1.283333333333333 ], [ -3.683333333333333, 1.283333333333333 ], [ -3.683333333333333, 1.516666666666667 ], [ -3.65, 1.516666666666667 ], [ -3.65, 1.683333333333333 ], [ -3.616666666666667, 1.683333333333333 ], [ -3.616666666666667, 1.816666666666667 ], [ -3.583333333333333, 1.816666666666667 ], [ -3.583333333333333, 1.95 ], [ -3.55, 1.95 ], [ -3.55, 2.083333333333333 ], [ -3.516666666666667, 2.083333333333333 ], [ -3.516666666666667, 2.183333333333333 ], [ -3.483333333333333, 2.183333333333333 ], [ -3.483333333333333, 2.283333333333333 ], [ -3.45, 2.283333333333333 ], [ -3.45, 2.35 ], [ -3.416666666666667, 2.35 ], [ -3.416666666666667, 2.45 ], [ -3.383333333333333, 2.45 ], [ -3.383333333333333, 2.516666666666667 ], [ -3.35, 2.516666666666667 ], [ -3.35, 2.583333333333333 ], [ -3.316666666666666, 2.583333333333333 ], [ -3.316666666666666, 2.65 ], [ -3.283333333333333, 2.65 ], [ -3.283333333333333, 2.716666666666667 ], [ -3.25, 2.716666666666667 ], [ -3.25, 2.783333333333333 ], [ -3.216666666666667, 2.783333333333333 ], [ -3.216666666666667, 2.85 ], [ -3.183333333333333, 2.85 ], [ -3.183333333333333, 2.883333333333333 ], [ -3.15, 2.883333333333333 ], [ -3.15, 2.95 ], [ -3.116666666666667, 2.95 ], [ -3.116666666666667, 2.983333333333333 ], [ -3.083333333333333, 2.983333333333333 ], [ -3.083333333333333, 3.016666666666667 ], [ -4.016666666666667, 3.016666666666667 ] ], [ [ -1.983333333333333, -0.283333333333333 ], [ -1.983333333333333, -0.416666666666667 ], [ -2.016666666666667, -0.416666666666667 ], [ -2.016666666666667, -0.616666666666667 ], [ -2.05, -0.616666666666667 ], [ -2.05, -0.916666666666667 ], [ -2.016666666666667, -0.916666666666667 ], [ -2.016666666666667, -1.116666666666666 ], [ -1.983333333333333, -1.116666666666666 ], [ -1.983333333333333, -1.216666666666667 ], [ -1.95, -1.216666666666667 ], [ -1.95, -1.283333333333333 ], [ -1.916666666666667, -1.283333333333333 ], [ -1.916666666666667, -1.35 ], [ -1.883333333333333, -1.35 ], [ -1.883333333333333, -1.416666666666667 ], [ -1.85, -1.416666666666667 ], [ -1.85, -1.45 ], [ -1.816666666666666, -1.45 ], [ -1.816666666666666, -1.483333333333333 ], [ -1.783333333333333, -1.483333333333333 ], [ -1.783333333333333, -1.516666666666667 ], [ -1.55, -1.516666666666667 ], [ -1.55, -1.483333333333333 ], [ -1.516666666666667, -1.483333333333333 ], [ -1.516666666666667, -1.45 ], [ -1.483333333333333, -1.45 ], [ -1.483333333333333, -1.416666666666667 ], [ -1.45, -1.416666666666667 ], [ -1.45, -1.383333333333334 ], [ -1.416666666666667, -1.383333333333334 ], [ -1.416666666666667, -1.35 ], [ -1.383333333333333, -1.35 ], [ -1.383333333333333, -1.283333333333333 ], [ -1.35, -1.283333333333333 ], [ -1.35, -1.216666666666667 ], [ -1.316666666666666, -1.216666666666667 ], [ -1.316666666666666, -1.116666666666666 ], [ -1.283333333333333, -1.116666666666666 ], [ -1.283333333333333, -0.95 ], [ -1.25, -0.95 ], [ -1.25, -0.45 ], [ -1.283333333333333, -0.45 ], [ -1.283333333333333, -0.316666666666667 ], [ -1.316666666666666, -0.316666666666667 ], [ -1.316666666666666, -0.216666666666667 ], [ -1.35, -0.216666666666667 ], [ -1.35, -0.15 ], [ -1.383333333333333, -0.15 ], [ -1.383333333333333, -0.083333333333333 ], [ -1.416666666666667, -0.083333333333333 ], [ -1.416666666666667, -0.05 ], [ -1.45, -0.05 ], [ -1.45, -0.016666666666667 ], [ -1.483333333333333, -0.016666666666667 ], [ -1.483333333333333, 0.016666666666667 ], [ -1.516666666666667, 0.016666666666667 ], [ -1.516666666666667, 0.05 ], [ -1.75, 0.05 ], [ -1.75, 0.016666666666667 ], [ -1.783333333333333, 0.016666666666667 ], [ -1.783333333333333, -0.016666666666667 ], [ -1.816666666666666, -0.016666666666667 ], [ -1.816666666666666, -0.05 ], [ -1.85, -0.05 ], [ -1.85, -0.083333333333333 ], [ -1.883333333333333, -0.083333333333333 ], [ -1.883333333333333, -0.15 ], [ -1.916666666666667, -0.15 ], [ -1.916666666666667, -0.216666666666667 ], [ -1.95, -0.216666666666667 ], [ -1.95, -0.283333333333333 ], [ -1.983333333333333, -0.283333333333333 ] ] ] } } +] +} diff --git a/tests/data/raster_tmp.prj b/tests/data/raster_tmp.prj new file mode 100644 index 0000000..a41f629 --- /dev/null +++ b/tests/data/raster_tmp.prj @@ -0,0 +1 @@ +GEOGCS["GCS_WGS_1984",DATUM["D_unknown",SPHEROID["WGS84",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]] \ No newline at end of file diff --git a/tests/data/raster_tmp.shp b/tests/data/raster_tmp.shp new file mode 100644 index 0000000..f6c3239 Binary files /dev/null and b/tests/data/raster_tmp.shp differ diff --git a/tests/data/raster_tmp.shx b/tests/data/raster_tmp.shx new file mode 100644 index 0000000..9005f1e Binary files /dev/null and b/tests/data/raster_tmp.shx differ diff --git a/tests/data/raster_tmp.tif b/tests/data/raster_tmp.tif new file mode 100644 index 0000000..8ae373c Binary files /dev/null and b/tests/data/raster_tmp.tif differ diff --git a/tests/data/test_tmp.dbf b/tests/data/test_tmp.dbf new file mode 100644 index 0000000..1488bd9 Binary files /dev/null and b/tests/data/test_tmp.dbf differ diff --git a/tests/data/test_tmp.shp b/tests/data/test_tmp.shp new file mode 100644 index 0000000..f6c3239 Binary files /dev/null and b/tests/data/test_tmp.shp differ diff --git a/tests/data/test_tmp.shx b/tests/data/test_tmp.shx new file mode 100644 index 0000000..9005f1e Binary files /dev/null and b/tests/data/test_tmp.shx differ diff --git a/tests/data/test_tmp.tif b/tests/data/test_tmp.tif new file mode 100644 index 0000000..324105d Binary files /dev/null and b/tests/data/test_tmp.tif differ diff --git a/tests/test.py b/tests/test.py new file mode 100644 index 0000000..7ae9f61 --- /dev/null +++ b/tests/test.py @@ -0,0 +1,46 @@ +import json + +from pathlib import Path + +import numpy +import pycrs +import pyproj +import rasterio +import shapely + + +def raster_metadata(geotiff: str): + """use rasterio to get GeoTIFF metadata""" + + src = rasterio.open(geotiff) + + meta_data = { + "src": geotiff, + "shape": src.shape, # (height, width) + "width": src.width, + "height": src.height, + "bounds": { + "left": src.bounds.left, + "right": src.bounds.right, + "bottom": src.bounds.bottom, + "top": src.bounds.top, + }, + "crs_proj4": src.crs.to_proj4(), + "crs_esri_wkt": src.crs.to_wkt(morph_to_esri_dialect=True), + "crs_ogc_wkt": src.crs.to_wkt(morph_to_esri_dialect=False), + # https://github.com/sgillies/affine#usage-with-gis-data-packages + # Use this in Affine.from_gdal(*src.transform.to_gdal()) + # to_gdal -> (x_offset, x_rotation, x_pixel_size, y_offset, y_rotation, y_pixel_size) + "gdal_geo_transform": src.transform.to_gdal() + } + + return meta_data + + +if __name__ == '__main__': + + geotiff = Path(__file__).parent / "data" / "test_tmp.tif" + print("Reading raster metadata from:", geotiff) + meta_data = raster_metadata(str(geotiff)) + print( json.dumps(meta_data) ) + diff --git a/tests/test.sh b/tests/test.sh new file mode 100755 index 0000000..da94c9e --- /dev/null +++ b/tests/test.sh @@ -0,0 +1,21 @@ +echo +echo "gdal test examples" +geotiff=/data/tests/data/test_tmp.tif +echo "Reading raster metadata from: ${geotiff}" +gdalinfo $geotiff + +echo +echo "proj examples" +# https://proj.org/usage/index.html +# https://proj.org/usage/quickstart.html +echo 55.2 12.2 | proj +proj=merc +lat_ts=56.5 +ellps=GRS80 +echo 3399483.80 752085.60 | cs2cs +proj=merc +lat_ts=56.5 +ellps=GRS80 +to +proj=utm +zone=32 +echo 56 12 | cs2cs +init=epsg:4326 +to +init=epsg:25832 +ls -l $PROJ_LIB/proj.db +echo + +echo +echo "python test examples" +python3 /data/tests/test.py +echo +